/* ═══════════════════════════════════════
   BLOG — Silent Sender
   ═══════════════════════════════════════ */

/* HERO */
.blog-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f0f0ff 0%, #e8e0f0 50%, #f5f0ff 100%);
    position: relative;
    overflow: hidden;
}
.blog-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-hero-content {
    max-width: 640px;
    position: relative;
    z-index: 1;
}
.blog-hero-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6366f1;
    background: rgba(99,102,241,0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 0 0 16px 0;
}
.blog-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* FEATURED POST */
.blog-featured {
    padding: 50px 0;
}
.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
}
.featured-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.featured-image {
    position: relative;
    min-height: 320px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    overflow: hidden;
}
.featured-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 80px;
    opacity: 0.3;
}
.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 20px;
}
.featured-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin: 12px 0;
}
.featured-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

/* POST META */
.post-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}
.post-category {
    color: #6366f1;
    font-weight: 600;
    background: rgba(99,102,241,0.08);
    padding: 3px 10px;
    border-radius: 12px;
}
.post-date,
.post-read {
    color: #94a3b8;
}
.post-date::before {
    content: '';
}
.read-more {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6366f1;
    transition: color 0.2s;
}
.featured-card:hover .read-more,
.blog-card:hover .read-more {
    color: #4f46e5;
}

/* BLOG GRID */
.blog-grid-section {
    padding: 20px 0 60px;
}
.blog-grid-header {
    margin-bottom: 32px;
}
.blog-grid-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    position: relative;
    overflow: hidden;
}
.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 48px;
    opacity: 0.4;
}
.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 19px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin: 10px 0;
}
.blog-card-body p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}
.blog-card-footer .post-read {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #94a3b8;
}

/* CTA SECTION */
.blog-cta {
    padding: 40px 0 80px;
}
.blog-cta-card {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    padding: 56px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.blog-cta-card::before {
    content: '';
    position: absolute;
    top: -60%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-cta-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.blog-cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    color: white;
    margin: 0 0 14px 0;
    position: relative;
    z-index: 1;
}
.blog-cta-card p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 28px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.btn-cta {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #6366f1;
    background: white;
    padding: 16px 36px;
    border-radius: 10px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
}
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .blog-hero {
        padding: 80px 0 40px;
    }
    .blog-hero h1 {
        font-size: 34px;
    }
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-image {
        min-height: 200px;
    }
    .featured-content {
        padding: 28px;
    }
    .featured-content h2 {
        font-size: 22px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-cta-card {
        padding: 40px 24px;
    }
    .blog-cta-card h2 {
        font-size: 26px;
    }
}