.blog-page {
    min-height: 70vh;
    padding-bottom: clamp(4rem, 8vw, 7rem);
    background: #f8faf8;
}

.blog-intro {
    border-bottom: 1px solid rgb(46 68 56 / .08);
    background:
        radial-gradient(circle at 88% 15%, rgb(237 205 196 / .28), transparent 22rem),
        #fff;
    padding: clamp(2.5rem, 7vw, 5rem) 0 1.25rem;
}

.blog-intro__heading {
    display: grid;
    gap: 1.5rem;
    align-items: end;
}

.blog-kicker {
    margin: 0 0 .5rem;
    color: #778f80;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.blog-intro h1 {
    max-width: 16ch;
    margin: 0;
    color: #24342b;
    font-size: clamp(2.3rem, 6vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.055em;
}

.blog-intro__lead {
    max-width: 44rem;
    margin: 1rem 0 0;
    color: #68776e;
    font-size: clamp(.98rem, 2vw, 1.08rem);
    line-height: 1.65;
}

.blog-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: .5rem;
    width: min(100%, 27rem);
    border: 1px solid #dce4df;
    border-radius: .9rem;
    background: #fff;
    padding: .4rem;
    box-shadow: 0 10px 28px rgb(46 68 56 / .06);
}

.blog-search label {
    min-width: 0;
}

.blog-search .form-control {
    min-height: 2.7rem;
    border: 0;
    background: transparent;
    color: #24342b;
    font-size: .85rem;
    box-shadow: none;
}

.blog-search .btn {
    min-height: 2.7rem;
    border-radius: .65rem;
    background: #2e4438;
    color: #fff;
    padding-inline: .85rem;
    font-size: .78rem;
    font-weight: 850;
}

.blog-categories {
    display: flex;
    gap: .45rem;
    overflow-x: auto;
    margin-top: clamp(1.8rem, 4vw, 2.6rem);
    padding-bottom: .25rem;
    scrollbar-width: none;
}

.blog-categories::-webkit-scrollbar {
    display: none;
}

.blog-categories a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .4rem;
    min-height: 2.25rem;
    border: 1px solid #dce4df;
    border-radius: 999px;
    background: #fff;
    padding: .4rem .7rem;
    color: #617269;
    font-size: .75rem;
    font-weight: 800;
    text-decoration: none;
}

.blog-categories a span {
    color: #9aa69f;
    font-size: .65rem;
}

.blog-categories a:hover,
.blog-categories a.is-active {
    border-color: #2e4438;
    background: #2e4438;
    color: #fff;
}

.blog-categories a.is-active span {
    color: rgb(255 255 255 / .65);
}

.blog-content {
    padding-top: clamp(2rem, 5vw, 3.5rem);
}

.blog-featured {
    display: grid;
    overflow: hidden;
    margin-bottom: clamp(3rem, 7vw, 5rem);
    border: 1px solid rgb(46 68 56 / .1);
    border-radius: 1.2rem;
    background: #fff;
    box-shadow: 0 16px 44px rgb(46 68 56 / .07);
}

.blog-featured__media {
    display: grid;
    min-height: 18rem;
    place-items: center;
    overflow: hidden;
    background: #e9efeb;
    color: #778f80;
    text-decoration: none;
}

.blog-featured__media img {
    width: 100%;
    height: 100%;
    min-height: 18rem;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.2, .65, .3, 1);
}

.blog-featured:hover .blog-featured__media img {
    transform: scale(1.035);
}

.blog-featured__media > span {
    font-size: 1.25rem;
    font-weight: 900;
}

.blog-featured__body {
    display: grid;
    align-content: center;
    padding: clamp(1.3rem, 4vw, 2.4rem);
}

.blog-article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    color: #89958e;
    font-size: .7rem;
    font-weight: 750;
}

.blog-article-meta a {
    color: #61766a;
    font-weight: 850;
    text-decoration: none;
}

.blog-article-meta a:hover {
    text-decoration: underline;
}

