/* ========================================================================== */
/* Arvika blog archive + Gutenberg article                                    */
/* ========================================================================== */

.blog_archive_body,
.blog_single_body {
    background: #fff;
}

.blog_archive_page,
.blog_single_page {
    overflow: hidden;
}

.blog_archive_page .container,
.blog_single_page .container {
    width: min(calc(100% - 48px), 1320px);
    max-width: 1320px;
}

.blog_archive_page .service_breadcrumbs,
.blog_single_page .service_breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 42px;
    overflow: hidden;
    font-size: 14px;
    line-height: 130%;
    white-space: nowrap;
    color: #786d66;
}

.blog_archive_page .service_breadcrumbs a,
.blog_archive_page .service_breadcrumbs span,
.blog_single_page .service_breadcrumbs a,
.blog_single_page .service_breadcrumbs span {
    color: inherit;
}

.blog_archive_page .service_breadcrumbs > :last-child,
.blog_single_page .service_breadcrumbs > :last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Archive intro */
.blog_archive_intro {
    padding: 38px 0 72px;
    background: #f4f4f4 url(../img/hero_bg.png) no-repeat center top / cover;
}

.blog_archive_heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 455px);
    align-items: end;
    gap: 80px;
}

.blog_eyebrow {
    display: block;
    margin-bottom: 5px;
    font-family: "Cormorant", serif;
    font-style: italic;
    font-size: 30px;
    line-height: 110%;
    color: #786d66;
}

.blog_archive_heading h1 {
    margin: 0;
    font-size: clamp(44px, 4.2vw, 60px);
    line-height: 112%;
}

.blog_archive_heading p {
    max-width: 455px;
    font-size: 16px;
    line-height: 150%;
    color: #60534b;
}

/* Filters */
.blog_archive_content {
    padding: 48px 0 112px;
}

.blog_filters {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(220px, 280px) auto auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 34px;
    padding: 12px;
    background: #fff;
    border: 1px solid rgba(96, 83, 75, 0.14);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(43, 35, 31, 0.06);
}

.blog_search_field,
.blog_category_field {
    position: relative;
    min-width: 0;
}

.blog_search_field {
    display: flex;
    align-items: center;
}

.blog_search_field svg {
    position: absolute;
    left: 20px;
    color: #8f847d;
    pointer-events: none;
}

.blog_search_field input,
.blog_category_field select {
    width: 100%;
    height: 54px;
    border: 0;
    outline: 0;
    border-radius: 14px;
    background: #f4f4f4;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1;
    color: #000;
}

.blog_search_field input {
    padding: 0 20px 0 53px;
}

.blog_search_field input::placeholder {
    color: #8f847d;
    opacity: 1;
}

.blog_category_field select {
    padding: 0 46px 0 18px;
    cursor: pointer;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #786d66 50%), linear-gradient(135deg, #786d66 50%, transparent 50%);
    background-position: calc(100% - 22px) 24px, calc(100% - 17px) 24px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.blog_search_field input:focus,
.blog_category_field select:focus {
    box-shadow: inset 0 0 0 2px #bcb5af;
}

.blog_filter_submit,
.blog_filter_reset {
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 27px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    line-height: 1;
    white-space: nowrap;
}

.blog_filter_submit {
    min-width: 126px;
    background: #60534b;
    color: #fff;
    transition: background-color .25s ease, transform .25s ease;
}

.blog_filter_submit:hover {
    background: #000;
    transform: translateY(-1px);
}

.blog_filter_reset {
    padding-right: 18px;
    padding-left: 14px;
    color: #60534b;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Cards */
.blog_grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog_card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #f4f4f4;
    border-radius: 24px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.blog_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 60px rgba(43, 35, 31, 0.12);
}

.blog_card_media {
    position: relative;
    min-height: 235px;
    overflow: hidden;
    background: #d7d1cc;
}

.blog_card_image,
.blog_card_media > img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 235px;
    object-fit: cover;
    aspect-ratio: 1.52 / 1;
    transition: transform .55s ease;
}

.blog_card:hover .blog_card_image {
    transform: scale(1.035);
}

