.blog-hero {
    position: relative;
    display: flex;
    min-height: 540px;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 34, 55, .94) 0%, rgba(8, 34, 55, .78) 48%, rgba(8, 34, 55, .42) 100%),
        var(--blog-hero-image, url('../img/blog-1.jpg')) center/cover no-repeat;
    color: #fff;
}

.blog-hero::after {
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 500px;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(255, 255, 255, .04), 0 0 0 115px rgba(255, 255, 255, .025);
    content: "";
}

.blog-hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 78px;
    padding-bottom: 78px;
}

.blog-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #7eb346;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.blog-eyebrow::before {
    width: 30px;
    height: 1px;
    background: currentColor;
    content: "";
}

.blog-hero h1 {
    max-width: 760px;
    margin: 16px 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(52px, 7vw, 82px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: .98;
}

.blog-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 18px;
    line-height: 1.75;
}

.blog-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-top: 30px;
    padding: 14px 22px;
    border-radius: 5px;
    background: #7eb346;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.blog-hero__button:hover {
    background: #6a9c37;
    color: #fff;
    transform: translateY(-2px);
}

.blog-featured-section,
.blog-listing-section,
.blog-related-section {
    padding: 90px 0;
}

.blog-featured-section { background: #f5f8f6; }
.blog-listing-section { background: #fff; }
.blog-related-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #f5f8f6 url('../img/testimonial-bg.png') center/cover no-repeat;
}

.blog-related-section::before {
    position: absolute;
    z-index: 0;
    top: -76px;
    left: -58px;
    width: 245px;
    height: 245px;
    border: 2px solid rgba(18, 161, 80, .42);
    border-radius: 42% 58% 55% 45%;
    background:
        radial-gradient(circle at 35% 66%, rgba(126, 179, 70, .42) 0 14%, transparent 15%),
        radial-gradient(circle at 62% 43%, rgba(0, 143, 226, .32) 0 9%, transparent 10%),
        radial-gradient(circle at 46% 48%, rgba(255, 255, 255, .82) 0 42%, rgba(126, 179, 70, .16) 43% 62%, transparent 63%);
    box-shadow:
        0 0 0 18px rgba(255, 255, 255, .46),
        0 0 0 34px rgba(0, 143, 226, .09),
        0 20px 45px rgba(18, 83, 62, .16);
    content: "";
    pointer-events: none;
    animation: blogRelatedGlow 9s ease-in-out infinite alternate;
}

.blog-related-section::after {
    position: absolute;
    z-index: 0;
    bottom: 38px;
    left: -42px;
    width: 210px;
    height: 250px;
    border-radius: 48% 52% 46% 54%;
    background:
        radial-gradient(ellipse at 64% 18%, rgba(126, 179, 70, .92) 0 9%, transparent 10%),
        radial-gradient(ellipse at 42% 34%, rgba(33, 151, 91, .82) 0 12%, transparent 13%),
        radial-gradient(ellipse at 68% 51%, rgba(105, 168, 60, .72) 0 13%, transparent 14%),
        radial-gradient(circle at 35% 68%, rgba(0, 143, 226, .68) 0 4px, transparent 5px),
        radial-gradient(circle at 57% 78%, rgba(0, 143, 226, .45) 0 5px, transparent 6px);
    filter: drop-shadow(0 15px 24px rgba(42, 107, 69, .16));
    content: "";
    pointer-events: none;
    transform-origin: 20% 100%;
    animation: blogRelatedBotanical 6.5s ease-in-out infinite alternate;
}

.blog-related-section > .container {
    position: relative;
    z-index: 1;
}

.blog-related-section .blog-section-heading h2 {
    color: #12324a;
}

.blog-related-section .blog-eyebrow {
    color: #618a35;
}

@keyframes blogRelatedGlow {
    from { transform: translate3d(0, 0, 0) rotate(-6deg) scale(1); }
    to { transform: translate3d(34px, 25px, 0) rotate(7deg) scale(1.1); }
}

@keyframes blogRelatedBotanical {
    from { transform: translate3d(0, 8px, 0) rotate(-5deg) scale(.96); }
    to { transform: translate3d(18px, -12px, 0) rotate(5deg) scale(1.06); }
}

@media (prefers-reduced-motion: reduce) {
    .blog-related-section::before,
    .blog-related-section::after {
        animation: none;
    }
}

.blog-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 42px;
}

