.blog-page {
    background: #fffaf8;
    color: #3e3030;
    padding: calc(var(--header-h) + 56px) 20px 80px;
}

.blog-article {
    margin: 0 auto;
    max-width: 920px;
}

.blog-breadcrumbs {
    color: #765f5f;
    font-size: 14px;
    margin: 0 0 24px;
}

.blog-breadcrumbs a {
    color: #765f5f;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-breadcrumbs span {
    margin: 0 8px;
}

.blog-header {
    margin: 0 auto 28px;
    max-width: 820px;
    text-align: center;
}

.blog-eyebrow {
    color: #9b5f65;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .14em;
    margin: 0 0 12px;
    text-transform: uppercase;
}

.blog-title {
    color: #322222;
    font-family: "Prata", Georgia, serif;
    font-size: clamp(34px, 5.2vw, 58px);
    font-weight: 400;
    letter-spacing: -.02em;
    line-height: 1.12;
    margin: 0;
}

.blog-meta {
    color: #806c6c;
    font-size: 14px;
    margin: 0 0 10px;
}

.blog-figure {
    margin: 36px 0;
}

.blog-figure--hero {
    margin-top: 28px;
}

.blog-figure img {
    background: #eadfda;
    border-radius: 18px;
    display: block;
    height: auto;
    width: 100%;
}

.blog-figure--support img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.blog-body {
    font-size: 18px;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 760px;
}

.blog-body h2 {
    color: #3a2828;
    font-family: "Prata", Georgia, serif;
    font-size: clamp(27px, 4vw, 38px);
    font-weight: 400;
    line-height: 1.3;
    margin: 52px 0 18px;
}

.blog-body h2:first-child {
    margin-top: 34px;
}

.blog-body h3 {
    color: #493232;
    font-size: 20px;
    line-height: 1.45;
    margin: 30px 0 8px;
}

.blog-body p {
    margin: 0 0 20px;
}

.blog-body a {
    color: #8c4f57;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-faq {
    border-top: 1px solid #dfd0ca;
    margin-top: 52px;
    padding-top: 4px;
}

.blog-cta {
    background: #4b3436;
    border-radius: 18px;
    color: #fff;
    margin-top: 56px;
    padding: 40px;
    text-align: center;
}

.blog-cta h2 {
    color: #fff;
    margin: 0 0 12px;
}

.blog-cta p {
    margin: 0 auto 24px;
    max-width: 570px;
}

.blog-cta .blog-cta-button {
    background: #fff;
    border-radius: 999px;
    color: #4b3436;
    display: inline-block;
    padding: 13px 26px;
    text-decoration: none;
}

@media (max-width: 700px) {
    .blog-page {
        padding: calc(var(--header-h) + 36px) 16px 60px;
    }

    .blog-body {
        font-size: 17px;
        line-height: 1.72;
    }

    .blog-figure,
    .blog-figure--hero {
        margin: 24px 0 32px;
    }

    .blog-body h2 {
        margin-top: 42px;
    }

    .blog-cta {
        padding: 32px 20px;
    }
}

/* Blog index */
.blog-index-page {
    background: #fffaf8;
    min-height: 70vh;
    padding: calc(var(--header-h) + 56px) 20px 88px;
}

.blog-index-inner {
    margin: 0 auto;
    max-width: 1200px;
}

.blog-index-header {
    margin: 0 auto 44px;
    max-width: 760px;
    text-align: center;
}

.blog-index-title {
    color: #322222;
    font-family: "Prata", Georgia, serif;
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 400;
    line-height: 1.15;
    margin: 0 0 16px;
}

.blog-index-intro {
    color: #715d5d;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

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

.blog-card {
    background: #fff;
    border: 1px solid #eaded9;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(79, 50, 50, .08);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    transition: box-shadow .2s ease, transform .2s ease;
}

.blog-card[hidden] {
    display: none;
}

.blog-card:hover {
    box-shadow: 0 18px 42px rgba(79, 50, 50, .14);
    transform: translateY(-4px);
}

.blog-card-image-link {
    background: #eadfda;
    display: block;
    overflow: hidden;
}

.blog-card-image {
    aspect-ratio: 1.9 / 1;
    display: block;
    height: auto;
    object-fit: cover;
    transition: transform .35s ease;
    width: 100%;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.025);
}

.blog-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.blog-card-meta {
    color: #9b5f65;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.blog-card-title {
    color: #392727;
    font-family: "Prata", Georgia, serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 0 14px;
}

.blog-card-title a::after {
    content: "";
    inset: 0;
    position: absolute;
}

.blog-card-content {
    position: relative;
}

.blog-card-excerpt {
    color: #6f5c5c;
    display: -webkit-box;
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-card-read {
    color: #8c4f57;
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
}

.blog-load-more-wrap {
    margin-top: 44px;
    text-align: center;
}

.blog-load-more {
    background: #4b3436;
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    min-width: 150px;
    padding: 14px 28px;
    transition: background .2s ease, transform .2s ease;
}

.blog-load-more:hover {
    background: #6a494c;
    transform: translateY(-2px);
}

.blog-load-more[hidden] {
    display: none;
}

.sr-only {
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

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

@media (max-width: 620px) {
    .blog-index-page {
        padding: calc(var(--header-h) + 36px) 16px 64px;
    }

    .blog-index-header {
        margin-bottom: 30px;
    }

    .blog-grid {
        gap: 22px;
        grid-template-columns: 1fr;
    }

    .blog-card-content {
        padding: 21px;
    }
}