.blog-featured h2 {
    margin: .7rem 0 0;
    font-size: clamp(1.6rem, 3.8vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.blog-featured h2 a,
.blog-card h3 a {
    color: #24342b;
    text-decoration: none;
}

.blog-featured__body > p {
    display: -webkit-box;
    max-width: 42rem;
    overflow: hidden;
    margin: .85rem 0 0;
    color: #68776e;
    font-size: .92rem;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-read-link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: .35rem;
    margin-top: 1rem;
    color: #435b4d;
    font-size: .78rem;
    font-weight: 900;
    text-decoration: none;
}

.blog-read-link span {
    transition: transform .2s ease;
}

.blog-read-link:hover span {
    transform: translateX(3px);
}

.blog-list__toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.1rem;
}

.blog-list__toolbar > div {
    display: flex;
    align-items: baseline;
    gap: .55rem;
}

.blog-list__toolbar h2 {
    margin: 0;
    color: #24342b;
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    letter-spacing: -.03em;
}

.blog-list__toolbar p {
    margin: 0;
    color: #87938c;
    font-size: .75rem;
}

.blog-list__toolbar > a {
    color: #617269;
    font-size: .75rem;
    font-weight: 850;
    text-decoration: none;
}

.blog-list__toolbar > a:hover {
    text-decoration: underline;
}

.blog-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.blog-card {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgb(46 68 56 / .1);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 8px 26px rgb(46 68 56 / .045);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    border-color: rgb(119 143 128 / .38);
    box-shadow: 0 16px 38px rgb(46 68 56 / .09);
}

.blog-card__media {
    display: grid;
    aspect-ratio: 16 / 10;
    place-items: center;
    overflow: hidden;
    background: #edf3ef;
    color: #778f80;
    text-decoration: none;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.2, .65, .3, 1);
}

.blog-card:hover .blog-card__media img {
    transform: scale(1.04);
}

.blog-card__media span {
    font-size: 1rem;
    font-weight: 900;
}

.blog-card__body {
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    gap: .65rem;
    padding: 1rem;
}

.blog-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.32;
    letter-spacing: -.025em;
}

.blog-card__body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: #718078;
    font-size: .83rem;
    line-height: 1.58;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.blog-empty {
    display: grid;
    justify-items: center;
    max-width: 36rem;
    margin: 3rem auto;
    text-align: center;
}

.blog-empty__mark {
    display: grid;
    width: 4rem;
    height: 4rem;
    place-items: center;
    margin-bottom: 1rem;
    border-radius: 1rem;
    background: linear-gradient(145deg, #edf3ef, #f8ece8);
    color: #435b4d;
    font-size: .85rem;
    font-weight: 900;
}

.blog-empty h2 {
    margin: 0;
    color: #24342b;
    font-size: 1.4rem;
}

.blog-empty p {
    margin: .6rem 0 1.1rem;
    color: #748178;
    font-size: .88rem;
}

.blog-empty .btn {
    border-radius: .72rem;
    background: #2e4438;
    color: #fff;
    font-size: .8rem;
    font-weight: 850;
}

.blog-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem;
    margin-top: 2rem;
}

.blog-pagination a {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    place-items: center;
    border: 1px solid #dce4df;
    border-radius: .65rem;
    background: #fff;
    color: #52675b;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}

.blog-pagination a:hover {
    border-color: #aebdb4;
    background: #edf3ef;
}

.blog-pagination a[aria-current="page"] {
    border-color: #2e4438;
    background: #2e4438;
    color: #fff;
}

[data-reveal] {
    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity .45s ease var(--delay, 0ms),
        transform .45s ease var(--delay, 0ms);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

@media (min-width: 48rem) {
    .blog-intro__heading {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .blog-featured {
        grid-template-columns: minmax(0, 1.15fr) minmax(18rem, .85fr);
        min-height: 25rem;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 75rem) {
    .blog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 47.99rem) {
    .blog-search {
        width: 100%;
    }

    .blog-list__toolbar {
        align-items: flex-start;
    }

    .blog-list__toolbar > div {
        display: block;
    }

    .blog-list__toolbar p {
        margin-top: .18rem;
    }
}


.reveal-delay-1 { --delay: 55ms; }
.reveal-delay-2 { --delay: 110ms; }
.reveal-delay-3 { --delay: 165ms; }
.reveal-delay-4 { --delay: 220ms; }
.reveal-delay-5 { --delay: 275ms; }
.reveal-delay-6 { --delay: 330ms; }
