/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/


@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/


}
/*************** AUTO LOAN CALCULATOR SHORTCODE ***************/
.ch-auto-loan {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 64px 20px;
    background: #030303;
    color: #ffffff;
}

.ch-auto-loan::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.82));
    pointer-events: none;
}

.ch-auto-loan__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
    gap: 48px;
    align-items: center;
    max-width: 1380px;
    margin: 0 auto;
}

.ch-auto-loan__form-panel {
    max-width: 680px;
}

.ch-auto-loan__title {
    margin: 0 0 22px;
    color: #ffffff;
    font-size: clamp(28px, 2.4vw, 40px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

.ch-auto-loan__subtitle {
    margin: 0 0 32px;
    color: #a7a7ad;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.ch-auto-loan__form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}

.ch-auto-loan__field label {
    display: block;
    margin: 0 0 8px;
    color: #8f969f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ch-auto-loan__field input,
.ch-auto-loan__field select {
    width: 100%;
    height: 52px;
    margin: 0;
    padding: 0 22px;
    border: 1px solid #3d3d40;
    border-radius: 999px;
    background-color: #202020;
    box-shadow: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    outline: none;
    transition: border-color .2s ease, background-color .2s ease;
}

.ch-auto-loan__field select {
    appearance: auto;
    cursor: pointer;
}


.ch-auto-loan__field input:focus,
.ch-auto-loan__field input:active,
.ch-auto-loan__field select:focus,
.ch-auto-loan__field select:active {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.ch-auto-loan__field input:-webkit-autofill,
.ch-auto-loan__field input:-webkit-autofill:hover,
.ch-auto-loan__field input:-webkit-autofill:focus,
.ch-auto-loan__field input:-webkit-autofill:active {
    -webkit-text-fill-color: #ffffff !important;
    box-shadow: 0 0 0 1000px #242424 inset !important;
}
.ch-auto-loan__field input::placeholder {
    color: #62686f;
    opacity: 1;
}

.ch-auto-loan__field input:focus,
.ch-auto-loan__field select:focus {
    border-color: #e91d4f;
    background-color: #242424;
}

.ch-auto-loan__actions {
    grid-column: 1 / -1;
    padding-top: 14px;
}

.ch-auto-loan__actions button {
    min-width: 220px;
    height: 50px;
    margin: 0;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: #ec174a;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color .2s ease, transform .2s ease;
}

.ch-auto-loan__actions button:hover,
.ch-auto-loan__actions button:focus {
    background: #d81241;
    transform: translateY(-1px);
}

.ch-auto-loan__result {
    position: relative;
    overflow: hidden;
    min-height: 430px;
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .32);
    color: #101014;
}

.ch-auto-loan__result::after {
    content: "";
    position: absolute;
    top: -44px;
    right: -28px;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: #fbedf1;
}

.ch-auto-loan__result-head,
.ch-auto-loan__monthly-label,
.ch-auto-loan__monthly,
.ch-auto-loan__summary,
.ch-auto-loan__note {
    position: relative;
    z-index: 1;
}

.ch-auto-loan__result-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.ch-auto-loan__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid #ec174a;
    border-radius: 5px;
    color: #ec174a;
    flex: 0 0 auto;
}

.ch-auto-loan__icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.ch-auto-loan__result h3 {
    margin: 0;
    color: #111217;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ch-auto-loan__monthly-label {
    margin-bottom: 10px;
    color: #626978;
    font-size: 15px;
    line-height: 1.4;
}

.ch-auto-loan__monthly {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
    color: #ec174a;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
}

.ch-auto-loan__monthly small {
    font-size: 15px;
    font-weight: 900;
}

.ch-auto-loan__summary {
    margin: 0 0 32px;
}

.ch-auto-loan__summary div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 17px 0;
    border-top: 1px solid #eeeeee;
}

.ch-auto-loan__summary div:last-child {
    border-bottom: 1px solid #eeeeee;
}

.ch-auto-loan__summary dt,
.ch-auto-loan__summary dd {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
}

.ch-auto-loan__summary dt {
    color: #626978;
    font-weight: 500;
}

.ch-auto-loan__summary dd {
    color: #101014;
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
}

.ch-auto-loan__note {
    margin: 0;
    padding: 28px 30px;
    border-radius: 15px;
    background: #f3f4f6;
    color: #616777;
    font-size: 14px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.55;
}

@media only screen and (max-width: 1024px) {
    .ch-auto-loan {
        padding: 54px 20px;
    }

    .ch-auto-loan__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        max-width: 680px;
    }

    .ch-auto-loan__form-panel {
        max-width: none;
    }
}

@media only screen and (max-width: 640px) {
    .ch-auto-loan {
        padding: 40px 16px;
    }

    .ch-auto-loan__subtitle {
        margin-bottom: 24px;
        font-size: 15px;
    }

    .ch-auto-loan__form {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .ch-auto-loan__field input,
    .ch-auto-loan__field select {
        height: 50px;
        padding: 0 22px;
        font-size: 15px;
    }

    .ch-auto-loan__actions button {
        width: 100%;
        min-width: 0;
        height: 50px;
        font-size: 15px;
    }

    .ch-auto-loan__result {
        min-height: 0;
        padding: 26px 20px;
        border-radius: 20px;
    }

    .ch-auto-loan__result-head {
        margin-bottom: 24px;
    }

    .ch-auto-loan__result h3 {
        font-size: 14px;
    }

    .ch-auto-loan__monthly {
        margin-bottom: 24px;
    }

    .ch-auto-loan__summary {
        margin-bottom: 24px;
    }

    .ch-auto-loan__summary div {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .ch-auto-loan__summary dt,
    .ch-auto-loan__summary dd {
        font-size: 15px;
    }

    .ch-auto-loan__summary dd {
        text-align: left;
    }

    .ch-auto-loan__note {
        padding: 18px;
        font-size: 12px;
    }
}


/*************** HOME CAR CTA CARDS SHORTCODE ***************/
.ch-car-cta {
    width: 100%;
    padding: 34px 0;
}

.ch-car-cta__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
}

.ch-car-cta__card {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 280px;
    overflow: hidden;
    border-radius: 8px;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .22)), var(--ch-card-bg);
    background-position: center;
    background-size: cover;
    color: #fff;
}

