/* ==============================================
 Article pages hero
============================================== */
.he-article-hero {
    position: relative;
    min-height: 520px;
    margin: 100px 18px 52px;
    overflow: hidden;
    border-radius: 8px 42px 8px 42px;
    color: #fff;
    background: #17130e;
    isolation: isolate
}

.he-article-hero::after {
    position: absolute;
    z-index: -1;
    right: -85px;
    bottom: -115px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(242, 173, 41, .19);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(242, 173, 41, .035);
    content: "";
    pointer-events: none;
}

.he-article-hero__image,
.he-article-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
}

.he-article-hero__image {
    z-index: 0;
    object-fit: cover;
    object-position: center;
    pointer-events: auto;
}

.he-article-hero--listing .he-article-hero__image {
    object-position: center 42%
}

.he-article-hero--details .he-article-hero__image {
    object-position: center 58%
}

.he-article-hero__overlay {
    z-index: 1;
    background: linear-gradient(90deg, rgb(12 9 5 / 0%) 0%, rgb(12 9 5 / 19%) 44%, rgba(12, 9, 5, .16) 77%), linear-gradient(0deg, rgb(12 9 5 / 28%), transparent 58%);
    pointer-events: none;
}

.he-article-hero__content {
    position: relative;
    z-index: 2;
}

.he-article-hero--details .he-article-hero__overlay {
    background: linear-gradient(90deg, rgb(12 9 5 / 0%) 0%, rgb(12 9 5 / 20%) 53%, rgb(12 9 5 / 25%) 86%), linear-gradient(0deg, rgb(12 9 5 / 24%), transparent 60%);
}

.he-article-hero__inner {
    display: grid;
    min-height: 520px;
    padding-top: 82px;
    padding-bottom: 68px;
    align-items: center;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 55px;
    pointer-events: none;
}

.he-article-hero__inner > * {
    pointer-events: auto;
}

.he-article-hero__content {
    max-width: 870px
}

.he-article-hero__eyebrow {
    display: inline-flex;
    margin-bottom: 20px;
    padding: 8px 13px;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 99px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(8px);
    letter-spacing: .12em;
    text-transform: uppercase
}

.he-article-hero__eyebrow i {
    color: var(--second-color)
}

.he-article-hero h1 {
    /* max-width: 870px; */
    color: #fff;
    letter-spacing: -.045em;
    text-wrap: balance
}

.he-article-hero h1 em {
    color: var(--second-color);
    font-weight: 500
}

.he-article-hero--details h1 {
    max-width: 100%;
    font-size: clamp(2.8rem, 5.2vw, 4.25rem);
    line-height: 1.02
}

.he-article-hero__content>p {
    max-width: 650px;
    margin: 24px 0 27px;
    color: rgba(255, 255, 255, .76);
    font-size: .98rem;
    line-height: 1.75
}

.he-article-hero__breadcrumb {
    display: inline-flex;
    padding: 10px 14px;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    border-left: 3px solid var(--second-color);
    background: rgba(255, 255, 255, .07);
}

.he-article-hero__breadcrumb a {
    color: #fff;
    text-decoration: none
}

.he-article-hero__breadcrumb a:hover {
    color: var(--second-color)
}

.he-article-hero__breadcrumb>i,
.he-article-hero__breadcrumb span {
    color: rgba(255, 255, 255, .56)
}

.he-article-hero__breadcrumb>i {
    font-size: .55rem
}

.he-article-hero__feature {
    display: flex;
    width: 255px;
    padding: 22px;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px 26px 6px 26px;
    background: rgba(15, 12, 8, .58);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .24);
    backdrop-filter: blur(12px)
}

.he-article-hero__feature>i {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    color: #17130e;
    background: var(--second-color)
}

.he-article-hero__feature div {
    display: grid;
    gap: 5px
}

.he-article-hero__feature small {
    color: var(--second-color);
    letter-spacing: .1em;
    text-transform: uppercase
}

.he-article-hero__feature strong {
    color: #fff;
}

.he-article-hero__meta {
    display: flex;
    margin: 24px 0 26px;
    flex-wrap: wrap;
    gap: 9px
}

.he-article-hero__meta span {
    display: inline-flex;
    padding: 8px 11px;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 99px;
    color: rgba(255, 255, 255, .78);
    background: rgba(255, 255, 255, .06);
}