.blog_card_placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 235px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #d8d3cf 0%, #bcb5af 100%);
}

.blog_card_placeholder::before,
.blog_card_placeholder::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 50%;
}

.blog_card_placeholder::before {
    top: -175px;
    right: -80px;
}

.blog_card_placeholder::after {
    bottom: -190px;
    left: -60px;
}

.blog_card_placeholder span {
    position: relative;
    z-index: 1;
    font-weight: 500;
    font-size: 30px;
    letter-spacing: .08em;
    color: #fff;
}

.blog_card_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px 24px 25px;
}

.blog_card_meta,
.article_meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 130%;
    color: #786d66;
}

.blog_category_badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 29px;
    padding: 6px 12px;
    border-radius: 30px;
    background: #bcb5af;
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    color: #fff;
}

.blog_card_title {
    margin: 0 0 13px;
    font-size: clamp(21px, 1.65vw, 26px);
    line-height: 125%;
    letter-spacing: -0.04em;
}

.blog_card_excerpt {
    margin: 0 0 25px;
    font-size: 14px;
    line-height: 150%;
    color: #60534b;
}

.blog_card_bottom {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(96, 83, 75, .14);
}

.blog_card_read {
    position: relative;
    padding-right: 25px;
    font-weight: 600;
    font-size: 14px;
    line-height: 130%;
    color: #000;
}

.blog_card_read::after {
    content: "→";
    position: absolute;
    right: 0;
    transition: transform .25s ease;
}

.blog_card:hover .blog_card_read::after {
    transform: translateX(4px);
}

.blog_card_time {
    font-size: 12px;
    line-height: 130%;
    white-space: nowrap;
    color: #786d66;
}

.blog_card_stretched {
    position: absolute;
    inset: 0;
    z-index: 3;
    border-radius: inherit;
}

.blog_card_stretched:focus-visible {
    outline: 3px solid #60534b;
    outline-offset: -5px;
}

/* Empty state + pagination */
.blog_empty {
    min-height: 360px;
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f4f4f4;
    border-radius: 24px;
}

.blog_empty_mark {
    width: 70px;
    height: 70px;
    margin-bottom: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #bcb5af;
    font-family: "Cormorant", serif;
    font-size: 43px;
    color: #fff;
}

.blog_empty h2 {
    margin-bottom: 10px;
    font-size: 32px;
}

.blog_empty p {
    max-width: 520px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #60534b;
}

.blog_empty a {
    font-weight: 600;
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.blog_pagination {
    margin-top: 54px;
}

.blog_pagination ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
}

.blog_pagination a,
.blog_pagination span.page-numbers {
    min-width: 44px;
    height: 44px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(96, 83, 75, .18);
    border-radius: 24px;
    font-weight: 500;
    font-size: 14px;
    color: #60534b;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

.blog_pagination a:hover,
.blog_pagination .current {
    background: #60534b;
    border-color: #60534b;
    color: #fff !important;
}

.blog_pagination .prev,
.blog_pagination .next {
    gap: 8px;
    padding: 0 18px;
}

/* Single article header */
.article_header {
    padding: 38px 0 72px;
    background: #f4f4f4 url(../img/hero_bg.png) no-repeat center top / cover;
}

.article_header_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.article_header .service_breadcrumbs {
    width: 100%;
    align-self: stretch;
    text-align: left;
}

.article_meta {
    justify-content: center;
    margin-bottom: 24px;
    font-size: 13px;
}

.article_meta > * + * {
    position: relative;
    padding-left: 16px;
}

.article_meta > * + *::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    margin-top: -1px;
    border-radius: 50%;
    background: #8f847d;
}

.article_meta .blog_category_badge {
    padding-left: 13px;
    color: #fff;
}

.article_meta .blog_category_badge::before {
    display: none;
}

.article_header h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(40px, 4.5vw, 62px);
    line-height: 112%;
}

.article_lead {
    max-width: 780px;
    margin-top: 25px;
    font-size: 19px;
    line-height: 155%;
    color: #60534b;
}