.ch-car-cta__content {
    position: relative;
    z-index: 1;
    max-width: 360px;
    padding: 34px;
}

.ch-car-cta__eyebrow {
    margin: 0 0 8px;
    color: #d6b15e;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ch-car-cta__title {
    margin: 0 0 20px;
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: 0;
}

.ch-car-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border: 0;
    border-radius: 4px;
    background: #d8ad4f;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.ch-car-cta__button:hover,
.ch-car-cta__button:focus {
    background: #fff;
    color: #111;
    transform: translateY(-1px);
}

.ch-car-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ch-car-popup.is-active {
    display: flex;
}

.ch-car-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .72);
}

.ch-car-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: 8px;
    background: #fff;
    padding: 34px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.ch-car-popup__close {
    position: absolute;
    top: 8px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    min-height: 28px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.ch-car-popup__close:hover,
.ch-car-popup__close:focus {
    background: #111;
    color: #fff;
    opacity: .9;
}

.ch-car-popup__form {
    padding-top: 10px;
}

html.ch-car-popup-open,
html.ch-car-popup-open body {
    overflow: hidden;
}

@media only screen and (max-width: 849px) {
    .ch-car-cta__grid {
        grid-template-columns: 1fr;
    }

    .ch-car-cta__card {
        min-height: 245px;
    }
}

@media only screen and (max-width: 549px) {
    .ch-car-cta {
        padding: 20px 0;
    }

    .ch-car-cta__grid {
        gap: 14px;
    }

    .ch-car-cta__content {
        max-width: 300px;
        padding: 24px;
    }

    .ch-car-cta__title {
        font-size: 24px;
    }

    .ch-car-popup__dialog {
        padding: 28px 18px 22px;
    }
}

/*************** NEWS CATEGORY ARCHIVE ***************/
.ch-news-archive {
    --ch-news-text: #111318;
    --ch-news-muted: #5f6672;
    --ch-news-border: #e8eaee;
    --ch-news-soft: #f5f6f8;
    --ch-news-card: #ffffff;
    --ch-news-accent: #d71920;
    background: #f9fafb;
    color: var(--ch-news-text);
}

.ch-news-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.ch-news-hero {
    padding: 58px 0 28px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.ch-news-hero .ch-news-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
}

.ch-news-eyebrow {
    margin: 0 0 12px;
    color: var(--ch-news-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ch-news-hero__title {
    margin: 0;
    color: var(--ch-news-text);
    font-size: clamp(36px, 4vw, 64px);
    font-weight: 850;
    line-height: 1.02;
    letter-spacing: 0;
}

.ch-news-hero__description {
    max-width: 690px;
    margin: 18px 0 0;
    color: var(--ch-news-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.65;
}

.ch-news-hero__description p {
    margin: 0;
}

.ch-news-hero__meta {
    display: flex;
    min-width: 132px;
    min-height: 98px;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--ch-news-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(17, 19, 24, .06);
    padding: 18px 22px;
    text-align: center;
}

.ch-news-hero__meta span {
    color: var(--ch-news-text);
    font-size: 36px;
    font-weight: 850;
    line-height: 1;
}

.ch-news-hero__meta small {
    margin-top: 7px;
    color: var(--ch-news-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.ch-news-content {
    padding: 26px 0 70px;
}

.ch-news-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .9fr);
    overflow: hidden;
    border: 1px solid var(--ch-news-border);
    border-radius: 8px;
    background: var(--ch-news-card);
    box-shadow: 0 18px 55px rgba(17, 19, 24, .08);
}

.ch-news-featured__media,
.ch-news-card__media {
    display: block;
    overflow: hidden;
    background: #dfe3e8;
}

.ch-news-featured__media {
    min-height: 420px;
}

.ch-news-featured__image,
.ch-news-card__image,
.ch-news-image-fallback {
    display: block;
    width: 100%;
    height: 100%;
}

.ch-news-featured__image,
.ch-news-card__image {
    object-fit: cover;
    transition: transform .55s ease;
}

.ch-news-featured:hover .ch-news-featured__image,
.ch-news-card:hover .ch-news-card__image {
    transform: scale(1.055);
}

.ch-news-image-fallback {
    min-height: inherit;
    background:
        linear-gradient(135deg, rgba(215, 25, 32, .86), rgba(17, 19, 24, .94)),
        linear-gradient(45deg, #bcc4ce, #f4f5f7);
}

.ch-news-featured__body {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: center;
    padding: 38px;
}

.ch-news-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 12px;
    margin-bottom: 14px;
    color: var(--ch-news-muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ch-news-card__meta span + span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 10px 1px 0;
    border-radius: 50%;
    background: var(--ch-news-accent);
}

.ch-news-featured__title,
.ch-news-card__title {
    margin: 0;
    color: var(--ch-news-text);
    font-weight: 850;
    line-height: 1.18;
    letter-spacing: 0;
}

.ch-news-featured__title {
    font-size: clamp(28px, 3vw, 44px);
}

.ch-news-card__title {
    font-size: 22px;
}

.ch-news-featured__title a,
.ch-news-card__title a {
    color: inherit;
    text-decoration: none;
}

.ch-news-featured__title a:hover,
.ch-news-card__title a:hover {
    color: var(--ch-news-accent);
}

.ch-news-featured__excerpt,
.ch-news-card__excerpt {
    color: var(--ch-news-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.62;
}

.ch-news-featured__excerpt {
    margin-top: 18px;
}

.ch-news-featured__excerpt p,
.ch-news-card__excerpt p {
    margin: 0;
}

.ch-news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 26px;
    border-bottom: 2px solid var(--ch-news-accent);
    color: var(--ch-news-text);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .04em;
    line-height: 1.7;
    text-decoration: none;
    text-transform: uppercase;
}

.ch-news-readmore:hover {
    color: var(--ch-news-accent);
}

.ch-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.ch-news-card {
    overflow: hidden;
    border: 1px solid var(--ch-news-border);
    border-radius: 8px;
    background: var(--ch-news-card);
    box-shadow: 0 12px 35px rgba(17, 19, 24, .06);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.ch-news-card:hover {
    border-color: rgba(215, 25, 32, .22);
    box-shadow: 0 20px 48px rgba(17, 19, 24, .11);
    transform: translateY(-3px);
}

.ch-news-card__media {
    aspect-ratio: 16 / 10;
}

.ch-news-card__body {
    padding: 22px 22px 24px;
}

.ch-news-card__excerpt {
    margin-top: 12px;
}

.ch-news-archive .navigation.pagination {
    margin: 38px 0 0;
    text-align: center;
}

.ch-news-archive .nav-links {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.ch-news-archive .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--ch-news-border);
    border-radius: 8px;
    background: #fff;
    color: var(--ch-news-text);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.ch-news-archive .page-numbers.current,
.ch-news-archive .page-numbers:hover {
    border-color: var(--ch-news-accent);
    background: var(--ch-news-accent);
    color: #fff;
}

.ch-news-empty {
    border: 1px solid var(--ch-news-border);
    border-radius: 8px;
    background: #fff;
    padding: 48px 28px;
    text-align: center;
}

.ch-news-empty h2 {
    margin: 0 0 10px;
    color: var(--ch-news-text);
    font-size: 30px;
    letter-spacing: 0;
}

.ch-news-empty p {
    margin: 0;
    color: var(--ch-news-muted);
}

@media only screen and (max-width: 1024px) {
    .ch-news-featured {
        grid-template-columns: 1fr;
    }

    .ch-news-featured__media,
    .ch-news-featured__body {
        min-height: 0;
    }

    .ch-news-featured__media {
        aspect-ratio: 16 / 9;
    }

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

@media only screen and (max-width: 640px) {
    .ch-news-shell {
        width: min(100% - 28px, 1180px);
    }

    .ch-news-hero {
        padding: 38px 0 22px;
    }

    .ch-news-hero .ch-news-shell {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .ch-news-hero__meta {
        min-width: 0;
        min-height: 0;
        width: 100%;
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
        gap: 8px;
        padding: 15px 18px;
        text-align: left;
    }

    .ch-news-hero__meta span {
        font-size: 28px;
    }

    .ch-news-featured__body,
    .ch-news-card__body {
        padding: 22px;
    }

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

    .ch-news-card__title {
        font-size: 20px;
    }
}

/*************** NEWS CATEGORY TARGET LAYOUT ***************/
.ch-news-archive {
    --ch-news-text: #191c1d;
    --ch-news-muted: #575e70;
    --ch-news-border: #e1e3e4;
    --ch-news-soft: #edeeef;
    --ch-news-card: #ffffff;
    --ch-news-accent: #b80035;
    --ch-news-accent-soft: #e11d48;
    background: #f8f9fa;
    font-family: Inter, Arial, sans-serif;
}

body.category,
body.category #wrapper,
body.category #main {
    background: #f8f9fa;
}

.ch-news-shell {
    width: min(1280px, calc(100% - 64px));
}

.ch-news-hero {
    padding: 70px 0 44px;
    background: #f8f9fa;
}

.ch-news-hero .ch-news-shell {
    display: block;
}

.ch-news-eyebrow {
    margin-bottom: 16px;
    color: var(--ch-news-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .14em;
}

.ch-news-hero__title {
    max-width: none;
    font-size: clamp(42px, 4.2vw, 64px);
    font-weight: 800;
    line-height: 1.05;
    white-space: nowrap;
}

.ch-news-hero__description {
    max-width: 680px;
    margin-top: 22px;
    color: var(--ch-news-muted);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7;
}

.ch-news-hero__meta {
    display: none;
}

.ch-news-content {
    padding: 0 0 80px;
}

.ch-news-bento {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 1fr);
    gap: 24px;
    align-items: stretch;
    margin-bottom: 48px;
}

.ch-news-featured,
.ch-news-card,
.ch-news-quote,
.ch-news-subscribe {
    overflow: hidden;
    border: 0;
    border-radius: 12px;
    background: var(--ch-news-card);
    box-shadow: 0 2px 12px rgba(17, 19, 24, .08);
}

.ch-news-featured {
    display: block;
    height: 100%;
}

.ch-news-featured:hover,
.ch-news-card:hover {
    box-shadow: 0 18px 34px rgba(17, 19, 24, .12);
    transform: none;
}

.ch-news-featured__media {
    min-height: 0;
    aspect-ratio: 16 / 9;
}

.ch-news-featured__body {
    min-height: 0;
    padding: 32px;
}

.ch-news-card__meta {
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
    color: var(--ch-news-muted);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.ch-news-card__meta span + span::before {
    display: none;
}

.ch-news-badge {
    border-radius: 999px;
    background: var(--ch-news-accent-soft);
    color: #ffffff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.ch-news-featured__title {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.18;
}

.ch-news-featured__excerpt {
    display: -webkit-box;
    margin-top: 16px;
    overflow: hidden;
    color: var(--ch-news-muted);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ch-news-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 24px;
}

.ch-news-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ch-news-text);
    font-size: 14px;
    font-weight: 700;
}

.ch-news-author::before {
    content: "";
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--ch-news-soft);
    box-shadow: inset 0 0 0 12px #dfe2e6;
}

.ch-news-readmore,
.ch-news-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin: 0;
    border: 0;
    color: var(--ch-news-accent);
    font-family: Inter, Arial, sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.4;
    text-decoration: none;
    text-transform: none;
}

.ch-news-readmore span,
.ch-news-card__link span {
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
}

.ch-news-side {
    display: grid;
    grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    height: 100%;
}

.ch-news-archive__cta {
    min-height: 0;
}

.ch-news-single__cta.ch-news-archive__cta {
    display: flex;
    min-height: 0;
    flex-direction: column;
    justify-content: center;
}

.ch-news-single__cta.ch-news-archive__cta a {
    color: #d71920;
}

.ch-news-quote,
.ch-news-subscribe {
    min-height: 0;
    padding: 32px;
}

.ch-news-quote {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #e7e8e9;
}

.ch-news-quote h2,
.ch-news-subscribe h2 {
    margin: 0;
    color: var(--ch-news-text);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
}

.ch-news-quote h2 {
    font-style: italic;
}

.ch-news-quote p,
.ch-news-subscribe p {
    margin: 16px 0 0;
    color: var(--ch-news-muted);
    font-size: 15px;
    line-height: 1.6;
}

.ch-news-subscribe {
    position: relative;
    background: var(--ch-news-accent-soft);
    color: #ffffff;
}

.ch-news-subscribe__inner {
    position: relative;
    z-index: 1;
}

.ch-news-subscribe h2,
.ch-news-subscribe p {
    color: #ffffff;
}

.ch-news-subscribe__form {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.ch-news-subscribe__form input {
    min-width: 0;
    flex: 1;
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ch-news-text);
    padding: 0 14px;
    font-size: 14px;
}

.ch-news-subscribe__form button {
    height: 42px;
    border: 0;
    border-radius: 8px;
    background: var(--ch-news-text);
    color: #ffffff;
    padding: 0 18px;
    font-weight: 800;
}

.ch-news-subscribe__icon {
    position: absolute;
    right: -10px;
    bottom: -48px;
    color: rgba(255, 255, 255, .14);
    font-size: 160px;
    font-weight: 800;
    line-height: 1;
}

.ch-news-grid {
    gap: 24px;
    margin-top: 0;
}

.ch-news-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
}

.ch-news-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .92);
    color: var(--ch-news-accent);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(17, 19, 24, .12);
}

.ch-news-card__body {
    padding: 24px;
}

.ch-news-card__title {
    display: -webkit-box;
    overflow: hidden;
    font-size: 24px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ch-news-card__excerpt {
    display: -webkit-box;
    margin: 12px 0 22px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/*************** HOME NEWS SLIDER ***************/
.ch-home-news-slider {
    --ch-news-text: #191c1d;
    --ch-news-muted: #575e70;
    --ch-news-border: #e1e3e4;
    --ch-news-soft: #edeeef;
    --ch-news-card: #ffffff;
    --ch-news-accent: #b80035;
    --ch-news-accent-soft: #e11d48;
    padding: 16px 0 36px;
}

.ch-home-news-slider__inner {
    width: min(1380px, calc(100% - 64px));
    margin: 0 auto;
}

.ch-home-news-slider__head {
    margin-bottom: 20px;
    text-align: center;
}

.ch-home-news-slider__title {
    margin: 0;
}

.ch-home-news-slider .row-slider {
    margin-bottom: 0;
}

.ch-home-news-slider .col,
.ch-home-news-slider .col-inner {
    display: flex;
}

.ch-home-news-slider .ch-news-card {
    width: 100%;
    height: auto;
}

.ch-home-news-slider .ch-news-card__body {
    padding: 24px;
}

.ch-home-news-slider .ch-news-card__title {
    margin: 0;
    color: var(--ch-news-text);
    font-size: 24px;
    line-height: 1.25;
}

.ch-home-news-slider .ch-news-card__excerpt {
    margin: 12px 0 22px;
    color: var(--ch-news-muted);
}

.ch-home-news-slider .ch-news-card__excerpt p {
    margin: 0;
}

.ch-home-news-slider .ch-news-card__link {
    margin: 0;
}

.ch-home-news-slider .flickity-page-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 18px;
}

.ch-home-news-slider .flickity-page-dots .dot {
    width: 9px;
    height: 9px;
    margin: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .2);
    opacity: 1;
}

.ch-home-news-slider .flickity-page-dots .dot.is-selected {
    background: #111318;
}

@media only screen and (max-width: 1024px) {
    .ch-news-shell {
        width: min(100% - 40px, 1280px);
    }

    .ch-home-news-slider__inner {
        width: min(100% - 40px, 1380px);
    }

    .ch-news-bento {
        grid-template-columns: 1fr;
    }

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

@media only screen and (max-width: 640px) {
    .ch-news-shell {
        width: min(100% - 28px, 1280px);
    }

    .ch-home-news-slider__inner {
        width: min(100% - 28px, 1380px);
    }

    .ch-news-hero {
        padding: 44px 0 32px;
    }

    .ch-news-hero__title {
        font-size: 40px;
        white-space: normal;
    }

    .ch-news-side {
        grid-template-columns: 1fr;
    }

    .ch-news-featured__body,
    .ch-news-card__body,
    .ch-news-quote,
    .ch-news-subscribe {
        padding: 22px;
    }

    .ch-news-featured__footer,
    .ch-news-subscribe__form {
        align-items: stretch;
        flex-direction: column;
    }
}

/*************** NEWS SINGLE ARTICLE ***************/
.ch-news-single {
    --ch-single-text: #111318;
    --ch-single-muted: #5f6672;
    --ch-single-border: #e2e4e7;
    --ch-single-soft: #f3f4f5;
    --ch-single-accent: #d71920;
    background: #f8f9fa;
    color: var(--ch-single-text);
    padding: 48px 0 72px;
}

.ch-news-single__container {
    display: grid;
    grid-template-columns: minmax(0, 980px) 360px;
    gap: 40px;
    align-items: start;
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto;
}

.ch-news-single__top {
    width: min(1380px, calc(100% - 40px));
    margin: 0 auto 28px;
    border-bottom: 1px solid var(--ch-single-border);
    padding-bottom: 28px;
}

.ch-news-single__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    align-items: center;
    margin-bottom: 22px;
    color: #8b929c;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1.2;
}

.ch-news-single__breadcrumb a,
.ch-news-single__breadcrumb span {
    color: inherit;
    text-decoration: none;
}

.ch-news-single__breadcrumb span:last-child {
    color: var(--ch-single-accent);
}

.ch-news-single__title-row {
    display: grid;
    grid-template-columns: minmax(0, 1080px) auto;
    gap: 32px;
    align-items: end;
    justify-content: space-between;
}

.ch-news-single__title-block {
    min-width: 0;
}

.ch-news-single__article {
    overflow: visible;
    padding: 0;
}

.ch-news-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 24px;
    margin-bottom: 0;
    color: var(--ch-single-muted);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .05em;
    line-height: 1.4;
    text-transform: uppercase;
}