.he-article-hero__meta i {
    color: var(--second-color)
}

@media(max-width:991.98px) {
    .he-article-hero__inner {
        grid-template-columns: 1fr
    }

    .he-article-hero__feature {
        display: none
    }
}

@media(max-width:575.98px) {
    .he-article-hero {
        min-height: 510px;
        margin: 92px 8px 32px;
        border-radius: 6px 26px 6px 26px
    }

    .he-article-hero__inner {
        min-height: 510px;
        padding-top: 70px;
        padding-bottom: 55px
    }

    .he-article-hero h1,
    .he-article-hero--details h1 {
        font-size: clamp(1.75rem, 11.5vw, 4.15rem)
    }

    .he-article-hero__content>p {
        font-size: .88rem
    }

    .he-article-hero__eyebrow {
        font-size: .57rem;
        letter-spacing: .08em
    }

    .he-article-hero__meta {
        gap: 6px
    }
}

/* ==============================================
 Article catalog
============================================== */
.article-catalog {
    position: relative;
    padding: 32px 0 30px;
    overflow: clip;
    background: radial-gradient(circle at 6% 8%, rgba(242, 173, 41, .12), transparent 24%), linear-gradient(180deg, #fff, #faf6ee)
}

.article-catalog__mark {
    position: absolute;
    top: 8px;
    right: -20px;
    color: rgba(24, 20, 14, .03);
    pointer-events: none
}

.article-catalog__head {
    position: relative;
    z-index: 1;
    display: grid;
    margin-bottom: 34px;
    align-items: end;
    grid-template-columns: 1.1fr .9fr;
    gap: 50px
}

.article-catalog__head span {
    display: inline-block;
    margin-bottom: 12px;
    color: #a36d08;
    letter-spacing: .17em;
    text-transform: uppercase
}

.article-catalog__head h2 {
    color: #1e1a14;
    letter-spacing: -.04em
}

.article-catalog__head h2 em {
    color: #b77800;
    font-weight: 500
}

.article-catalog__head>p {
    margin: 0;
    color: #6c645a;
    font-size: .9rem;
    line-height: 1.75
}

.article-catalog__filters {
    position: relative;
    z-index: 1;
    display: flex;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 8px
}

.article-catalog__filters a {
    padding: 9px 14px;
    border: 1px solid #e4dacb;
    border-radius: 99px;
    color: #665e54;
    background: rgba(255, 255, 255, .72);
    text-decoration: none
}

.article-catalog__filters a:hover,
.article-catalog__filters a.is-active {
    border-color: #17130e;
    color: #fff;
    background: #17130e
}

.article-catalog__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px
}

.journal-card {
    display: flex;
    min-width: 0;
    overflow: hidden;
    flex-direction: column;
    border: 1px solid #e8dfd1;
    border-radius: 6px 24px 6px 24px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(48, 35, 16, .08);
    transition: transform .3s ease, box-shadow .3s ease
}

.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(48, 35, 16, .14)
}

.journal-card__image {
    position: relative;
    display: block;
    height: 225px;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

.journal-card__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(16, 12, 7, .35), transparent 52%);
    content: ""
}

.journal-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.journal-card:hover .journal-card__image img {
    transform: scale(1.055)
}

.journal-card__category {
    position: absolute;
    z-index: 1;
    top: 14px;
    left: 14px;
    padding: 7px 10px;
    border-radius: 99px;
    color: #17130e;
    background: var(--second-color);
    letter-spacing: .05em;
    text-transform: uppercase
}

.journal-card__body {
    display: flex;
    padding: 22px;
    flex: 1;
    flex-direction: column
}

.journal-card__meta {
    display: flex;
    margin-bottom: 11px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #002b11;
}

.journal-card__meta i {
    margin-right: 4px;
    color: var(--second-color);
}

.journal-card h3 {
    margin: 0 0 12px;
    height: 42px;
}

.journal-card h3 a {
    color: #211c15 !important;
    text-decoration: none
}

.journal-card h3 a:hover {
    color: #a36d08 !important
}

.journal-card__body>p {
    display: -webkit-box;
    overflow: hidden;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3
}

.journal-card__link {
    display: inline-flex;
    margin-top: auto;
    align-items: center;
    gap: 9px;
    color: #17130e !important;
    letter-spacing: .06em;
    text-decoration: none;
}

