/* =====================================================
   1. FONTS
===================================================== */

@font-face {
    font-family: 'Inter';
    src: url('../assets/fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* JetBrains Mono */

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../assets/fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../assets/fonts/JetBrainsMono-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'JetBrains Mono';
    src: url('../assets/fonts/JetBrainsMono-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* =====================================================
   2. GLOBAL VERTICAL CONTROL
   ВСЕ ОТСТУПЫ РЕГУЛИРУЮТСЯ ТОЛЬКО ЗДЕСЬ
===================================================== */

:root {

    /* HEADER */
    --space-top: 35px;
    /* от верха страницы до breadcrumb */
    --space-breadcrumb-title: 14px;
    /* между breadcrumb и title */
    --space-title-hero: 30px;
    /* между title и hero */

    /* HERO */
    --space-hero-meta: 20px;
    /* между hero и датой */
    --space-meta-divider: 20px;
    /* между датой и линией */

    /* BODY */
    --space-divider-body: 40px;
    /* между линией и первым абзацем */
    --space-h2-top: 20px;
    /* отступ перед h2 */
    --space-paragraph: 22px;
    /* между абзацами */
    --space-h2-bottom: -5px;
    /* отступ после h2 */

}

.article-page {
    width: 100%;

    padding-top: 120px;
    padding-left: 32px;
    padding-right: 32px;
    padding-bottom: 120px;
}

/* =====================================================
   3. ARTICLE WRAPPER
===================================================== */

.article {
    width: 100%;
    max-width: 680px;

    margin: 0 auto;

    display: flex;
    flex-direction: column;

    position: relative;
    z-index: 2;
}

/* =====================================================
   4. HEADER
===================================================== */

.article-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    width: 100%;

    margin-top: var(--space-top);
    gap: var(--space-breadcrumb-title);
    margin-bottom: var(--space-title-hero);
}

.article-title {
    font-family: 'Inter', sans-serif;

    font-size: clamp(40px, 5vw, 52px);

    font-variation-settings: "wght" 550, "opsz" 72;

    line-height: 1;

    letter-spacing: -0.02em;

    margin: 0;

    color: #ffffff;
}

.article-readtime {
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.1px;
    font-size: 13px;
    font-weight: 480;
    color: rgba(255, 255, 255, 0.5);
}

.article-date {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 480;
    color: rgba(255, 255, 255, 0.4);
}

/* =====================================================
   5. HERO
===================================================== */

.article-hero {

    width: calc(100% + 160px);

    margin-left: -80px;

    height: 620px;

    border-radius: 20px;

    overflow: hidden;

    background: #0b0b0b;

    border: 1px solid rgba(255, 255, 255, 0.02);
}

.article-hero img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}

/* =====================================================
   6. META UNDER IMAGE
===================================================== */

.article-info {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-size: 13px;
    color: var(--muted);
    opacity: .7;

    margin-top: var(--space-hero-meta);
}

.article-divider {
    width: 100%;

    height: 1px;

    background: rgba(255, 255, 255, .06);

    margin-top: var(--space-meta-divider);
}

/* =====================================================
   7. BODY WRAPPER
===================================================== */

.article-body {
    width: 100%;

    margin-top: var(--space-divider-body);

    display: flex;
    flex-direction: column;

    gap: var(--space-paragraph);
}

/* =====================================================
   8. PARAGRAPHS
===================================================== */

.article-body p {
    font-family: 'Inter', system-ui, sans-serif;

    font-size: 15px;
    line-height: 1.45;
    letter-spacing: 0;

    font-feature-settings: "ss07", "ss03", "cv01";
    font-variation-settings: "opsz" 14, "wght" 450;

    color: rgba(255, 255, 255, .6);
    margin: 0;
}

/* LEAD */

.article-body .lead {
    font-size: 20px;
    line-height: 1.5;

    font-variation-settings: "opsz" 18, "wght" 500;

    color: #ffffff;
}

/* =====================================================
   9. HEADINGS
===================================================== */

.article-body h2 {
    color: rgba(255, 255, 255);
    font-family: 'Inter', sans-serif;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.25;

    font-variation-settings: "opsz" 20, "wght" 600;

    margin-top: var(--space-h2-top);
    margin-bottom: var(--space-h2-bottom);
}

.article-breadcrumb {
    font-family: 'Inter', sans-serif;
    font-weight: 460;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

/* левая часть — приглушённая */
.breadcrumb-parent {
    color: #6f6f6f;
}

/* разделитель */
.breadcrumb-separator {
    color: #6f6f6f;
}

/* текущая страница — ярче */
.breadcrumb-current {
    color: #dfdfdf;
}

.article-list {
    margin: 6px 0 6px 18px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: #979797;
    font-size: 15px;
    line-height: 1.45;
}

.article-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 450;
    list-style: disc;
}


/* ========================================
   METRICS BLOCK (как в макете)
======================================== */

.article-metrics {
    position: relative;
    margin-top: 10px;

    border: 1px solid rgba(255, 255, 255, 0.082);
    border-radius: 9px;

    padding: 15px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
    /* важно */
}

/* мягкий нижний градиент */
.article-metrics::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 70px;
    /* регулируй глубину */
    pointer-events: none;

    background: linear-gradient(to top,
            rgba(2, 2, 2, 0.5) 20%,
            rgba(0, 0, 0, 0.25) 60%,
            rgba(0, 0, 0, 0.1) 80%,
            rgba(0, 0, 0, 0) 100%);
}