.article_cover {
    margin: 0 0 44px;
}

.article_cover_image {
    display: block;
    width: 100%;
    max-height: 460px;
    object-fit: cover;
    aspect-ratio: 1.78 / 1;
    border-radius: 20px;
}

.article_cover figcaption {
    margin: 10px 10px 0;
    font-size: 12px;
    line-height: 145%;
    text-align: right;
    color: #786d66;
}

/* Single article body */
.article_layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 820px);
    justify-content: center;
    align-items: start;
    gap: clamp(48px, 6vw, 88px);
    padding-top: 56px;
    padding-bottom: 112px;
}

.article_toc[hidden] {
    display: none;
}

.article_toc {
    grid-column: 1;
    position: sticky;
    top: 110px;
    min-width: 0;
}

.article_toc details {
    padding: 22px;
    background: #f4f4f4;
    border-radius: 18px;
}

.article_toc summary {
    position: relative;
    padding-right: 26px;
    list-style: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    line-height: 130%;
    color: #000;
}

.article_toc summary::-webkit-details-marker {
    display: none;
}

.article_toc summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: -2px;
    font-size: 20px;
    font-weight: 400;
    color: #786d66;
}

.article_toc details[open] summary::after {
    content: "−";
}

.article_toc ol {
    margin: 19px 0 0;
    padding: 17px 0 0;
    border-top: 1px solid rgba(96, 83, 75, .14);
    list-style: none;
}

.article_toc li + li {
    margin-top: 12px;
}

.article_toc li.is-subheading {
    padding-left: 13px;
}

.article_toc a {
    display: block;
    font-size: 12px;
    line-height: 145%;
    color: #786d66;
    transition: color .2s ease;
}

.article_toc a:hover,
.article_toc a.is-active {
    color: #000;
}

.article_toc a.is-active {
    font-weight: 600;
}

.article_content {
    grid-column: 2;
    min-width: 0;
    font-family: "Montserrat", sans-serif;
    color: #000;
}

.article_toc[hidden] + .article_content {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 820px;
    justify-self: center;
}

.article_content > *:first-child {
    margin-top: 0 !important;
}

.article_content > *:last-child {
    margin-bottom: 0 !important;
}

.article_content h2,
.article_content h3,
.article_content h4 {
    scroll-margin-top: 115px;
    color: #000;
}

.article_content h2 {
    margin: 58px 0 22px;
    font-size: 38px;
    line-height: 122%;
    letter-spacing: -0.045em;
}

.article_content h3 {
    margin: 44px 0 18px;
    font-weight: 500;
    font-size: 27px;
    line-height: 128%;
    letter-spacing: -0.035em;
}

.article_content h4 {
    margin: 34px 0 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 135%;
    letter-spacing: -0.02em;
}

.article_content p,
.article_content li {
    font-size: 17px;
    line-height: 168%;
    color: #211e1c;
}

.article_content p {
    margin: 0 0 25px;
}

.article_content a {
    color: #60534b;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.article_content strong {
    font-weight: 600;
}

.article_content ul,
.article_content ol {
    margin: 0 0 30px;
    padding-left: 24px;
}

.article_content li {
    padding-left: 5px;
}

.article_content li + li {
    margin-top: 10px;
}

.article_content li::marker {
    color: #8f847d;
}

.article_content blockquote,
.article_content .wp-block-quote {
    margin: 42px 0;
    padding: 31px 34px;
    background: #f4f4f4;
    border: 0;
    border-left: 4px solid #bcb5af;
    border-radius: 0 18px 18px 0;
}

.article_content blockquote p {
    margin: 0;
    font-family: "Cormorant", serif;
    font-style: italic;
    font-size: 28px;
    line-height: 132%;
    color: #403833;
}

.article_content blockquote cite {
    display: block;
    margin-top: 16px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 12px;
    color: #786d66;
}

.article_content figure,
.article_content .wp-block-image,
.article_content .wp-block-gallery,
.article_content .wp-block-video,
.article_content .wp-block-embed {
    margin-top: 40px;
    margin-bottom: 40px;
}