.journal-card__link i {
    color: #b77800;
    transition: transform .2s ease
}

.journal-card__link:hover i {
    transform: translateX(4px)
}

.article-catalog__pagination {
    display: flex;
    margin-top: 44px;
    justify-content: center;
    gap: 7px
}

.article-catalog__pagination a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid #e1d6c5;
    border-radius: 4px 12px 4px 12px;
    color: #4b443b;
    background: #fff;
    text-decoration: none
}

.article-catalog__pagination a:hover,
.article-catalog__pagination a.is-current {
    border-color: var(--second-color);
    color: #17130e;
    background: var(--second-color)
}

.article-catalog__pagination a.is-disabled {
    opacity: .35;
    pointer-events: none
}

@media(max-width:991.98px) {
    .article-catalog__head {
        grid-template-columns: 1fr;
        gap: 18px
    }

    .article-catalog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr))
    }

}

@media(max-width:575.98px) {
    .article-catalog {
        padding: 60px 0
    }

    .article-catalog__grid {
        grid-template-columns: 1fr
    }

    .journal-card__image {
        height: 235px;
        min-height: 0
    }
}


.blog-section {
    background: linear-gradient(180deg, #fff3cd38 0%, #ffc10708 100%);
    padding: 20px 0;
}

/* Article details */
.article-detail {
    padding: 78px 0 90px;
    background:
        radial-gradient(circle at 8% 8%, rgba(247, 174, 26, .09), transparent 25%),
        #fbfaf7;
}

.article-detail__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 34px;
}

.article-detail__main {
    overflow: hidden;
    border: 1px solid #eadfce;
    border-radius: 8px 36px 8px 36px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(42, 31, 16, .09);
}

.article-detail__cover {
    position: relative;
    height: clamp(320px, 44vw, 570px);
    margin: 0;
    overflow: hidden;
}

.article-detail__cover::after {
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(transparent, rgba(19, 15, 10, .68));
    content: "";
}

.article-detail__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-detail__cover figcaption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 20px;
    padding: 9px 14px;
    border-radius: 4px 13px 4px 13px;
    color: #fff;
    background: rgba(15, 18, 20, .72);
    backdrop-filter: blur(8px);
}

.article-detail__cover figcaption i {
    margin-right: 6px;
    color: #f7ae1a;
}

.article-detail__intro,
.article-detail__content,
.article-detail__footer {
    width: min(100% - 48px, 883px);
    margin-inline: auto;
}

.article-detail__intro {
    padding: 42px 0 8px;
}

.article-detail__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #b77800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.article-detail__kicker::before {
    width: 24px;
    height: 2px;
    background: #f7ae1a;
    content: "";
}

.article-detail__intro h2 {
    margin: 12px 0 16px;
    color: #211c15;
}

.article-detail__lead {
    margin: 0;
    color: #645b50;
    font-size: 1.08rem;
    line-height: 1.8;
}

.article-detail__content {
    padding: 10px 0 38px;
    color: #595147;
    font-size: .97rem;
    line-height: 1.9;
}

.article-detail__content h2 {
    scroll-margin-top: 110px;
    margin: 38px 0 13px;
    color: #211c15;
}

.article-detail__content p {
    margin: 0 0 19px;
}

.article-detail__content a {
    color: #a66d00;
    font-weight: 700;
    text-decoration-color: rgba(166, 109, 0, .35);
}

.article-detail__content-image {
    margin: 32px 0 38px;
}

.article-detail__content figure img {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 5px 24px 5px 24px;
    box-shadow: 0 16px 38px rgba(42, 31, 16, .12);
}

.article-detail__content-image figcaption {
    margin-top: 10px;
    color: #887b6c;
    font-size: .72rem;
    font-style: italic;
    line-height: 1.55;
}

.article-detail__quote {
    position: relative;
    margin: 38px 0;
    padding: 32px 35px 30px 82px;
    overflow: hidden;
    border: 0;
    border-radius: 5px 28px 5px 28px;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(247, 174, 26, .24), transparent 38%),
        var(--main-color);
}

.article-detail__quote>i {
    position: absolute;
    top: 34px;
    left: 30px;
    color: #f7ae1a;
    font-size: 1.7rem;
}

.article-detail__quote p {
    margin: 0;
    color: inherit;
}