.article-metrics img,
.article-metrics video {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* ========================================
   ARTICLE FADE + SOFT BLUR
======================================== */

/* общее начальное состояние */
.article-animate .article-breadcrumb-wrap,
.article-animate .article-title,
.article-animate .article-hero,
.article-animate .article-info,
.article-animate .article-divider,
.article-animate .article-body {
    opacity: 0;
    transform: translateY(14px);
    filter: blur(2px);
}

/* активное состояние */
.article-animate.show .article-breadcrumb-wrap,
.article-animate.show .article-title,
.article-animate.show .article-hero,
.article-animate.show .article-info,
.article-animate.show .article-divider,
.article-animate.show .article-body {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(.22, .61, .36, 1),
        filter 700ms ease;
}

.article-animate.show>* {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);

    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(.22, .61, .36, 1),
        filter 700ms ease;
}

/* каскад */
.article-animate.show .article-breadcrumb-wrap {
    transition-delay: 0ms;
}

.article-animate.show .article-title {
    transition-delay: 100ms;
}

.article-animate.show .article-hero {
    transition-delay: 600ms;
}

.article-animate.show .article-info {
    transition-delay: 700ms;
}

.article-animate.show .article-divider {
    transition-delay: 650ms;
}

.article-animate.show .article-body {
    transition-delay: 1000ms;
}

.article-title .title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
}

.article-animate.show .article-title .title-word {
    opacity: 1;
    transform: translateY(0);

    transition:
        opacity 700ms ease,
        transform 700ms cubic-bezier(.22, .61, .36, 1),
        filter 700ms ease;
}

.article-body p strong,
.article-body p b {
    font-variation-settings: "opsz" 14, "wght" 530;
    color: rgba(255, 255, 255, .85);
    /* опционально: чуть ярче */
}

.article-body .reason-title {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    color: #b6b6b6;
    font-variation-settings: "opsz" 18, "wght" 550;
}

/* начальное состояние */
.article-metrics video {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(2px);
    transition:
        opacity 1500ms ease,
        transform 900ms cubic-bezier(.22, .61, .36, 1),
        filter 700ms ease;
}