.ch-news-single__meta a,
.ch-news-single__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.ch-news-single__meta svg {
    display: block;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    fill: none;
    stroke: var(--ch-single-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ch-news-single__meta a {
    color: var(--ch-single-accent);
    text-decoration: none;
}

.ch-news-single__title {
    margin: 0;
    color: var(--ch-single-text);
    font-size: clamp(28px, 2.25vw, 38px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
}

.ch-news-single__actions {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding-bottom: 8px;
}

.ch-news-single__actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    border: 0;
    border-radius: 50%;
    background: #eef0f2;
    color: #5f6672;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.ch-news-single__actions svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ch-news-single__actions button:hover {
    background: var(--ch-single-accent);
    color: #fff;
}

.ch-news-single__excerpt {
    margin-top: 22px;
    color: var(--ch-single-muted);
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 500;
    line-height: 1.55;
}

.ch-news-single__excerpt p {
    margin: 0;
}

.ch-news-single__header {
    margin: 0 0 30px;
}

.ch-news-single__featured-image {
    overflow: hidden;
    margin: 0 0 34px;
    border-radius: 20px;
    background: #dfe3e8;
    box-shadow: 0 2px 10px rgba(16, 18, 24, .07);
}

.ch-news-single__featured-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ch-news-single__content {
    color: #2b3038;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.82;
}

.ch-news-single__content > *:first-child {
    margin-top: 0;
}

.ch-news-single__content p,
.ch-news-single__content ul,
.ch-news-single__content ol {
    margin: 0 0 24px;
}

.ch-news-single__content ul,
.ch-news-single__content ol {
    padding: 0;
    list-style: none;
}

.ch-news-single__content li {
    position: relative;
    margin: 0 0 14px;
    padding-left: 28px;
    color: #20242b;
    font-size: 15px;
    line-height: 1.65;
}

.ch-news-single__content ul li::before {
    content: "";
    position: absolute;
    top: .48em;
    left: 0;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--ch-single-accent);
    border-radius: 50%;
    background: #fff;
}

.ch-news-single__content ul li::after {
    content: "";
    position: absolute;
    top: calc(.48em + 4px);
    left: 4px;
    width: 8px;
    height: 5px;
    border-left: 1.5px solid var(--ch-single-accent);
    border-bottom: 1.5px solid var(--ch-single-accent);
    transform: rotate(-45deg);
}

.ch-news-single__content ol {
    counter-reset: ch-single-list;
}

.ch-news-single__content ol li {
    counter-increment: ch-single-list;
}

.ch-news-single__content ol li::before {
    content: counter(ch-single-list);
    position: absolute;
    top: .32em;
    left: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--ch-single-accent);
    color: #fff;
    font-size: 10px;
    font-weight: 850;
    line-height: 1;
}