.article-detail__tips {
    margin: 42px 0;
    padding: 30px;
    border: 1px solid #ead9bb;
    border-radius: 5px 26px 5px 26px;
    background: #fff9ed;
}

.article-detail__tips h2 {
    margin-top: 8px;
}

.article-detail__tips ul {
    display: grid;
    margin: 22px 0 0;
    padding: 0;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    list-style: none;
}

.article-detail__tips li {
    display: flex;
    padding: 16px;
    align-items: flex-start;
    gap: 12px;
    border: 1px solid rgba(183, 120, 0, .16);
    border-radius: 4px 14px 4px 14px;
    background: #fff;
    font-size: .84rem;
    line-height: 1.55;
}

.article-detail__tips li i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #17384a;
    background: #f7ae1a;
}

.article-detail__footer {
    display: flex;
    padding: 26px 0 34px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid #eadfce;
}

.article-detail__category {
    color: #5c5144;
    font-size: .78rem;
    font-weight: 800;
    text-decoration: none;
}

.article-detail__category i {
    margin-right: 7px;
    color: #b77800;
}

.article-detail__share {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #756b60;
    font-size: .72rem;
    font-weight: 800;
}

.article-detail__share a {
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    border: 1px solid #dfd4c4;
    border-radius: 50%;
    color: #17384a;
    background: #fff;
    text-decoration: none;
    transition: .2s ease;
}

.article-detail__share a:hover {
    border-color: #f7ae1a;
    background: #f7ae1a;
    transform: translateY(-2px);
}

.article-detail__aside-inner {
    position: sticky;
    top: 95px;
    display: grid;
    gap: 22px;
}

.article-detail__toc,
.article-detail__recent,
.article-detail__related,
.article-detail__cta {
    padding: 26px;
    border: 1px solid #eadfce;
    border-radius: 5px 24px 5px 24px;
    background: #fff;
    box-shadow: 0 16px 38px rgba(42, 31, 16, .07);
}

.article-detail__toc h2,
.article-detail__recent h2,
.article-detail__related h2,
.article-detail__cta h2 {
    margin: 8px 0 18px;
    color: #211c15;
}

.article-detail__recent-post {
    display: grid;
    padding: 14px 0;
    grid-template-columns: 92px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    border-bottom: 1px solid #eee5d8;
    color: #211c15;
    text-decoration: none;
}

.article-detail__recent-post:last-child,
.article-detail__related>a:last-child {
    border-bottom: 0;
}

.article-detail__recent-post img {
    width: 92px;
    height: 74px;
    object-fit: cover;
    border-radius: 4px 14px 4px 14px;
}

.article-detail__recent-copy {
    display: grid;
    gap: 8px;
}

.article-detail__recent-copy strong {
    transition: color .2s ease;
}

.article-detail__recent-copy time {
    color: #8b7e6e;
    font-size: .66rem;
    font-weight: 700;
}

.article-detail__recent-copy time i {
    margin-right: 5px;
    color: #b77800;
}

.article-detail__recent-post:hover strong {
    color: #a66d00;
}

.article-detail__toc>a,
.article-detail__related>a {
    display: flex;
    padding: 11px 0;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #eee5d8;
    color: #655c51;
    font-size: .77rem;
    font-weight: 700;
    line-height: 1.45;
    text-decoration: none;
}

.article-detail__toc>a::before {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #f7ae1a;
    content: "";
}

.article-detail__toc>a:hover,
.article-detail__related>a:hover {
    color: #a66d00;
}

.article-detail__related>a i {
    color: #b77800;
    font-size: .65rem;
}

.article-detail__cta {
    border: 0;
    color: #fff;
    background:
        radial-gradient(circle at 100% 0, rgba(247, 174, 26, .3), transparent 40%),
        var(--main-color);
}

.article-detail__cta>i {
    color: #f7ae1a;
    font-size: 1.8rem;
}

.article-detail__cta>span {
    display: block;
    margin-top: 18px;
    color: #f7ae1a;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-detail__cta h2 {
    color: #fff;
}

.article-detail__cta p {
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    line-height: 1.65;
}

.article-detail__cta a {
    display: inline-flex;
    margin-top: 6px;
    padding: 12px 17px;
    align-items: center;
    gap: 10px;
    border-radius: 3px 11px 3px 11px;
    color: #17130e;
    background: #f7ae1a;
    letter-spacing: .05em;
    text-decoration: none;
    text-transform: uppercase;
}