.blog-section-heading h2 {
    margin: 8px 0 0;
    color: #12324a;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 54px);
    font-weight: 600;
    letter-spacing: -.025em;
}

.blog-section-heading > p {
    max-width: 490px;
    margin: 0 0 7px;
    color: #687982;
    line-height: 1.7;
}

.blog-featured-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    grid-template-rows: repeat(2, 245px);
    gap: 22px;
}

.blog-featured-card {
    position: relative;
    min-height: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #12324a;
}

.blog-featured-card--lead { grid-row: 1 / 3; }

.blog-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-featured-card:hover img { transform: scale(1.045); }

.blog-featured-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 28%, rgba(7, 28, 44, .92) 100%);
}

.blog-featured-card__content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    padding: 25px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.blog-featured-card--lead .blog-featured-card__content { padding: 38px; }

.blog-featured-card__content > span {
    display: inline-block;
    margin-bottom: 9px;
    color: #a9d17c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.blog-featured-card h3 {
    margin: 0 0 10px;
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    line-height: 1.08;
}

.blog-featured-card--lead h3 { font-size: clamp(34px, 4vw, 47px); }

.blog-featured-card h3 a { color: #fff; text-decoration: none; }
.blog-featured-card h3 a::after { position: absolute; inset: 0; content: ""; }

.blog-section-heading--listing { margin-bottom: 28px; }

.blog-category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 38px;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.blog-category-filter a {
    flex: 0 0 auto;
    padding: 10px 17px;
    border: 1px solid #d9e2e5;
    border-radius: 999px;
    color: #526874;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: .2s ease;
}

.blog-category-filter a:hover,
.blog-category-filter a.is-active {
    border-color: #005baa;
    background: #005baa;
    color: #fff;
}

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

.blog-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e3eaec;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(30, 63, 75, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    box-shadow: 0 18px 42px rgba(30, 63, 75, .13);
    transform: translateY(-5px);
}

.blog-card__image {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    background: #e6ece9;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

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

.blog-card__category {
    position: absolute;
    bottom: 14px;
    left: 14px;
    padding: 7px 11px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .94);
    color: #46672d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.blog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 25px;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 14px;
    color: #7a898f;
    font-size: 12px;
}

.blog-card__meta i { margin-right: 5px; color: #7eb346; }

.blog-card h3 {
    margin: 0 0 13px;
    color: #15374d;
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
}

.blog-card h3 a { color: inherit; text-decoration: none; }
.blog-card h3 a:hover { color: #005baa; }

.blog-card p {
    margin: 0 0 20px;
    color: #6a7b83;
    font-size: 14px;
    line-height: 1.7;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    margin-top: auto;
    color: #005baa;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.blog-card__link i { transition: transform .2s ease; }
.blog-card__link:hover i { transform: translateX(4px); }

.blog-pagination { display: flex; justify-content: center; margin-top: 50px; }
.blog-pagination .pagination { gap: 7px; }
.blog-pagination .page-link { border-radius: 5px; color: #005baa; }
.blog-pagination .active > .page-link { border-color: #005baa; background: #005baa; }

.blog-empty-state {
    grid-column: 1 / -1;
    padding: 70px 20px;
    border: 1px dashed #ccd8dc;
    border-radius: 12px;
    text-align: center;
}

.blog-empty-state i { color: #7eb346; font-size: 42px; }
.blog-empty-state h3 { margin: 17px 0 8px; color: #15374d; font-family: "Cormorant Garamond", serif; font-size: 32px; }
.blog-empty-state p { color: #718087; }
.blog-empty-state a { color: #005baa; font-weight: 700; }

.blog-detail-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: 560px;
    align-items: center;
    padding: 100px 0 90px;
    overflow: hidden;
    background: #071f35;
    text-align: center;
}

.blog-detail-hero::before,
.blog-detail-hero::after {
    position: absolute;
    inset: 0;
    content: "";
}

.blog-detail-hero::before {
    z-index: 0;
    inset: -5%;
    background: var(--blog-detail-hero-image) center/cover no-repeat;
    opacity: .4;
    animation: blogDetailImageMotion 11s ease-in-out infinite alternate;
}

.blog-detail-hero::after {
    z-index: 1;
    background:
        linear-gradient(110deg, rgba(5, 25, 45, .97) 0%, rgba(5, 36, 60, .88) 48%, rgba(3, 38, 61, .72) 100%),
        linear-gradient(180deg, rgba(0, 102, 179, .16), rgba(3, 21, 37, .32));
}

.blog-detail-hero > .container {
    position: relative;
    z-index: 3;
}

.blog-detail-hero__decor {
    position: absolute;
    z-index: 2;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.blog-detail-hero__orb {
    position: absolute;
    top: -155px;
    right: -85px;
    width: 460px;
    height: 460px;
    border: 2px solid rgba(72, 184, 255, .48);
    border-radius: 45% 55% 62% 38%;
    background: radial-gradient(circle at 35% 65%, rgba(0, 143, 226, .34), rgba(0, 91, 170, .08) 56%, transparent 58%);
    box-shadow: 0 0 0 38px rgba(0, 143, 226, .09), 0 0 0 82px rgba(126, 179, 70, .055), 0 0 70px rgba(0, 143, 226, .24);
    animation: blogDetailOrb 10s ease-in-out infinite alternate;
}

.blog-detail-hero__dots {
    position: absolute;
    bottom: -30px;
    left: -25px;
    width: 260px;
    height: 190px;
    border-radius: 38% 62% 48% 52%;
    background-image: radial-gradient(circle, rgba(154, 218, 84, .86) 2.5px, transparent 3px);
    background-size: 18px 18px;
    opacity: .8;
    animation: blogDetailDots 8s ease-in-out infinite;
}

.blog-detail-hero__leaf {
    position: absolute;
    width: 30px;
    height: 56px;
    border-radius: 100% 0 100% 0;
    background: linear-gradient(145deg, #a6db61, rgba(71, 166, 66, .46));
    box-shadow: inset 1px 1px rgba(255, 255, 255, .4), 0 10px 28px rgba(126, 179, 70, .32), 0 0 24px rgba(126, 179, 70, .18);
    transform-origin: 50% 100%;
}

.blog-detail-hero__leaf::after {
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 1px;
    height: 38px;
    background: linear-gradient(rgba(166, 219, 97, .9), transparent);
    content: "";
    transform: rotate(33deg);
    transform-origin: top;
}

.blog-detail-hero__leaf--one {
    top: 27%;
    right: 10%;
    animation: blogDetailLeafOne 6.5s ease-in-out infinite;
}

.blog-detail-hero__leaf--two {
    bottom: 16%;
    left: 10%;
    width: 22px;
    height: 42px;
    opacity: .9;
    animation: blogDetailLeafTwo 7.5s ease-in-out -1.5s infinite;
}

.blog-detail-hero__spark {
    position: absolute;
    width: 20px;
    height: 20px;
    animation: blogDetailSpark 4.5s ease-in-out infinite;
}

.blog-detail-hero__spark::before,
.blog-detail-hero__spark::after {
    position: absolute;
    border-radius: 99px;
    background: rgba(114, 204, 255, .9);
    box-shadow: 0 0 12px rgba(114, 204, 255, .7);
    content: "";
}

.blog-detail-hero__spark::before {
    top: 0;
    left: 9px;
    width: 2px;
    height: 20px;
}

.blog-detail-hero__spark::after {
    top: 9px;
    left: 0;
    width: 20px;
    height: 2px;
}

.blog-detail-hero__spark--one {
    top: 17%;
    left: 17%;
}

.blog-detail-hero__spark--two {
    right: 20%;
    bottom: 13%;
    animation-delay: -2.2s;
}

@keyframes blogDetailOrb {
    from { transform: translate3d(0, 0, 0) rotate(-5deg) scale(1); }
    to { transform: translate3d(-28px, 22px, 0) rotate(7deg) scale(1.08); }
}

@keyframes blogDetailImageMotion {
    from { transform: translate3d(-1%, 0, 0) scale(1.02); }
    to { transform: translate3d(1.5%, -1%, 0) scale(1.12); }
}

@keyframes blogDetailDots {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
    50% { transform: translate3d(20px, -17px, 0) rotate(1deg); }
}

@keyframes blogDetailLeafOne {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-22deg); }
    50% { transform: translate3d(-14px, -24px, 0) rotate(17deg); }
}

@keyframes blogDetailLeafTwo {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(25deg); }
    50% { transform: translate3d(16px, -20px, 0) rotate(-12deg); }
}

@keyframes blogDetailSpark {
    0%, 100% { opacity: .2; transform: rotate(0deg) scale(.65); }
    50% { opacity: .9; transform: rotate(45deg) scale(1.08); }
}

@media (max-width: 767px) {
    .blog-detail-hero__orb {
        top: -125px;
        right: -165px;
        width: 320px;
        height: 320px;
    }

    .blog-detail-hero__dots {
        bottom: -55px;
        left: -85px;
        opacity: .36;
    }

    .blog-detail-hero__leaf--one {
        top: 20%;
        right: 5%;
    }

    .blog-detail-hero__leaf--two,
    .blog-detail-hero__spark--one {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog-detail-hero::before,
    .blog-detail-hero__orb,
    .blog-detail-hero__dots,
    .blog-detail-hero__leaf,
    .blog-detail-hero__spark {
        animation: none;
    }
}

.blog-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
}

.blog-breadcrumb a { color: rgba(255, 255, 255, .82); text-decoration: none; }
.blog-breadcrumb a:hover { color: #a6db61; }
.blog-breadcrumb i { font-size: 9px; }

.blog-detail-hero__category {
    display: inline-flex;
    padding: 8px 14px;
    border: 1px solid rgba(166, 219, 97, .5);
    border-radius: 999px;
    background: rgba(126, 179, 70, .14);
    color: #b8e57f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.blog-detail-hero h1 {
    max-width: 920px;
    margin: 14px auto 20px;
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(46px, 7vw, 74px);
    font-weight: 600;
    letter-spacing: -.035em;
    line-height: 1;
}

.blog-detail-hero > .container > p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, .78);
    font-size: 18px;
    line-height: 1.7;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    margin-top: 26px;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
}

.blog-detail-meta i { margin-right: 6px; color: #a6db61; }

.blog-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 55px;
    padding-top: 70px;
    padding-bottom: 90px;
}

.blog-detail__featured-image {
    margin: 0 0 42px;
}

.blog-detail__featured-image img {
    width: 100%;
    max-height: 590px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(25, 57, 68, .11);
}

.blog-detail__featured-image figcaption {
    margin-top: 10px;
    color: #839097;
    font-size: 12px;
    text-align: center;
}

.blog-rich-content {
    color: #405660;
    font-size: 17px;
    line-height: 1.85;
}

.blog-rich-content h2,
.blog-rich-content h3,
.blog-rich-content h4 {
    color: #12324a;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -.018em;
    line-height: 1.15;
}

.blog-rich-content h2 { margin: 45px 0 16px; font-size: 39px; }
.blog-rich-content h3 { margin: 35px 0 13px; font-size: 31px; }
.blog-rich-content h4 { margin: 28px 0 11px; font-size: 25px; }
.blog-rich-content p { margin-bottom: 22px; }
.blog-rich-content a { color: #005baa; }
.blog-rich-content img { max-width: 100%; height: auto; margin: 25px 0; border-radius: 10px; }
.blog-rich-content ul,
.blog-rich-content ol { margin: 18px 0 25px; padding-left: 25px; }
.blog-rich-content li { margin-bottom: 9px; padding-left: 5px; }
.blog-rich-content blockquote { margin: 35px 0; padding: 24px 28px; border-left: 4px solid #7eb346; background: #f3f7f3; color: #294a58; font-family: "Cormorant Garamond", serif; font-size: 25px; line-height: 1.35; }
.blog-rich-content table { display: block; width: 100%; margin: 28px 0; overflow-x: auto; border-collapse: collapse; }
.blog-rich-content th,
.blog-rich-content td { padding: 12px 15px; border: 1px solid #dce5e7; text-align: left; }
.blog-rich-content th { background: #eef4f1; color: #15374d; }

.blog-detail__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-top: 42px;
    padding-top: 25px;
    border-top: 1px solid #e0e7e9;
}

.blog-detail__tags strong { margin-right: 4px; color: #15374d; }
.blog-detail__tags a { padding: 7px 11px; border-radius: 4px; background: #eff4f2; color: #52703a; font-size: 13px; text-decoration: none; }
.blog-detail__tags a:hover { background: #7eb346; color: #fff; }

.blog-detail__author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 35px;
    padding: 25px;
    border-radius: 10px;
    background: #f4f7f6;
}

.blog-detail__author-avatar {
    display: grid;
    width: 72px;
    height: 72px;
    flex: 0 0 72px;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: #dbe7e2;
    color: #557a3b;
    font-size: 25px;
}

.blog-detail__author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.blog-detail__author span { color: #7a898f; font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.blog-detail__author h3 { margin: 2px 0 4px; color: #15374d; font-family: "Cormorant Garamond", serif; font-size: 26px; }
.blog-detail__author p { margin: 0; color: #65767e; font-size: 14px; }

.blog-detail__sidebar { position: sticky; top: 30px; }

.blog-sidebar-card {
    padding: 31px;
    border-radius: 12px;
    background: #12324a;
    box-shadow: 0 18px 45px rgba(25, 57, 68, .14);
    color: #fff;
}

.blog-sidebar-card h2 { margin: 15px 0 13px; font-family: "Cormorant Garamond", serif; font-size: 34px; line-height: 1.08; }
.blog-sidebar-card p { color: rgba(255, 255, 255, .7); font-size: 14px; line-height: 1.7; }
.blog-sidebar-card a { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: #a9d17c; font-weight: 700; text-decoration: none; }
.blog-back-link { display: inline-flex; align-items: center; gap: 9px; margin-top: 22px; color: #526b77; font-size: 14px; font-weight: 600; text-decoration: none; }
.blog-back-link:hover { color: #005baa; }

.blog-faq-wrap { padding-top: 70px; padding-bottom: 70px; }

@media (max-width: 991px) {
    .blog-featured-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 390px 260px; }
    .blog-featured-card--lead { grid-column: 1 / 3; grid-row: auto; }
    .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .blog-detail__layout { grid-template-columns: 1fr; }
    .blog-detail__sidebar { position: static; }
}

@media (max-width: 767px) {
    .blog-hero { min-height: 500px; text-align: center; }
    .blog-hero__inner { padding-top: 60px; padding-bottom: 60px; }
    .blog-hero p { font-size: 16px; }
    .blog-featured-section,
    .blog-listing-section,
    .blog-related-section { padding: 65px 0; }
    .blog-related-section::before {
        top: -80px;
        left: -88px;
        width: 205px;
        height: 205px;
        opacity: .78;
    }
    .blog-related-section::after {
        bottom: 8px;
        left: -75px;
        opacity: .72;
        transform: scale(.72);
    }
    .blog-section-heading { display: block; }
    .blog-section-heading > p { margin-top: 13px; }
    .blog-featured-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
    .blog-featured-card,
    .blog-featured-card--lead { grid-column: auto; height: 310px; }
    .blog-featured-card--lead .blog-featured-card__content { padding: 25px; }
    .blog-featured-card--lead h3 { font-size: 34px; }
    .blog-card-grid { grid-template-columns: 1fr; }
    .blog-card__image { height: 235px; }
    .blog-detail-hero { padding: 60px 0 55px; }
    .blog-detail-hero > .container > p { font-size: 16px; }
    .blog-detail-meta { gap: 12px 18px; }
    .blog-detail__layout { gap: 40px; padding-top: 45px; padding-bottom: 65px; }
    .blog-rich-content { font-size: 16px; }
    .blog-rich-content h2 { font-size: 34px; }
    .blog-rich-content h3 { font-size: 28px; }
}

@media (max-width: 480px) {
    .blog-detail__author { align-items: flex-start; flex-direction: column; }
    .blog-featured-card,
    .blog-featured-card--lead { height: 280px; }
}