.article_content figure img,
.article_content .wp-block-image img,
.article_content .wp-block-gallery img,
.article_content video,
.article_content iframe {
    max-width: 100%;
    border-radius: 18px;
}

.article_content figcaption,
.article_content .wp-element-caption {
    margin-top: 10px;
    font-size: 12px;
    line-height: 145%;
    text-align: center;
    color: #786d66;
}

.article_content .alignwide {
    width: min(1010px, calc(100vw - 48px));
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

.article_content .wp-block-cover {
    min-height: 430px;
    margin: 42px 0;
    overflow: hidden;
    border-radius: 22px;
}

.article_content .wp-block-cover p {
    color: inherit;
}

.article_content .wp-block-separator {
    margin: 48px 0;
    border: 0;
    border-top: 1px solid rgba(96, 83, 75, .2);
}

.article_content .wp-block-table {
    margin: 38px 0;
    overflow-x: auto;
}

.article_content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    line-height: 145%;
}

.article_content th,
.article_content td {
    padding: 15px 16px;
    border: 1px solid rgba(96, 83, 75, .18);
    text-align: left;
    vertical-align: top;
}

.article_content th {
    background: #f4f4f4;
    font-weight: 600;
}

.article_content pre,
.article_content .wp-block-code {
    margin: 36px 0;
    overflow-x: auto;
    padding: 24px;
    background: #292522;
    border-radius: 16px;
    font-family: monospace;
    font-size: 14px;
    line-height: 155%;
    color: #fff;
}

.article_content .wp-block-buttons {
    margin: 34px 0;
}

.article_content .wp-block-button__link {
    padding: 15px 27px;
    background: #60534b;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
}

.article_page_links,
.article_tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(96, 83, 75, .16);
}

.article_page_links > *,
.article_tags a {
    min-height: 34px;
    padding: 8px 13px;
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    background: #f4f4f4;
    font-weight: 500;
    font-size: 12px;
    line-height: 130%;
    color: #60534b;
    text-decoration: none;
}

.article_page_links > span:first-child {
    padding-left: 0;
    background: transparent;
}

/* Related posts + CTA */
.article_related {
    padding: 82px 0 92px;
    background: #f4f4f4;
}

.article_related .blog_card {
    background: #fff;
}

.article_section_heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.article_section_heading h2 {
    margin: 0;
    font-size: 42px;
}

.article_section_heading > a {
    padding-bottom: 4px;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.article_cta {
    padding: 80px 0;
    background: #fff;
}

.article_cta_inner {
    min-height: 250px;
    padding: 46px 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #bcb5af;
    border-radius: 28px;
}

.article_cta_inner span {
    display: block;
    margin-bottom: 10px;
    font-family: "Cormorant", serif;
    font-style: italic;
    font-size: 27px;
    color: #60534b;
}

.article_cta_inner h2 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(32px, 3.3vw, 46px);
    line-height: 115%;
}

.article_cta_button {
    min-height: 56px;
    flex: 0 0 auto;
    padding: 16px 29px;
    border-radius: 30px;
    background: #fff;
    font-weight: 600;
    font-size: 15px;
    color: #60534b;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.article_cta_button:hover {
    background: #60534b;
    color: #fff;
    transform: translateY(-2px);
}

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

    .blog_filters {
        grid-template-columns: minmax(220px, 1fr) minmax(200px, 250px) auto;
    }

    .blog_filter_reset {
        grid-column: 1 / -1;
        width: fit-content;
        height: auto;
        margin: -2px auto 2px;
        padding: 4px 12px;
    }

    .article_layout {
        grid-template-columns: 215px minmax(0, 1fr);
        gap: 46px;
    }
}