@media(max-width:991.98px) {
    .article-detail__layout {
        grid-template-columns: 1fr;
    }

    .article-detail__aside-inner {
        position: static;
        grid-template-columns: 1fr 1fr;
    }

    .article-detail__recent {
        grid-row: span 2;
    }
}

@media(max-width:575.98px) {
    .article-detail {
        padding: 52px 0 65px;
    }

    .article-detail__cover {
        height: 270px;
    }

    .article-detail__intro,
    .article-detail__content,
    .article-detail__footer {
        width: calc(100% - 34px);
    }

    .article-detail__intro {
        padding-top: 30px;
    }

    .article-detail__tips ul,
    .article-detail__aside-inner {
        grid-template-columns: 1fr;
    }

    .article-detail__quote {
        padding: 70px 23px 25px;
    }

    .article-detail__quote>i {
        top: 25px;
        left: 24px;
    }

    .article-detail__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

.blog--grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 9px;
    align-items: start;
}

.blog__card {
    margin-top: 0;
    margin-bottom: 7px;
    font-size: 15px;
    font-weight: 700;
    color: var(--second-color);
    transition: gap .25s var(--ease);
}

.blog--grid .blog-card--featured .blog-card__body h3 {
    font-size: 21px;
    height: 56px;
}

.blog-card--featured .blog-card__body h3 {
    font-size: 17px;
    height: 82px;
}



.article-content-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #fffaf2 0%, #fff 50%, #fbf6ec 100%);
    border-bottom: 1px solid rgba(201, 155, 61, 0.1);
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 323px;
    gap: 9px;
    align-items: start;
}

.article-main {
    max-width: 955px;
    padding: 26px;
}

.article-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--main-color);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgb(0 0 0 / 20%);
}

.content-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}


.blog-side--list {
    grid-template-rows: auto auto 1fr;
    background: var(--white);
    border: 2px solid #e5e5e5;
    border-radius: var(--radius-lg);
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    margin-top: 6px;
    gap: 4px;
    -webkit-border-radius: var(--radius-lg);
    -moz-border-radius: var(--radius-lg);
    -ms-border-radius: var(--radius-lg);
    -o-border-radius: var(--radius-lg);
}

.blog-side-list h2 {
    text-align: center;
    margin-top: 11px;
    margin-bottom: 13px;
    font-size: 21px;
}

.blog-feature-card,
.blog-mini-card,
.blog-newsletter-card {
    background: #fff;
    border: 1px solid rgba(16, 32, 51, .10);
    border-radius: 28px;
    box-shadow: 0 14px 40px rgba(6, 29, 53, .10);
    overflow: hidden;
    transition: .25s var(--ease);
    -webkit-transition: .25s var(--ease);
    -moz-transition: .25s var(--ease);
    -ms-transition: .25s var(--ease);
    -o-transition: .25s var(--ease);
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -ms-border-radius: 28px;
    -o-border-radius: 28px;
}

.blog-side-list {
    display: grid;
    gap: 16px;
}

.blog-mini-card a {
    display: grid;
    grid-template-columns: 97px 1fr;
    gap: 16px;
    padding: 14px;
    align-items: start;
}

.blog-mini-card img {
    height: 85px;
    width: 100px;
    border-radius: 20px;
}

.blog-mini-card h3 {
    color: var(--main-color);
    font-size: 16px;
    letter-spacing: 0px;
    margin-top: 0;
}

.content-image {
    margin-bottom: 20px;
}

.Metadata {
    margin-top: 13px;
    display: flex;
    gap: 24px;
    margin-bottom: 17px;
    flex-wrap: wrap;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #e5e5e5;
}

.blog-title {
    font-size: 33px;
}

.Metadata__icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

@media (max-width: 1024px) {

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-content-section {
        padding: 25px 0;
    }

    .article-main {
        max-width: 955px;
        padding: 10px;
    }

    .blog-title {
        font-size: 23px;
    }

    .blog-card--featured .blog-card__body h3 {
        text-align: start;
    }

    .content-block h2 {
        margin-bottom: 11px;
        font-size: 20px;
    }
}
.he-article-hero__breadcrumb>i, .he-article-hero__breadcrumb span {
    color: #ffffff;
}