.ch-news-single__content h2,
.ch-news-single__content h3,
.ch-news-single__content h4 {
    margin: 42px 0 16px;
    color: var(--ch-single-text);
    font-weight: 850;
    line-height: 1.18;
    letter-spacing: 0;
}

.ch-news-single__content h2 {
    font-size: clamp(28px, 3vw, 40px);
}

.ch-news-single__content h3 {
    font-size: clamp(23px, 2.4vw, 30px);
}

.ch-news-single__content a {
    color: var(--ch-single-accent);
    font-weight: 750;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.ch-news-single__content blockquote {
    margin: 38px 0;
    border-left: 4px solid var(--ch-single-accent);
    border-radius: 0 8px 8px 0;
    background: var(--ch-single-soft);
    padding: 24px 32px;
    color: #4d2c2d;
    font-size: 22px;
    font-style: italic;
    font-weight: 800;
    line-height: 1.45;
}

.ch-news-single__content blockquote p {
    margin: 0;
}

.ch-news-single__content table {
    width: 100%;
    max-width: 100%;
    margin: 32px 0;
    overflow: hidden;
    border: 0;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 32px rgba(16, 18, 24, .06);
    font-size: 15px;
    line-height: 1.45;
}

.ch-news-single__content th,
.ch-news-single__content td {
    border: 0;
    border-bottom: 1px solid rgba(215, 25, 32, .28);
    padding: 16px;
    text-align: left;
}

.ch-news-single__content th {
    background: #e7e8e9;
    color: var(--ch-single-text);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ch-news-single__content tr:last-child td {
    border-bottom: 0;
}

.ch-news-single__content tr:hover td {
    background: #f8f9fa;
}

.ch-news-single__content img {
    height: auto;
    max-width: 100%;
    border-radius: 12px;
}

.ch-news-single__page-links {
    margin-top: 28px;
    font-weight: 800;
}

.ch-news-single__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid var(--ch-single-border);
}

.ch-news-single__tags::before {
    content: "TAGS:";
    align-self: center;
    margin-right: 4px;
    color: var(--ch-single-text);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .04em;
}

.ch-news-single__tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    border-radius: 999px;
    background: #eef1f4;
    color: #424a55;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}

.ch-news-single__tags a:hover {
    background: var(--ch-single-accent);
    color: #fff;
}

.ch-news-single__author {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    margin-top: 44px;
    border: 1px solid var(--ch-single-border);
    border-radius: 16px;
    background: #fff;
    padding: 28px;
    box-shadow: 0 14px 40px rgba(16, 18, 24, .06);
}

.ch-news-single__author-avatar {
    overflow: hidden;
    width: 128px;
    height: 128px;
    border: 4px solid var(--ch-single-soft);
    border-radius: 50%;
    background: var(--ch-single-soft);
}

.ch-news-single__author-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ch-news-single__author-label {
    margin: 0 0 6px;
    color: var(--ch-single-accent);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ch-news-single__author h2 {
    margin: 0 0 8px;
    color: var(--ch-single-text);
    font-size: 26px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0;
}

.ch-news-single__author-body p:last-child {
    margin: 0;
    color: var(--ch-single-muted);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.65;
}

.ch-news-single__post-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 46px;
}

.ch-news-single__post-nav-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 88px;
    border-radius: 12px;
    background: #fff;
    color: var(--ch-single-text);
    padding: 20px 22px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(16, 18, 24, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.ch-news-single__post-nav-card--next {
    grid-template-columns: minmax(0, 1fr) auto;
    text-align: right;
}

.ch-news-single__post-nav-card:hover {
    box-shadow: 0 16px 36px rgba(16, 18, 24, .09);
    transform: translateY(-2px);
}

.ch-news-single__post-nav-arrow {
    color: var(--ch-single-accent);
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
}

.ch-news-single__post-nav-card small {
    display: block;
    margin-bottom: 5px;
    color: var(--ch-single-muted);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.ch-news-single__post-nav-card strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ch-single-text);
    font-size: 14px;
    font-weight: 850;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.ch-news-single__comments {
    margin-top: 48px;
}

.ch-news-single__comments .comments-title,
.ch-news-single__comments #reply-title {
    margin: 0 0 24px;
    color: var(--ch-single-text);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.ch-news-single__comments .comment-list,
.ch-news-single__comments .commentlist {
    margin: 0 0 36px;
    padding: 0;
    list-style: none;
}

.ch-news-single__comments .comment,
.ch-news-single__comments .pingback {
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.ch-news-single__comments .comment-body {
    position: relative;
    border-radius: 12px;
    background: #fff;
    padding: 20px 22px 20px 74px;
}

.ch-news-single__comments .avatar {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

.ch-news-single__comments .comment-author,
.ch-news-single__comments .comment-meta {
    display: inline-block;
    margin-right: 8px;
    color: var(--ch-single-muted);
    font-size: 12px;
}

.ch-news-single__comments .comment-author .fn {
    color: var(--ch-single-text);
    font-size: 13px;
    font-weight: 850;
    font-style: normal;
}

.ch-news-single__comments .comment-content,
.ch-news-single__comments .comment-body p {
    margin: 8px 0 0;
    color: #303640;
    font-size: 14px;
    line-height: 1.65;
}

.ch-news-single__comments .reply a {
    color: var(--ch-single-accent);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.ch-news-single__comments .comment-respond {
    border-radius: 14px;
    background: #fff;
    padding: 28px;
}

.ch-news-single__comments input[type="text"],
.ch-news-single__comments input[type="email"],
.ch-news-single__comments input[type="url"],
.ch-news-single__comments textarea {
    width: 100%;
    border: 1px solid rgba(215, 25, 32, .38);
    border-radius: 8px;
    background: #fff;
    color: var(--ch-single-text);
    font-size: 14px;
    padding: 12px 14px;
    outline: 0;
}

.ch-news-single__comments textarea {
    min-height: 130px;
}

.ch-news-single__comments input[type="submit"],
.ch-news-single__comments .submit {
    border: 0;
    border-radius: 999px;
    background: var(--ch-single-accent);
    color: #fff;
    padding: 0 24px;
    font-size: 13px;
    font-weight: 850;
}

.ch-news-single__sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.ch-news-single__side-card {
    border: 1px solid #d9dde3;
    border-radius: 14px;
    background: #fff;
    padding: 26px 24px;
    box-shadow: 0 8px 26px rgba(16, 18, 24, .06);
}

.ch-news-single__search {
    position: relative;
}

.ch-news-single__search input {
    width: 100%;
    height: 52px;
    border: 1px solid transparent;
    border-radius: 9px;
    background: var(--ch-single-soft);
    color: var(--ch-single-text);
    padding: 0 48px 0 16px;
    font-size: 13px;
    font-weight: 650;
    outline: 0;
    transition: background .2s ease, border-color .2s ease;
}

.ch-news-single__search input:focus {
    border-color: var(--ch-single-accent);
    background: #fff;
}

.ch-news-single__search button {
    position: absolute;
    top: 50%;
    right: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin: 0;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--ch-single-accent);
    line-height: 1;
    transform: translateY(-50%);
    cursor: pointer;
}

.ch-news-single__search button svg {
    display: block;
    width: 15px;
    height: 15px;
}

.ch-news-single__side-title {
    margin: 0 0 20px;
    color: var(--ch-single-text);
    font-size: 20px;
    font-weight: 850;
    line-height: 1.2;
    letter-spacing: 0;
}

.ch-news-single__category-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ch-news-single__category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #38404a;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.3;
    text-decoration: none;
}

.ch-news-single__category-list a:hover span {
    color: var(--ch-single-accent);
}

.ch-news-single__category-list small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    border-radius: 999px;
    background: #f0f1f3;
    color: #3c4350;
    font-size: 10px;
    font-weight: 850;
    line-height: 1;
}

.ch-news-single__related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ch-news-single__related-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    color: inherit;
    text-decoration: none;
}

.ch-news-single__related-thumb {
    display: block;
    overflow: hidden;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    background: #dfe3e8;
}

.ch-news-single__related-thumb img,
.ch-news-single__related-fallback {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.ch-news-single__related-fallback {
    background: linear-gradient(135deg, rgba(215, 25, 32, .88), rgba(16, 18, 24, .94));
}

.ch-news-single__related-item:hover img {
    transform: scale(1.08);
}

.ch-news-single__related-body {
    min-width: 0;
}

.ch-news-single__related-date {
    display: block;
    margin-top: 5px;
    margin-bottom: 0;
    color: var(--ch-single-muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    line-height: 1.3;
    text-transform: uppercase;
}

.ch-news-single__related-body strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ch-single-text);
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    transition: color .2s ease;
}

.ch-news-single__related-item:hover strong {
    color: var(--ch-single-accent);
}

.ch-news-single__cta {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    background: linear-gradient(135deg, #d71920 0%, #e94f7b 100%);
    color: #fff;
    padding: 28px;
    box-shadow: 0 16px 34px rgba(215, 25, 32, .26);
    border: 1px solid rgba(215, 25, 32, .22);
}

.ch-news-single__cta::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -10px;
    width: 150px;
    height: 92px;
    border: 10px solid rgba(255,255,255,.14);
    border-top-left-radius: 44px;
    border-top-right-radius: 22px;
    opacity: .9;
    pointer-events: none;
}

.ch-news-single__cta::before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 96px;
    height: 24px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    box-shadow: -58px 2px 0 rgba(255,255,255,.10);
    pointer-events: none;
}