/* активное состояние */
.article-metrics.video-visible video {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* =========================
   ARTICLE — UNIVERSAL CTA
========================= */

.article-cta {
    margin-top: 80px;
    padding-top: 0;
    border-top: none;
}

.article-cta-inner {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    text-align: center;

    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

/* ACTIONS ROW */
.article-cta-actions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.article-cta-title {
    font-family: 'Inter', system-ui, sans-serif;
    margin: 0;
    font-size: 46px;
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 570;
    color: rgba(255, 255, 255, .92);
}

.article-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;

    position: relative;
    z-index: 3;

    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    margin-top: 10px;

    border: 1px solid rgba(0, 0, 0, .55);
    background: rgba(255, 255, 255);
    color: rgba(0, 0, 0, .92);

    font-weight: 600;
    font-size: 14px;
    cursor: pointer;

    transition: transform .15s ease, opacity .15s ease;
}

.article-cta-btn:active {
    transform: translateY(1px);
    opacity: .92;
}

.article-cta-btn-text {
    line-height: 1;
    transform: none;
}

/* =========================
   CTA VIDEO
========================= */

.article-cta-video {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    overflow: hidden;

    position: relative;
    z-index: 1;
}

.article-cta-video video {
    width: 120%;

    max-width: 760px;

    height: 450px;

    display: block;

    object-fit: cover;

    transform: none !important;
}

/* ========================================
   CTA VIDEO ANIMATION ONLY
======================================== */

.article-cta-video video {
    opacity: 0;
    transform: translateY(10px);
    filter: blur(4px);

    transition:
        opacity 2000ms ease,
        transform 2000ms cubic-bezier(.22, .61, .36, 1),
        filter 700ms ease;
}

.article-cta-video.video-visible video {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* =========================
   CTA CLEAN LINE + SOFT BLUR
========================= */

/* строки заголовка */
.article-cta-line {
    display: block;

    opacity: 0;
    transform: translateY(24px);
    filter: blur(4px);

    transition:
        opacity 600ms ease,
        transform 800ms cubic-bezier(.22, .61, .36, 1),
        filter 600ms ease;
}

/* кнопка */
.article-cta-btn {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(0px);

    transition:
        opacity 600ms ease,
        transform 800ms cubic-bezier(.22, .61, .36, 1),
        filter 600ms ease;
}

/* первая строка */
.article-cta.visible .article-cta-line:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

/* вторая строка */
.article-cta.visible .article-cta-line:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 180ms;
}

/* кнопка появляется последней */
.article-cta.visible .article-cta-btn {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition-delay: 360ms;
}

/* ========================================
   ARTICLE FIGURE (STATIC IMAGE FRAME)
   отдельная рамка для изображений,
   не влияет на .article-metrics
======================================== */

.article-figure {
    position: relative;
    margin-top: 10px;

    border: 1px solid rgba(255, 255, 255, 0.082);
    border-radius: 9px;

    padding: 0px;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;
}

.article-figure img {
    width: 100%;
    max-width: 900px;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* =========================
   ARTICLE — TARIFF LINK
========================= */

.article-tariffs-link {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.tariffs-link-text {
    font-size: 15px;
    font-weight: 500;
    color: #dfdfdf;
    cursor: pointer;
    transition: opacity .2s ease;
}

.tariffs-link-text:active {
    opacity: .6;
}

/* =========================
   ARTICLE INLINE LINK
========================= */

.article-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: rgba(255, 255, 255, 0.25);
    transition:
        color .2s ease,
        text-decoration-color .2s ease,
        opacity .2s ease;
}

.article-link:hover {
    color: rgba(255, 255, 255, 0.95);
    text-decoration-color: rgba(255, 255, 255, 0.65);
}

.article-link:active {
    opacity: .7;
}

.article-body .paragraph-strong {
    margin-top: 30px;

    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-variation-settings: "opsz" 18, "wght" 550;
    line-height: 1.35;
    color: rgba(255, 255, 255);
}

.article-body .paragraph-strong-first {
    margin-top: 20px;
}

.article-body .paragraph-strongv2 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-variation-settings: "opsz" 18, "wght" 500;
    line-height: 1.35;
    color: rgba(255, 255, 255, )
}

.article-linkv2 {
    color: rgba(255, 255, 255, 0.9);
    text-decoration-line: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 5px;
    text-decoration-color: rgba(255, 255, 255, 0.25);
    transition:
        color .2s ease,
        text-decoration-color .2s ease,
        opacity .2s ease;
}

.article-body .step-description {
    margin-top: -10px;
}

.article-body .step-description2 {
    margin-top: 0px;
}

/* =========================
   ARTICLE — MEDIA SLIDER
   каждая карточка = свой контейнер
========================= */

.article-slider {
    position: relative;
    overflow: hidden;

    width: 100%;
    margin-top: 5px;
}

.article-slider-track {
    display: flex;

    will-change: transform;
    transition: transform .65s cubic-bezier(.25, .85, .35, 1);
}

.article-slide {
    flex: 0 0 100%;
    box-sizing: border-box;

    padding: 0;

    display: block;
}

/* ВОТ ОН — контейнер КАЖДОЙ карточки */
.article-slide-inner {
    display: block;
    width: calc(100% - 6px);
    margin: 0 auto;

    border: 1px solid rgba(255, 255, 255, .082);
    border-radius: 9px;

    overflow: hidden;
}

.article-media {

    width: 100%;

    margin-top: 8px;
    margin-bottom: 12px;

    border-radius: 18px;
    overflow: hidden;

    border: none;

    background: transparent;

    position: relative;
}

.article-media img,
.article-media video {

    width: 100%;
    height: auto;

    display: block;

    object-fit: contain;
}

.article-media:has(video) {

    border: none;
    background: transparent;
}

.article-slide-inner img,
.article-slide-inner video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;

    border: none;
    box-shadow: none;
}

