.header-progress-bar {
    display: none;
}

.post-new {
    .post {
        background-color: #fff;
    }

    h1, h2, p {
        margin: 0;
        padding: 0;
    }

    .container-post {
        max-width: 1210px;
        padding: 0 16px;
        margin: 0 auto;
    }

    .post-hero {
        padding-top: 48px;
        padding-bottom: 64px;
        background-color: #FAF7F5;;

        .post-hero__wrapper {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        @media (max-width: 768px) {
            .post-hero__wrapper {
                flex-direction: column;
                gap: 24px;
            }
        }

        .post-hero__content {
            flex: 0 1 560px;
        }

        @media (max-width: 768px) {
            .post-hero__content {
                flex: none;
                width: 100%;
            }
        }

        .post__image {
            flex: 0 1 586px;
            margin: 0;

            img {
                width: 100%;
                height: auto;
                object-fit: contain;
                border-radius: 24px;
                display: block;
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .post__image {
                flex: none;
                width: 100%;
            }

            .post__image img {
                border-radius: 16px;
            }
        }

        .post-hero__breadcrumbs {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 32px;

            a {
                font-family: Gilroy;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: 24px;
                letter-spacing: 0.16px;
                font-feature-settings: 'liga' off;
                text-decoration: none;
            }

            a:hover {
                color: var(--foreground-primary, #282828);
                text-decoration-line: underline;
                text-decoration-style: solid;
                text-decoration-skip-ink: auto;
                text-decoration-thickness: auto;
                text-underline-offset: auto;
                text-underline-position: from-font;
            }
        }

        @media (max-width: 480px) {
            .post-hero__breadcrumbs {
                margin-bottom: 24px;
            }
        }

        .post__title {
            color: var(--Text-Primary, #282828);
            font-feature-settings: 'liga' off;

            font-family: Gilroy;
            font-size: 40px;
            font-style: normal;
            font-weight: 700;
            line-height: 44px; /* 110% */
            letter-spacing: -0.4px;
            text-align: left;
            margin-bottom: 32px;
        }

        @media (max-width: 480px) {
            .post__title {
                font-size: 28px;
                line-height: 32px;
                letter-spacing: -0.14px;
                margin-bottom: 24px;
            }
        }

        .soc-networks {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
        }

        @media (max-width: 480px) {
            .soc-networks {
                margin-bottom: 24px;
                gap: 16px;
            }
        }

        .soc-networks__link {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 100%;
            border: 1px solid rgba(217, 217, 217, 1);

            &:hover {
                svg path{
                    fill: #282828;
                }

                outline: 2px solid #282828;
            }
        }

        .post__information {
            display: flex;
            align-items: center;
            gap: 64px;
            font-size: 14px;
            font-weight: 500;
            line-height: 1.42;
            color: rgba(51, 51, 51, 1);
            text-align: left;
        }

        @media (max-width: 1024px) {
            .post__information {
                gap: 32px;
            }
        }
        @media (max-width: 992px) {
            .post__information {
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .post__information {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
        }

        .post__info-bottom {
            display: flex;
            align-items: center;
            gap: 64px;
        }

        @media (max-width: 1024px) {
            .post__info-bottom {
                gap: 32px;
            }
        }
        @media (max-width: 992px) {
            .post__info-bottom {
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .post__info-bottom {
                row-gap: 29px;
            }
        }

        .author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author__photo {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }

        .author__photo--empty {
            width: 0;
            height: 0;
        }

        .author__data {
        }

        .author__caption {
        }

        .author__fullname {
            font-size: 16px;
            font-weight: 600;
            line-height: 1.5;
            color: rgba(40, 40, 40, 1);
            text-decoration-line: underline;
            text-decoration-style: dotted;
            text-decoration-skip-ink: auto;
            text-decoration-color: #777;
            text-decoration-thickness: 9%;
            text-underline-offset: 21%;
            text-underline-position: from-font;
            cursor: pointer;
        }

        .author__fullname:hover {
            text-decoration-color: #282828;
        }

        .post__date,
        .post__reading-time {
            display: flex;
            flex-direction: column;
        }

        @media (max-width: 480px) {
            .post__date,
            .post__reading-time {
                flex-direction: row;
            }
        }
        @media (max-width: 480px) {
            .post__reading-time {
                gap: 2px;
            }
        }

        .post__date {
            position: relative;
        }

        @media (max-width: 480px) {
            .post__date {
                gap: 2px;
            }

            .post__date::after {
                content: '';
                width: 4px;
                height: 4px;
                background-color: #777;
                border-radius: 50%;
                position: absolute;
                top: 50%;
                right: -14px;
                transform: translateY(-50%);
            }
        }

    }

    .post-main-content__wrapper {
        display: flex;
        justify-content: space-between;
        gap: 64px;
    }

    @media (max-width: 1200px) {
        .post-main-content__wrapper {
            margin-left: 48px;
        }
    }
    @media (max-width: 992px) {
        .post-main-content__wrapper {
            flex-direction: column-reverse;
            gap: 24px;
        }
    }
    @media (max-width: 768px) {
        .post-main-content__wrapper {
            margin-left: 0;
        }
    }

    .post-main-content__column-left {
        flex: 0 1 794px;
        min-width: 0;
    }

    .post-main-content__column-right {
        flex: 0 1 320px;
    }

    .post__sidebar-inner {
        position: sticky;
        top: 124px;
    }

    @media (max-width: 992px) {
        .post-main-content__column-right {
            flex: none;
            width: 100%;
        }
    }

    .post-main-content {
        padding: 64px 0;
    }

    @media (max-width: 768px) {
        .post-main-content {
            padding: 24px 0;
        }
    }

    .post-main-content__text {
        b {
        font-weight: inherit;
        }

        h2:first-of-type {
            padding-top: unset;
        }

        p {
            font-size: 18px;
            font-weight: 400;
            line-height: 28px;
            color: #333;
            letter-spacing: 0.18px;
        }

        @media (max-width: 480px) {
            p {
                font-size: 16px;
                line-height: 24px;
            }
        }

        p:not(:last-child) {
            padding-bottom: 16px;
        }

        @media (max-width: 767px) {
            p:not(:last-child) {
                padding-bottom: 8px;
            }
        }

        h2, h2 b, h2 span {
            margin: unset;
            font-size: 32px;
            font-weight: 700!important;
            line-height: 40px;
            color: #282828;
            padding: 32px 0 24px;
        }

        @media (max-width: 480px) {
            h2, h2 b, h2 span {
                margin: unset;
                font-size: 22px;
                line-height: 30px;
                padding: 24px 0 8px;
            }
        }

        h3, h3 b, h3 span,
        h4, h4 span {
            margin: unset;
            color: #282828!important;
            font-size: 20px;
            font-style: normal;
            font-weight: 700!important;
            line-height: 30px;
            padding: 24px 0 8px;
        }

        @media (max-width: 480px) {
            h3, h3 b, h3 span,
            h4, h4 span {
                font-size: 18px;
                line-height: 28px;
                padding: 24px 0 8px;
            }
        }

        blockquote {
            margin: 0;
            margin: 40px 0;
            background-color: #F8F8F8;
            padding: 24px;
            border-left: 3px solid #409A65;
            color: #333;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px;
            letter-spacing: 0.18px;

            p:not(:last-child) {
                margin-bottom: 25px;
            }
        }

        @media (max-width: 480px) {
            blockquote {
                margin: 24px 0;
                padding: 16px 20px;
                font-size: 16px;
                line-height: 24px;
                letter-spacing: 0.16px;

                p:not(:last-child) {
                    margin-bottom: 16px;
                }
            }
        }

        table {
            max-width: 794px;
            table-layout: auto;
            border-collapse: separate;
            border-spacing: 0;
            display: table-cell;
            overflow-x: scroll;
            margin: 32px 0;
            border-radius: 12px;
            border: 1px solid #E9E9E9;

            @media (max-width: 1190px) {
                 max-width: 398px;
            }
        }

        th {
            color: var(--foreground-secondary, #777);
            font-family: Gilroy;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
            text-align: left;

        }

        th, td {
            padding: 16px;
            border-bottom: 1px solid #E9E9E9;
            border-right: 1px solid #E9E9E9;
        }

        td {
            color: var(--foreground-primary, #282828);
            font-family: Gilroy;
            font-size: 16px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px; 
            letter-spacing: 0.16px;
            vertical-align: top;
        }

        table thead {
            background-color: #FCFCFC;
        }

        table thead th {
            font-weight: 700;
        }

        tbody tr td:first-child {
            color: var(--foreground-primary, #282828);
            font-family: Gilroy;
            font-size: 16px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px;
        }

        tr td:last-child,
        tr th:last-child {
        border-right: none;
        }

        tbody tr:last-child td {
        border-bottom: none;
        }

        img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            object-fit: cover;
            display: block;
            margin: 16px 0;

            border-radius: 12px;
            border: 1px solid rgba(0, 0, 0, 0.03);
        }

        @media (max-width: 480px) {
            img {
                margin: 16px 0;
            }
        }

        ul li {
            list-style: disc;
        }

        ul li::marker {
            color: #409A65;
        }

        ol li {
            list-style: decimal;
        }

        ol li::marker {
            font-weight: bold;
        }

        ul li:not(:last-child),
        ol li:not(:last-child) {
            margin-bottom: 8px;
        }

        ul, ol {
            padding-left: 10px;
            margin: 0 0 20px 18px;
            list-style-position: inside;
        }

        ul li,
        ol li {
            color: #333;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 28px;
            letter-spacing: 0.18px;
        }

        @media (max-width: 480px) {
            ul li, ol li {
                font-size: 16px;
                line-height: 26px;
                letter-spacing: 0.16px;
            }

            ul li,
            ol li {
                font-size: 16px;
                line-height: 24px;
                letter-spacing: 0.16px;
            }
        }

        a {
            color: #006746;
            font-size: 18px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
            letter-spacing: 0.18px;
            text-decoration-line: underline;
            text-decoration-style: solid;
            text-decoration-skip-ink: none;
            text-decoration-color: #8BC49A;
            text-decoration-thickness: auto;
            text-underline-offset: auto;
            text-underline-position: from-font;
            transition: all 0.3s ease;
        }

        a:hover {
            text-decoration-color: #006746;
        }

        @media (max-width: 767px) {
            a {
                font-size: 16px;
                line-height: 24px;
            }
        }
    }


    .toc {
        padding-right: 4px;
        border-radius: 16px;
        border: 1px solid #DBDBDB;
        background: #FFF;
        margin: 0;
    }

    .toc:not(.collapsed) {
        padding-bottom: 16px;
    }

    @media (max-width: 480px) {
        .toc {
            /*padding: 12px 16px;*/
        }
    }

    /*@media (max-width: 767px) {*/
    /*    .toc:not(.collapsed) {*/
    /*        padding-bottom: unset;*/
    /*    }*/
    /*}*/

    .post-body__menu .toc__header {
        cursor: pointer;
        user-select: none;
        transition: all 0.3s ease;
        padding: 0;
        border: none;
    }

    .post-body__menu .toc__header-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        user-select: none;
        transition: all 0.3s ease;
    }

    .post-body__menu .toc__header-toggle:hover {
        background-color: #f9f9f9;
        border-radius: 8px;
        padding: 8px;
        margin: -8px;
    }

    .post-body__menu .toc__header-chevron {
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    @media (max-width: 480px) {
        .post-body__menu .toc__header {
            text-align: center;
        }
    }

    .toc .toc__content a {
        color: #333;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        letter-spacing: 0.14px;
        border: none;
        padding: 0;

        &:hover {
            text-decoration: underline;
        }
    }

    .toc .toc__content a:not(:last-child) {
        margin-bottom: 12px;
    }

    .toc .toc__content a:before {
        content: none;
    }

    .toc .toc__content a.active {
        color: #006746;
        text-decoration-color: #006746;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        border: none;
    }

    .post .toc .toc__header-title {
        color: #282828;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        text-transform: inherit;
        text-align: left;
    }

    /*@media (max-width: 480px) {*/
    /*    .post .toc .toc__header-title {*/
    /*        font-size: 0;*/
    /*        line-height: 1;*/
    /*        position: relative;*/
    /*    }*/

    /*    .toc__header-title::after {*/
    /*        content: attr(data-text);*/
    /*        font-size: 16px;*/
    /*        line-height: 26px;*/
    /*    }*/
    /*}*/

    .toc .toc__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;

        position: relative;
        padding: 12px 12px 12px 16px;
        margin-bottom: 16px;

        &:after {
            content: "";
            position: absolute;
            display: block;
            bottom: 0;
            left: 0;
            width: 101%;
            border-bottom: 1px solid #E9E9E9;
        }
    }


    .toc.collapsed .toc__header {
        margin-bottom: unset;
        &:after {
            display: none;
        }
    }

    .post .toc .toc__content {
        margin-top: 0;
    }

    .post-body__menu .toc__header-icon {
        transition: transform 0.3s ease;
    }

    .post-body__menu .toc__header-icon svg {
        transform: rotate(-180deg);
        transition: transform 0.3s ease;
    }

    .post-body__menu .toc:not(.collapsed) .toc__header-icon svg {
        transform: rotate(0deg);
    }

    .post-body__menu .toc__content {
        padding: 0 5px 0px 16px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .post-body__menu .toc:not(.collapsed) .toc__content {
        opacity: 1;
    }


    .post-body__menu .toc__content::-webkit-scrollbar {
        width: 6px;
    }

    .post-body__menu .toc__content::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }

    .post-body__menu .toc__content::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 3px;
    }

    .post-body__menu .toc__content::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 767px) {
        .post-body__menu .toc__header-toggle {
            padding: 12px 0;
        }

        .post-body__menu .toc__header-toggle:hover {
            padding: 12px 8px;
            margin: 0 -8px;
        }

        .post-body__menu .toc__header-title {
            font-size: 18px;
        }

        .post-body__menu .toc__header-chevron {
            width: 12px;
            height: 7px;
        }

        .post-body__menu .toc__header-icon svg {
            width: 12px;
            height: 7px;
        }
    }

    @media (max-width: 480px) {
        .post-body__menu .toc__header-title {
            width: 100%;
            display: inline-block;
        }
    }

    .promo-card--desktop-only { display: none; }
    .promo-card--mobile-only  { display: block; }

    @media (min-width: 991px) {
        .promo-card--desktop-only { display: block; }
        .promo-card--mobile-only  { display: none;}
    }

    .promo-card {
        margin-top: 24px;
        padding: 20px 20px 0 20px;
        border-radius: 20px;
        background: var(--icon-green-main, #006746);
        color: var(--General-White, #FFF);

        .promo-card__wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            align-self: stretch;
        }

        .promo-card__rating {
            align-self: flex-start;
            display: flex;
            gap: 10px;
            align-items: center;
            font-size: 14px;
            font-style: normal;
            font-weight: 500;
            line-height: 20px;
            letter-spacing: 0.14px;
        }

        .promo-card__title {
            margin: unset;
            margin-bottom: 8px;
            color: inherit;
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 28px;
        }

        .promo-card__desc {
            font-size: 15px;
            font-style: normal;
            font-weight: 400;
            line-height: 22px;
            letter-spacing: 0.15px;
        }

        .promo-card__button {
            width: 100%;
        }

        img {
            max-height: 150px;
        }

        @media (max-width: 991px) {
            margin-top: unset;
            margin-bottom: 32px;
        }
    }


    .author-article {
        padding: 0;
        border-bottom: 1px solid #D5D9D9;
        margin-bottom: 48px;
        padding-top: 40px;
        padding-bottom: 24px;
    }

    @media (max-width: 480px) {
        .author-article {
            border: none;
            margin-bottom: 32px;
            padding-top: 32px;
            padding-bottom: 0;
        }
    }

    .author-article__share-article {
        display: flex;
        align-items: center;
        gap: 24px;
        margin-bottom: 48px;
    }

    @media (max-width: 480px) {
        .author-article__share-article {
            margin-bottom: 32px;
            align-items: flex-start;
            flex-direction: column;
            gap: 16px;
        }
    }

    .author-article__soc-networks {
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .author-article__link {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        border: 1px solid rgba(217, 217, 217, 1);

        &:hover {
            svg path{
                fill: #282828;
            }

            outline: 2px solid #282828;
        }
    }

    .author-article__share-article-title {
        color: #333;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }

    .author-article__author-info {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 28px;
    }

    @media (max-width: 480px) {
        .author-article__author-info {
            margin-bottom: 24px;
        }
    }

    .author-article__author-avatar img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
    }

    .author-article__author-avatar-placeholder {
        width: 80px;
        height: 80px;
        aspect-ratio: 1/1;
        border-radius: 200.7px;
        background: #000;
    }

    @media (max-width: 480px) {
        .author-article__author-avatar img,
        .author-article__author-avatar-placeholder {
            width: 56px;
            height: 56px;
        }
    }

    .author-article__author-title {
        color: #777;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        margin-bottom: 4px;
    }

    .author-article__author-full-name-link {
        display: flex;
        align-items: center;
        gap: 4px;
        transition: all 0.3s ease;
    }

    .author-article__author-full-name-link:hover {
        text-decoration: underline;
        text-decoration-color: #777777;
        text-underline-offset: 4px;
    }

    .author-article__author-full-name-text {
        color: #333;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
    }

    .author-article__author-full-name-social {
        width: 16px;
        height: 16px;
        border-radius: 3px;
        background: #007EBB;
        padding: 3px;
        display: flex;
        align-items: center;
    }

    .author-article__profession {
        color: #777;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
    }

    .author-article__text {
        color: #333;
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 28px;
        letter-spacing: 0.18px;
    }

    @media (max-width: 480px) {
        .author-article__text {
            font-size: 16px;
            line-height: 24px;
        }
    }

    .post__related-posts {
        background-color: #F5F5F5;
        padding: 80px 0;
        margin: 0;
    }

    @media (max-width: 480px) {
        .post__related-posts {
            padding: 40px 0;
        }
    }

    .post__quote {
        background-color: #EDF8F1;
        padding: 28px;
        border-radius: 16px;
        margin: 16px 0 24px;

        h3 {
            padding: unset;
        }
    }

    @media (max-width: 480px) {
        .post__quote {
            padding: 20px;
            margin: 16px 0;
        }
    }

    .post__quote h4,
    .post__quote h3 {
        color: #282828;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 32px;
        margin: 0;
        margin-bottom: 8px;
    }

    @media (max-width: 480px) {
        .post__quote h4,
        .post__quote h3 {
            font-size: 18px;
            line-height: 28px;
        }
    }

    .post__quote p,
    .post__quote p span {
        color: #282828;
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 28px;
        letter-spacing: 0.18px;
    }

    @media (max-width: 480px) {
        .post__quote p,
        .post__quote p span {
            color: #333;
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.16px;
        }
    }

    .post__quote a.button {
        display: inline-flex;
        align-items: center;
        height: 48px;
        padding: 16px 20px;
        border-radius: 16px;
        background-color: #409A65;
        color: #FFF!important;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        border: none;
        margin-top: 16px;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .post__quote a.button:hover {
        opacity: 0.8;
    }

    @media (max-width: 480px) {
        .post__quote a.button {
            font-size: 16px;
            line-height: 24px;
            height: 40px;
        }
    }

    .latest-posts__header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 48px;
    }

    @media (max-width: 480px) {
        .latest-posts__header {
            margin-bottom: 32px;
        }
    }

    .latest-posts__title {
        color: #282828;
        font-size: 44px;
        font-style: normal;
        font-weight: 700;
        line-height: 52px;
        letter-spacing: -0.22px;
    }

    @media (max-width: 768px) {
        .latest-posts__title {
            font-size: 36px;
            line-height: 40px;
            letter-spacing: -0.18px;
        }
    }
    @media (max-width: 540px) {
        .latest-posts__title {
            font-size: 28px;
            line-height: 32px;
            letter-spacing: -0.14px;
        }
    }

    .latest-posts__list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    @media (max-width: 768px) {
        .latest-posts__list {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 540px) {
        .latest-posts__list {
            grid-template-columns: 1fr;
        }
    }

    .latest-posts__btn-link {
        border-radius: 16px;
        background: rgba(0, 0, 0, 0.05);
        display: flex;
        max-width: 162px;
        height: 48px;
        padding: 16px;
        justify-content: center;
        align-items: center;
        color: #282828;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        transition: opacity 0.3s ease;
    }

    @media (max-width: 480px) {
        .latest-posts__btn-link {
            max-width: 100%;
        }
    }

    .latest-posts__btn-link:hover {
        opacity: 0.8;
    }

    .latest-posts {
        position: relative;
    }


    .latest-post-preview,
    .latest-posts__item {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .latest-posts__item {
        border-radius: 24px;
        background-color: #fff;
    }

    .latest-post-preview__image {
        width: 100%;
        max-height: 211px;
        height: 100%;
        display: block;
        object-fit: cover;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
        transition: transform 0.3s ease;
    }

    .latest-posts__item:hover .latest-post-preview__image {
        transform: scale(1.05);
    }

    @media (max-width: 480px) {
        .latest-post-preview__image {
            height: 250px;
        }
    }

    .latest-post-preview__image-link {
        display: block;
        overflow: hidden;
        border-top-left-radius: 24px;
        border-top-right-radius: 24px;
    }

    .latest-post-preview__category {
        color: #777;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.84px;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .latest-post-preview__title {
        color: #333;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 28px;
        margin-bottom: 20px;
        transition: all 0.3s ease;
    }

    .latest-posts__item:hover .latest-post-preview__title {
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: none;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .latest-post-preview__inner {
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .latest-post-preview__date {
        color: #333;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.16px;
        margin-top: auto;
    }

    @media (max-width: 480px) {
        .latest-posts__btn--desktop {
            display: none;
        }
    }

    .latest-posts__btn--mobile {
        display: none;
    }

    @media (max-width: 480px) {
        .latest-posts__btn--mobile {
            display: block;
            margin: 42px auto 0;
        }
    }

    .author {
        position: relative;
    }

    .author__desc-wrapper {
        width: 337px;
        max-width: calc(100vw - 30px);
        word-wrap: break-word;
        padding: 16px;
        border-radius: 12px;
        background: #FFF;
        box-shadow: 1px 8px 24px -8px rgba(0, 0, 0, 0.08);
        position: absolute;
        top: 0;
        left: calc(100% + 10px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.25s ease;
        z-index: 999;
    }

    @media (max-width: 540px) {
        .author__desc-wrapper {
            width: 260px;
        }
    }
    @media (max-width: 480px) {
        .author__desc-wrapper {
            left: 0;
            top: 100%;
            width: 100vh;
            margin-top: 10px;
            padding: 20px;
        }
    }

    .author__desc-wrapper.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .author__close {
        position: absolute;
        top: 15px;
        right: 15px;
        border: none;
        background: none;
        font-size: 28px;
        cursor: pointer;
        line-height: 1;
        color: #A6A6A6;
        transition: color 0.3s ease;
    }

    @media (max-width: 480px) {
        .author__close {
            top: 10px;
            right: 10px;
        }
    }

    .author__close:hover {
        color: #282828;
    }

    .author__desc-title {
        color: #282828;
        font-size: 14px;
        font-style: normal;
        font-weight: 600;
        line-height: 20px;
        letter-spacing: 0.14px;
        margin-bottom: 8px;
    }

    .author__desc {
        color: #282828;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        letter-spacing: 0.14px;
        opacity: 0.8;
    }

    @media (max-width: 480px) {
        .author__desc {
            font-size: 16px;
            line-height: 24px;
            letter-spacing: 0.16px;
        }
    }

    .scroll-to-top {
        position: fixed;
        top: 0;
        left: 0;
        width: 48px;
        height: 100vh;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        cursor: pointer;
        opacity: 0;
        pointer-events: none;
        z-index: 9999;
        transition: background 0.3s ease;
    }

    @media (max-width: 768px) {
        .scroll-to-top {
           display: none;
        }
    }

    .scroll-to-top svg {
        margin-bottom: 24px;
    }

    .scroll-to-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    .scroll-to-top:hover {
        background: rgba(0, 0, 0, 0.04);
    }
}

    body.author-popup-active::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
}

.post-divider {
    margin-top: 32px;
    margin-bottom: 16px;
    border-bottom: 1px solid #D9D9D9;
}

/* ============================================================
   FAQ Post
   ============================================================ */

.faq--post {
    padding: 40px 0 24px 0;

    h3 {
        margin: 0;
    }

    & .faq__title {
        margin-bottom: 24px;
        color: var(--Text-Primary, #282828);
        font-feature-settings: 'liga' off;
        font-family: Gilroy;
        line-height: 52px;
        letter-spacing: -0.48px;
        text-align: start;
        font-size: 44px;
        font-style: normal;
        font-weight: 700;
        line-height: 52px;
    }

    & .faq__list {
        display: flex;
        flex-direction: column;
    }

    & .faq__item {
        padding-bottom: 28px;
        border-top: 1px solid #E5E5E5;

        &:last-child {
            border-bottom: 1px solid #E5E5E5;
        }
    }

    & .faq__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding-top: 32px;
        cursor: pointer;
        user-select: none;
    }

    & .faq__question {
        margin-bottom: 4px;
        color: var(--Text-Primary, #282828);
        font-family: Gilroy;
        font-size: 20px;
        font-weight: 600;
        line-height: 28px;
        flex: 1;
    }

    & .faq__icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;

        &::before,
        &::after {
            content: '';
            position: absolute;
            background-color: #777777;
            border-radius: 2px;
            transition: transform 0.417s cubic-bezier(0.35, 0, 0.25, 1), background-color 0.2s ease;
            will-change: transform;
        }

        &::before {
            width: 16px;
            height: 2px;
        }

        &::after {
            width: 2px;
            height: 16px;
        }
    }

    & .faq__header:hover .faq__icon::before,
    & .faq__header:hover .faq__icon::after {
        background-color: #282828;
    }

    & .faq__item--open .faq__icon {
        &::before {
            transform: rotate(180deg);
        }

        &::after {
            transform: rotate(90deg);
        }
    }

    & .faq__body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    & .faq__answer {
        max-width: 560px;
        padding-top: 8px;
        color: var(--Text-Primary, #282828);
        font-feature-settings: 'liga' off;
        font-family: Gilroy;
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: 0.16px;
        opacity: 0;
        transition: opacity 0.25s ease 0.1s;

    }

    & .faq__answer p:not(:last-child){
        margin-bottom: 12px;
    }
    
    & .faq__answer ul {
        margin: 8px 0 8px 24px;
    }

    & .faq__answer li {
        list-style: disc;
    }

    & .faq__item--open .faq__answer {
        opacity: 1;
    }

    @media (max-width: 991px) {
        padding: 48px 0;

        & .faq__title {
            font-size: 32px;
            line-height: 36px;
            letter-spacing: -0.5px;
            margin-bottom: 32px;
        }

        & .faq__question {
            font-size: 18px;
            line-height: 26px;
        }
    }

    @media (max-width: 767px) {
        & .faq__item {
            padding-bottom: 20px;
        }

        & .faq__question {
            font-size: 16px;
            line-height: 24px;
        }

        & .faq__header {
            padding-top: 20px;
        }
    }
}
