.blog-index,
.blog-post {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 8rem 0 5rem;
}

.blog-index h1,
.blog-post-header h1 {
    color: #1a1a1a;
    font-family: Georgia, serif;
}

.blog-index h1 {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.blog-post-card {
    display: block;
    overflow: hidden;
    color: inherit;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-post-card:hover,
.blog-post-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.blog-post-card img,
.blog-featured-image {
    display: block;
    width: 100%;
    object-fit: cover;
}

.blog-post-card img {
    aspect-ratio: 16 / 10;
}

.blog-post-card-body {
    padding: 1.25rem;
}

.blog-category {
    margin: 0 0 0.5rem;
    color: #b85c38;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.blog-post-card h2 {
    margin: 0 0 0.75rem;
    color: #1a1a1a;
    font-family: Georgia, serif;
    font-size: 1.35rem;
}

.blog-date {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.blog-post {
    max-width: 820px;
}

.blog-post-header {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-post-header h1 {
    margin: 0 auto 0.75rem;
    max-width: 720px;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.blog-featured-image {
    max-height: 560px;
    margin-bottom: 2.5rem;
    object-fit: cover;
}

.blog-content {
    color: #2d2d2d;
    font-size: 1.08rem;
    line-height: 1.75;
}

.blog-content h2,
.blog-content h3 {
    margin-top: 2rem;
    color: #1a1a1a;
    font-family: Georgia, serif;
    line-height: 1.25;
}

.blog-content img {
    max-width: 100%;
    height: auto;
}

.blog-content a {
    color: #9d4d2f;
}

.blog-post-cta {
    margin-top: 3rem;
    text-align: center;
}

@media (max-width: 640px) {

    .blog-index,
    .blog-post {
        width: min(100% - 1.25rem, 1100px);
        padding-top: 6rem;
    }
}