/* dots */
.article-slider-dots {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 20px;
}

.article-slider-dots span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .22);
    transition: background .2s ease, transform .2s ease, opacity .2s ease;
}

.article-slider-dots span.active {
    background: rgba(255, 255, 255, .85);
}

.article-slide-inner img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================
   FILE FORMAT TAG
========================= */

.file-format {
    display: inline;

    padding: 2px 6px;
    margin: 0 2px;

    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .06);

    font-size: .9em;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);

    line-height: inherit;
}

.ui-path-list {
    margin-top: 0;
}

.ui-path-list .file-format {
    display: inline-block;
}

.ui-path-list .file-format+.file-format {
    margin-top: 12px;
}

.ui-path-item+.ui-path-item {
    margin-top: 8px;
}

/* Code UI */

.lang-tag {
    opacity: .45;
    font-size: .85em;
    letter-spacing: .04em;
    margin-right: 5px;
}

.code-scroll {
    width: 100%;
    background: #070707;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;

    padding: 16px 22px;

    overflow-x: auto;
    overflow-y: hidden;

    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.code-scroll pre {
    margin: 0;
}

.code-scroll code {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255);

    white-space: nowrap;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-variant-ligatures: none;
}

.code-scroll::-webkit-scrollbar {
    height: 8px;
}

.code-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.code-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 14px;

    border-radius: 8px 8px 0 0;
}

.code-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.code-icon {
    opacity: .6;
    font-size: 14px;
}

.copy-code {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;
    padding: 0;

    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .55);

    cursor: pointer;
    transition: .15s;
}

.copy-code:hover {
    color: #fff;
}

.copy-code-icon {
    width: 18px;
    height: 18px;
    display: block;

    background-color: currentColor;

    -webkit-mask-image: url('../assets/icons/copy.svg');
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;

    mask-image: url('../assets/icons/copy.svg');
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

.ui-path-list {
    margin-bottom: 26px;
}

.ui-path-list:has(.code-header) {
    margin-top: -10px;
}

html {
    scroll-behavior: smooth;
}

#step3,
#step4 {
    scroll-margin-top: 80px;
}

.ui-path-list+.article-media {
    margin-top: -20px;
}

.ui-path-list+p {
    margin-top: -26px;
}

/* =====================================================
   ARTICLE FAQ
===================================================== */

.article-faq {
    margin-top: 100px;
}

.article-faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-variation-settings: "wght" 550, "opsz" 30;
    text-align: center;
    color: #ffffff;

    margin-bottom: 40px;
}

.article-faq-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.article-faq-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.article-faq-question {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-variation-settings: "wght" 520, "opsz" 30;
    color: #ffffff;
}

.article-faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.4;
    color: #9a9a9a;
    font-variation-settings: "wght" 420, "opsz" 18;
}

/* ========================================
   ARTICLE PREMIUM LOCK
======================================== */

.article-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: var(--space-paragraph);
}

