.blog-hero {
    margin-top: 88px;
    padding: 104px 0 76px;
    color: white;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url('/images/backgrounds/hero-background-desktop.webp') center / cover;
}

.blog-hero .container {
    max-width: 850px;
}

.blog-eyebrow {
    margin-bottom: 12px;
    color: #f7c7c5;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-hero h1 {
    margin-bottom: 18px;
    font-size: 48px;
    line-height: 1.12;
}

.blog-hero .container > p:last-child {
    max-width: 720px;
    margin: 0 auto;
    font-size: 19px;
    opacity: 0.94;
}

.blog-listing {
    padding: 80px 0;
    background: var(--gray-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    display: flex;
    min-height: 320px;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    box-shadow: var(--shadow-light);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.blog-badge {
    margin-bottom: 18px;
    padding: 5px 10px;
    color: white;
    background: var(--brand-red);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.blog-card time {
    color: var(--gray-medium);
    font-size: 14px;
}

.blog-card h2 {
    margin: 13px 0 15px;
    font-size: 24px;
    line-height: 1.25;
}

.blog-card h2 a {
    color: var(--gray-dark);
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: var(--brand-red);
}

.blog-card p {
    margin-bottom: 24px;
    color: var(--gray-medium);
}

.blog-read-more {
    margin-top: auto;
    color: var(--brand-red);
    font-weight: 700;
    text-decoration: none;
}

.blog-read-more:hover {
    text-decoration: underline;
}

.blog-empty {
    padding: 60px 24px;
    text-align: center;
    background: white;
    border-radius: 14px;
}

.blog-empty h2 {
    margin-bottom: 10px;
}

@media (max-width: 900px) {
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 82px 0 58px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url('/images/backgrounds/hero-background-mobile.webp');
    }
    .blog-hero h1 { font-size: 36px; }
    .blog-listing { padding: 56px 0; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card { min-height: 0; padding: 26px; }
}