@media (max-width: 900px) {
    .blog_archive_heading {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog_archive_heading p {
        max-width: 650px;
    }

    .article_layout {
        grid-template-columns: 1fr;
        gap: 34px;
        max-width: 820px !important;
    }

    .article_toc {
        grid-column: 1;
        position: static;
    }

    .article_content,
    .article_toc[hidden] + .article_content {
        grid-column: 1;
    }

    .article_toc details {
        padding: 20px 22px;
    }
}

@media (max-width: 768px) {
    .blog_archive_page .container,
    .blog_single_page .container {
        width: calc(100% - 42px);
    }

    .blog_archive_page .service_breadcrumbs,
    .blog_single_page .service_breadcrumbs {
        display: none;
    }

    .blog_archive_intro {
        padding: 31px 0 47px;
    }

    .blog_eyebrow {
        margin-bottom: 7px;
        font-size: 25px;
    }

    .blog_archive_heading h1 {
        font-size: 36px;
    }

    .blog_archive_heading p {
        font-size: 15px;
    }

    .blog_archive_content {
        padding: 30px 0 82px;
    }

    .blog_filters {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 22px;
        padding: 10px;
        border-radius: 18px;
    }

    .blog_filter_submit,
    .blog_filter_reset {
        width: 100%;
    }

    .blog_filter_reset {
        grid-column: auto;
        margin: 3px 0 5px;
    }

    .blog_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog_card {
        border-radius: 20px;
    }

    .blog_card:hover {
        transform: none;
        box-shadow: none;
    }

    .blog_card_media,
    .blog_card_image,
    .blog_card_media > img,
    .blog_card_placeholder {
        min-height: 215px;
    }

    .blog_card_content {
        padding: 21px;
    }

    .blog_card_title {
        font-size: 25px;
        line-height: 122%;
    }

    .blog_card_excerpt {
        font-size: 14px;
    }

    .blog_pagination {
        margin-top: 40px;
    }

    .pagination_label {
        display: none;
    }

    .article_header {
        padding: 32px 0 72px;
    }

    .article_meta {
        margin-bottom: 20px;
    }

    .article_header h1 {
        font-size: 35px;
        line-height: 116%;
    }

    .article_lead {
        margin-top: 20px;
        font-size: 16px;
        line-height: 155%;
    }

    .article_cover_image {
        max-height: 360px;
        min-height: 0;
        aspect-ratio: 1.6 / 1;
        border-radius: 16px;
    }

    .article_cover {
        margin-bottom: 34px;
    }

    .article_layout {
        gap: 30px;
        padding-top: 49px;
        padding-bottom: 76px;
    }

    .article_content h2 {
        margin: 44px 0 18px;
        font-size: 29px;
        line-height: 125%;
    }

    .article_content h3 {
        margin: 35px 0 15px;
        font-size: 23px;
    }

    .article_content h4 {
        font-size: 19px;
    }

    .article_content p,
    .article_content li {
        font-size: 16px;
        line-height: 165%;
    }

    .article_content blockquote,
    .article_content .wp-block-quote {
        margin: 34px 0;
        padding: 25px 23px;
    }

    .article_content blockquote p {
        font-size: 24px;
    }

    .article_content .alignwide {
        width: calc(100vw - 42px);
    }

    .article_content .wp-block-cover {
        min-height: 320px;
    }

    .article_related {
        padding: 58px 0 64px;
    }

    .article_section_heading {
        align-items: center;
        margin-bottom: 25px;
    }

    .article_section_heading h2 {
        font-size: 31px;
    }

    .article_cta {
        padding: 56px 0;
    }

    .article_cta_inner {
        min-height: 0;
        padding: 34px 25px;
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        border-radius: 21px;
    }

    .article_cta_inner h2 {
        font-size: 31px;
    }

    .article_cta_button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .blog_archive_page .container,
    .blog_single_page .container {
        width: calc(100% - 32px);
    }

    .blog_archive_heading h1,
    .article_header h1 {
        font-size: 31px;
    }

    .blog_card_meta {
        gap: 8px 10px;
    }

    .blog_card_bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .article_meta {
        gap: 9px;
    }

    .article_meta > * + * {
        padding-left: 12px;
    }

    .article_content .alignwide {
        width: calc(100vw - 32px);
    }

    .article_section_heading > a {
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .blog_card,
    .blog_card_image,
    .blog_card_read::after,
    .blog_filter_submit,
    .article_cta_button {
        transition: none !important;
    }
}