/* ограничиваем высоту закрытой части */
.article-premium:not(.visible) {

    max-height: 260px;
    overflow: hidden;

    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

/* мягкое затемнение снизу */
.article-premium:not(.visible)::after {

    content: "";

    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    height: 200px;

    pointer-events: none;

    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 10%,
            rgba(0, 0, 0, 0.8) 10%,
            rgba(0, 0, 0) 100%);
}

/* ========================================
   INSTALL CEP — CTA ABOVE PREMIUM BLUR
======================================== 

.install-cep-page .article-cta {
    position: relative;
    margin-top: -140px;
    z-index: 5;
} */

.app-icon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
}

.app-icon::before {
    content: "";
    width: 20px;
    height: 20px;
    display: inline-block;

    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.app-pr::before {
    background-image: url("../assets/icons/pr.svg");
}

.app-ae::before {
    background-image: url("../assets/icons/ae.svg");
}

.app-ai::before {
    background-image: url("../assets/icons/ai.svg");
}

.app-c4d::before {
    background-image: url("../assets/icons/c4d.svg");
    width: 22px;
    height: 22px;
}

.app-blender::before {
    background-image: url("../assets/icons/blender.svg");
}

.article-meta-block {
    margin-top: 0px;
}

.app-dv::before {
    background-image: url("../assets/icons/davinci.svg");
    width: 17px;
    height: 17px;
}

.app-figma::before {
    background-image: url("../assets/icons/figma.svg");
    width: 17px;
    height: 17px;
}

.article-meta-row {
    margin: 0;
    line-height: 1.15;
}

.article-meta-row+.article-meta-row {
    margin-top: 6px;
}

.article-meta-row .file-format {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

.text-white {
    color: rgba(255, 255, 255, .9);
}

/* ========================================
   FIRST MONTH — CTA ABOVE PREMIUM
======================================== */

.first-month-page .article-cta {
    position: relative;
    margin-top: 80px;
    z-index: 5;
}

.article-breadcrumb-link {

    color: rgba(255, 255, 255, .5);

    text-decoration: none;

    transition: color .25s ease;
}

.article-breadcrumb-link:hover {

    color: rgba(255, 255, 255, .7);
}

@media (min-width: 769px) {

    .article-body p {

        font-size: 18px;
        line-height: 1.6;
        font-variation-settings:
            "opsz" 18,
            "wght" 400;
    }

    .article-list {

        font-size: 17px;
        line-height: 1.6;
    }

    .article-date {

        font-size: 15px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.45);
    }

    .article-readtime {

        font-size: 15px;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.55);
    }

    .article-body h2 {
        
        margin-top: 40px;
        font-variation-settings: "opsz" 32, "wght" 570;
    }

}

@media (max-width: 768px) {

    .article-page {
        padding-left: 20px;
        padding-right: 20px;

        padding-top: 105px;
        padding-bottom: 90px;
    }

    .article {
        max-width: 100%;
    }

    .article-body .lead {
        font-size: 18px;
        line-height: 1.4;
    
        font-variation-settings: "opsz" 18, "wght" 500;
    
        color: #ffffff;
        }

.article-title {

    font-size: 34px;
    font-variation-settings: "wght" 560, "opsz" 72;

    line-height: 1.08;

    white-space: normal;

    text-wrap: nowrap;
}

.article-hero {

    width: 100%;

    margin-left: 0;

    height: 240px;

    border-radius: 14px;
}

/* CTA */

.article-cta {
    margin-top: 64px;
}

.article-cta-title {
    font-size: 28px;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.article-cta-inner {
    gap: 14px;
}

.article-cta-btn {
    height: 37px;
    padding: 0 18px;

    font-size: 14px;
}

.article-cta-video {
    display: flex;
    justify-content: center;

    margin-top: -60px;

    overflow: hidden;
}

.article-cta-video video {
    width: calc(100% + 240px);

    max-width: none;

    height: 460px;

    object-fit: cover;
    object-position: center top;
}

}

.article-page-cta {
    margin-top: 140px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.related-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.related-image {
    overflow: hidden;

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, .05);

    aspect-ratio: 16 / 10;
}

.related-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}