/* Page-specific CSS for site/blog/index.html. Staged during Task 6 with
   only .blog-card (not defined on any other page); completed in Task 10
   with the rest of the page's inline <style> block. Copied verbatim from
   site/blog/index.html. */
.blog-hero {
    background: var(--cream);
    padding: 160px 3rem 80px;
    text-align: center;
}

.blog-hero__headline {
    font-family: Georgia, serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: var(--char);
    margin-bottom: 1rem;
}

.blog-hero__sub {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.blog-content {
    padding: 80px 3rem 120px;
    max-width: 900px;
    margin: 0 auto;
}

.blog-empty {
    text-align: center;
    padding: 60px 0;
}

.blog-empty__text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.blog-empty__text a {
    color: var(--chipotle);
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.blog-empty__text a:hover {
    opacity: 0.7;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.blog-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(16, 25, 33, 0.06);
    background: var(--white);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    background: var(--mist);
}

.blog-card__body {
    padding: 1.5rem;
}

.blog-card__date {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.blog-card__title {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--char);
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

.blog-card__excerpt {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 140px 1.5rem 60px;
    }
    .blog-hero__headline {
        font-size: 2.4rem;
    }
    .blog-content {
        padding: 60px 1.5rem 80px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .blog-hero__headline {
        font-size: 2rem;
    }
    .blog-card__title {
        font-size: 1.1rem;
    }
}
