/* Blog placeholder styles */
.blog-placeholder {
    width: 100%;
    height: 192px; /* h-48 equivalent */
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.blog-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/assets/images/BSW-logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80px 80px;
    opacity: 0.15;
    z-index: 1;
}

.blog-placeholder-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.blog-placeholder-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background-image: url('/assets/images/BSW-logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.6;
}

.blog-placeholder-text {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}

.blog-placeholder-subtext {
    color: #94a3b8;
    font-size: 12px;
}

/* Alternative placeholder with just icon when logo fails */
.blog-placeholder-icon {
    width: 100%;
    height: 192px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
}

.blog-placeholder-icon i {
    font-size: 48px;
    color: #cbd5e1;
}