.ch-news-single__cta p {
    position: relative;
    z-index: 1;
    max-width: 250px;
    margin: 0 0 22px;
    color: #fff;
    font-size: 13px;
    font-weight: 750;
    line-height: 1.5;
}

.ch-news-single__cta h2 {
    position: relative;
    z-index: 1;
    max-width: 250px;
    margin: 0 0 12px;
    color: #fff;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
}

.ch-news-single__cta a {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border-radius: 999px;
    background: #fff;
    color: var(--ch-single-accent);
    padding: 0 20px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
}

.ch-news-single__popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ch-news-single__popular-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    border: 1px solid rgba(215, 25, 32, .45);
    border-radius: 5px;
    background: #fff;
    color: #323943;
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
}

.ch-news-single__popular-tags a:hover {
    background: var(--ch-single-accent);
    color: #fff;
}

@media only screen and (max-width: 1024px) {
    .ch-news-single__container {
        grid-template-columns: 1fr;
        gap: 42px;
        width: min(920px, calc(100% - 40px));
    }

}

@media only screen and (max-width: 640px) {
    .ch-news-single {
        padding: 28px 0 48px;
    }

    .ch-news-single__container {
        width: min(100% - 28px, 920px);
        gap: 30px;
    }

    .ch-news-single__top {
        width: min(100% - 28px, 920px);
        margin-bottom: 22px;
        padding-bottom: 22px;
    }

    .ch-news-single__breadcrumb {
        margin-bottom: 16px;
        font-size: 9px;
    }

    .ch-news-single__title-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ch-news-single__meta {
        gap: 10px 14px;
        margin-top: 18px;
        font-size: 10px;
    }

    .ch-news-single__actions {
        justify-self: end;
        padding-bottom: 0;
    }

    .ch-news-single__article {
        padding: 0;
    }

    .ch-news-single__featured-image {
        margin-bottom: 26px;
        border-radius: 14px;
    }

    .ch-news-single__content {
        font-size: 16px;
        line-height: 1.75;
    }

    .ch-news-single__content blockquote {
        margin: 30px 0;
        padding: 18px 20px;
    }

    .ch-news-single__content table {
        display: table;
        table-layout: auto;
        width: 100%;
        overflow-x: auto;
        white-space: normal;
        font-size: 13px;
    }

    .ch-news-single__content th,
    .ch-news-single__content td {
        padding: 12px 10px;
    }

    .ch-news-single__post-nav {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 34px;
    }

    .ch-news-single__post-nav-card--next {
        text-align: left;
    }

    .ch-news-single__comments {
        margin-top: 38px;
    }

    .ch-news-single__comments .comments-title,
    .ch-news-single__comments #reply-title {
        font-size: 24px;
    }

    .ch-news-single__comments .comment-body {
        padding: 18px 18px 18px 66px;
    }

    .ch-news-single__comments .avatar {
        left: 18px;
        width: 34px;
        height: 34px;
    }

    .ch-news-single__comments .comment-respond {
        padding: 22px;
    }

    .ch-news-single__author {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
        text-align: center;
    }

    .ch-news-single__author-avatar {
        margin: 0 auto;
    }

    .ch-news-single__side-card,
    .ch-news-single__cta {
        border-radius: 14px;
        padding: 20px;
    }
}

/* Hide only Flatsome default bottom bar, keep custom UX Block footer visible */
#footer .absolute-footer {
    display: none !important;
}
