/* ============================================================
   VENTACTIVE
   ARTICLE
============================================================ */

.vcArticlePage {
    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfbfd 100%
        );
}


.vcArticle {
    position: relative;
}


/* ============================================================
   HEADER
============================================================ */

.vcArticleHeader {
    position: relative;
    padding:
        clamp(122px, 10vw, 170px)
        clamp(18px, 4vw, 70px)
        clamp(54px, 6vw, 86px);
    overflow: hidden;
    background:
        radial-gradient(
            circle at 18% 12%,
            rgba(99, 116, 255, .10),
            transparent 27%
        ),
        radial-gradient(
            circle at 82% 8%,
            rgba(255, 103, 136, .08),
            transparent 24%
        ),
        #ffffff;
}


.vcArticleHeader::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(15, 23, 42, .024) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .024) 1px,
            transparent 1px
        );
    background-size:
        44px
        44px;
    mask-image:
        linear-gradient(
            to bottom,
            #000,
            transparent 92%
        );
}


.vcArticleHeaderInner {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    margin: 0 auto;
}


/* ============================================================
   BACK
============================================================ */

.vcArticleBack {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 34px;
    color: #737b87;
    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color .22s ease,
        transform .22s ease;
}


.vcArticleBack:hover {
    color: #171b23;
    transform:
        translateX(-2px);
}


.vcArticleBackIcon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border:
        1px solid
        rgba(15, 23, 42, .08);
    border-radius: 50%;
    background: #ffffff;
}


.vcArticleBackIcon svg {
    width: 14px;
    height: 14px;
}


/* ============================================================
   EYEBROW
============================================================ */

.vcArticleEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #6374ff;
}


.vcArticleEyebrowDot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6374ff;
    box-shadow:
        0 0 0 5px
        rgba(99, 116, 255, .09);
}


/* ============================================================
   TITLE
============================================================ */

.vcArticleHeader h1 {
    margin: 0;
    max-width: 1050px;
    font-size:
        clamp(
            48px,
            6vw,
            92px
        );
    line-height: .98;
    letter-spacing: -.058em;
    font-weight: 800;
    color: #151922;
}


/* ============================================================
   SUMMARY
============================================================ */

.vcArticleSummary {
    max-width: 820px;
    margin:
        24px
        0
        0;
    font-size:
        clamp(
            17px,
            1.4vw,
            22px
        );
    line-height: 1.7;
    color: #6f7784;
}


/* ============================================================
   META
============================================================ */

.vcArticleMeta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 28px;
}


.vcArticleMetaItem {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #818895;
}


.vcArticleMetaIcon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background:
        rgba(99, 116, 255, .07);
    color: #6374ff;
}


.vcArticleMetaIcon svg {
    width: 14px;
    height: 14px;
}


.vcArticleMetaDivider {
    width: 1px;
    height: 20px;
    background:
        rgba(15, 23, 42, .10);
}


/* ============================================================
   HERO IMAGE
============================================================ */

.vcArticleHeroImageWrap {
    padding:
        0
        clamp(18px, 4vw, 70px)
        clamp(70px, 7vw, 110px);
    background: #ffffff;
}


.vcArticleHeroImage {
    width: min(1440px, 100%);
    height:
        clamp(
            380px,
            48vw,
            700px
        );
    margin: 0 auto;
    overflow: hidden;
    border-radius: 36px;
    background: #eef0f4;
    box-shadow:
        0 28px 90px
        rgba(15, 23, 42, .09);
}


.vcArticleHeroImage img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}


/* ============================================================
   ARTICLE LAYOUT
============================================================ */

.vcArticleLayout {
    width: min(1280px, calc(100% - 36px));
    margin: 0 auto;
    display: grid;
    grid-template-columns:
        220px
        minmax(0, 820px);
    justify-content: center;
    gap:
        clamp(
            45px,
            6vw,
            90px
        );
    padding-bottom:
        clamp(
            80px,
            8vw,
            125px
        );
}


/* ============================================================
   SIDEBAR
============================================================ */

.vcArticleSide {
    position: relative;
    min-width: 0;
}


.vcArticleSideSticky {
    position: sticky;
    top: 125px;
    display: grid;
    gap: 12px;
}


.vcArticleSideLabel {
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #6374ff;
}


.vcArticleSideTitle {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
    color: #363d48;
}


.vcArticleSideLine {
    width: 100%;
    height: 1px;
    margin:
        6px
        0;
    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 42, .10),
            transparent
        );
}


.vcArticleSideBack {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #808894;
    font-size: 10px;
    font-weight: 800;
    text-decoration: none;
    transition:
        color .22s ease;
}


.vcArticleSideBack:hover {
    color: #6374ff;
}


.vcArticleSideBack svg {
    width: 13px;
    height: 13px;
}


/* ============================================================
   CONTENT
============================================================ */

.vcArticleContent {
    min-width: 0;
    color: #363d47;
    font-size:
        clamp(
            16px,
            1.2vw,
            18px
        );
    line-height: 1.85;
}


/* ============================================================
   FIRST PARAGRAPH
============================================================ */

.vcArticleContent > p:first-child {
    margin-top: 0;
    font-size:
        clamp(
            19px,
            1.5vw,
            23px
        );
    line-height: 1.72;
    color: #4c5460;
}


/* ============================================================
   PARAGRAPHS
============================================================ */

.vcArticleContent p {
    margin:
        0
        0
        1.55em;
}


/* ============================================================
   HEADINGS
============================================================ */

.vcArticleContent h2,
.vcArticleContent h3,
.vcArticleContent h4 {
    color: #171b23;
    font-weight: 800;
    letter-spacing: -.035em;
}


.vcArticleContent h2 {
    margin:
        2.1em
        0
        .7em;
    font-size:
        clamp(
            30px,
            3vw,
            46px
        );
    line-height: 1.08;
}


.vcArticleContent h3 {
    margin:
        1.9em
        0
        .65em;
    font-size:
        clamp(
            24px,
            2.2vw,
            34px
        );
    line-height: 1.12;
}


.vcArticleContent h4 {
    margin:
        1.7em
        0
        .6em;
    font-size:
        clamp(
            20px,
            1.8vw,
            27px
        );
    line-height: 1.18;
}


/* ============================================================
   LINKS
============================================================ */

.vcArticleContent a {
    color: #6374ff;
    text-decoration:
        underline;
    text-decoration-thickness:
        1px;
    text-underline-offset:
        3px;
    transition:
        color .22s ease;
}


.vcArticleContent a:hover {
    color: #4455d4;
}


/* ============================================================
   STRONG / EMPHASIS
============================================================ */

.vcArticleContent strong {
    font-weight: 800;
    color: #232932;
}


.vcArticleContent em {
    color: #555d69;
}


/* ============================================================
   LISTS
============================================================ */

.vcArticleContent ul,
.vcArticleContent ol {
    margin:
        1.4em
        0
        1.8em;
    padding-left: 1.4em;
}


.vcArticleContent li {
    margin-bottom: .7em;
    padding-left: .25em;
}


.vcArticleContent li::marker {
    color: #6374ff;
    font-weight: 800;
}


/* ============================================================
   BLOCKQUOTE
============================================================ */

.vcArticleContent blockquote {
    position: relative;
    margin:
        2.2em
        0;
    padding:
        24px
        28px
        24px
        34px;
    border-left:
        4px solid
        #6374ff;
    border-radius:
        0
        18px
        18px
        0;
    background:
        linear-gradient(
            90deg,
            rgba(99, 116, 255, .07),
            rgba(99, 116, 255, .02)
        );
    color: #4b5360;
    font-size:
        clamp(
            19px,
            1.5vw,
            23px
        );
    line-height: 1.65;
}


.vcArticleContent blockquote p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   IMAGES
============================================================ */

.vcArticleContent img {
    display: block;
    max-width: 100%;
    height: auto;
    margin:
        2.2em
        auto;
    border-radius: 24px;
    box-shadow:
        0 18px 55px
        rgba(15, 23, 42, .09);
}


/* ============================================================
   FIGURE
============================================================ */

.vcArticleContent figure {
    margin:
        2.3em
        0;
}


.vcArticleContent figure img {
    margin: 0;
}


.vcArticleContent figcaption {
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.5;
    color: #9198a3;
    text-align: center;
}


/* ============================================================
   HR
============================================================ */

.vcArticleContent hr {
    height: 1px;
    margin:
        2.7em
        0;
    border: 0;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(15, 23, 42, .12),
            transparent
        );
}


/* ============================================================
   TABLES
============================================================ */

.vcArticleContent table {
    width: 100%;
    margin:
        2em
        0;
    border-collapse: collapse;
    overflow: hidden;
    border:
        1px solid
        rgba(15, 23, 42, .08);
    border-radius: 16px;
    font-size: 14px;
}


.vcArticleContent th,
.vcArticleContent td {
    padding:
        13px
        15px;
    border-bottom:
        1px solid
        rgba(15, 23, 42, .07);
    text-align: left;
}


.vcArticleContent th {
    background:
        rgba(99, 116, 255, .06);
    color: #2f3540;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .03em;
}


.vcArticleContent tr:last-child td {
    border-bottom: 0;
}


/* ============================================================
   CODE
============================================================ */

.vcArticleContent code {
    padding:
        2px
        6px;
    border-radius: 6px;
    background:
        rgba(15, 23, 42, .055);
    font-size: .9em;
    color: #49515c;
}


.vcArticleContent pre {
    overflow-x: auto;
    margin:
        2em
        0;
    padding:
        20px;
    border-radius: 18px;
    background: #171b23;
    color: #f7f8fa;
}


.vcArticleContent pre code {
    padding: 0;
    background: transparent;
    color: inherit;
}


/* ============================================================
   EMBEDS
============================================================ */

.vcArticleContent iframe,
.vcArticleContent video {
    display: block;
    width: 100%;
    max-width: 100%;
    margin:
        2em
        auto;
    border: 0;
    border-radius: 22px;
}


/* ============================================================
   CONTENT EMPTY
============================================================ */

.vcArticleContentEmpty {
    padding:
        36px;
    border:
        1px solid
        rgba(15, 23, 42, .07);
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
}


.vcArticleContentEmpty span {
    display: block;
    margin-bottom: 7px;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6374ff;
}


.vcArticleContentEmpty p {
    margin: 0;
    font-size: 14px;
    color: #7d8590;
}


/* ============================================================
   FOOTER
============================================================ */

.vcArticleFooter {
    padding:
        0
        clamp(18px, 4vw, 70px)
        clamp(80px, 8vw, 125px);
}


.vcArticleFooterInner {
    width: min(1040px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 27px;
    border-top:
        1px solid
        rgba(15, 23, 42, .08);
}


/* ============================================================
   FOOTER INFO
============================================================ */

.vcArticleFooterInfo {
    display: grid;
    gap: 4px;
}


.vcArticleFooterInfo > span {
    font-size: 9px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #6374ff;
}


.vcArticleFooterInfo > strong {
    font-size: 12px;
    color: #6f7782;
}


/* ============================================================
   FOOTER BACK
============================================================ */

.vcArticleFooterBack {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #343b46;
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}


.vcArticleFooterBackIcon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #171b23;
    color: #ffffff;
    transition:
        transform .22s ease,
        background-color .22s ease;
}


.vcArticleFooterBackIcon svg {
    width: 14px;
    height: 14px;
}


.vcArticleFooterBack:hover
.vcArticleFooterBackIcon {
    transform:
        translateX(-3px);
    background: #6374ff;
}


/* ============================================================
   404 ARTICLE
============================================================ */

.vcArticleNotFound {
    min-height: 72vh;
    display: grid;
    place-items: center;
    padding:
        150px
        20px
        90px;
}


.vcArticleNotFoundInner {
    width: min(720px, 100%);
    text-align: center;
}


.vcArticleNotFoundInner > span {
    display: block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #6374ff;
}


.vcArticleNotFoundInner h1 {
    margin: 0;
    font-size:
        clamp(
            42px,
            5vw,
            68px
        );
    line-height: 1.02;
    letter-spacing: -.05em;
    color: #171b23;
}


.vcArticleNotFoundInner p {
    max-width: 520px;
    margin:
        18px
        auto
        24px;
    line-height: 1.7;
    color: #777f8b;
}


.vcArticleNotFoundInner a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    padding:
        0
        20px;
    border-radius: 999px;
    background: #171b23;
    color: #ffffff;
    font-size: 11px;
    font-weight: 850;
    text-decoration: none;
}


.vcArticleNotFoundInner a svg {
    width: 15px;
    height: 15px;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 980px) {

    .vcArticleLayout {
        grid-template-columns:
            1fr;
        width: min(860px, calc(100% - 36px));
    }


    .vcArticleSide {
        display: none;
    }


    .vcArticleHeroImage {
        border-radius: 30px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {

    .vcArticleHeader {
        padding:
            108px
            16px
            42px;
    }


    .vcArticleBack {
        margin-bottom: 27px;
    }


    .vcArticleHeader h1 {
        font-size:
            clamp(
                42px,
                12vw,
                58px
            );
    }


    .vcArticleSummary {
        margin-top: 19px;
        font-size: 15px;
        line-height: 1.65;
    }


    .vcArticleMeta {
        align-items: flex-start;
        gap: 10px;
    }


    .vcArticleMetaDivider {
        display: none;
    }


    .vcArticleMetaItem {
        width: 100%;
    }


    .vcArticleHeroImageWrap {
        padding:
            0
            16px
            58px;
    }


    .vcArticleHeroImage {
        height: 300px;
        border-radius: 24px;
    }


    .vcArticleLayout {
        width: calc(100% - 32px);
        padding-bottom: 70px;
    }


    .vcArticleContent {
        font-size: 16px;
        line-height: 1.78;
    }


    .vcArticleContent > p:first-child {
        font-size: 18px;
    }


    .vcArticleContent h2 {
        margin-top: 1.8em;
        font-size:
            clamp(
                29px,
                9vw,
                39px
            );
    }


    .vcArticleContent h3 {
        font-size:
            clamp(
                24px,
                7.5vw,
                31px
            );
    }


    .vcArticleContent blockquote {
        padding:
            20px
            18px
            20px
            22px;
        font-size: 18px;
    }


    .vcArticleContent img {
        margin:
            1.8em
            auto;
        border-radius: 18px;
    }


    .vcArticleContent table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }


    .vcArticleFooter {
        padding:
            0
            16px
            75px;
    }


    .vcArticleFooterInner {
        align-items: flex-start;
        flex-direction: column;
    }

}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 430px) {

    .vcArticleHeader {
        padding-left: 14px;
        padding-right: 14px;
    }


    .vcArticleHeroImageWrap {
        padding-left: 14px;
        padding-right: 14px;
    }


    .vcArticleHeroImage {
        height: 250px;
    }


    .vcArticleLayout {
        width: calc(100% - 28px);
    }


    .vcArticleFooter {
        padding-left: 14px;
        padding-right: 14px;
    }

}


/* ============================================================
   REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .vcArticleBack,
    .vcArticleSideBack,
    .vcArticleFooterBackIcon {
        transition: none;
    }

}

/* ============================================================
   ARTICLE
   JS STATES
============================================================ */

.vcArticleProgress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    width: 100%;
    height: 3px;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .25s ease;
}


.vcArticleProgress.is-visible {
    opacity: 1;
}


.vcArticleProgress > span {
    display: block;
    width: 100%;
    height: 100%;
    transform:
        scaleX(0);
    transform-origin:
        left center;
    background:
        linear-gradient(
            90deg,
            #6374ff,
            #8e9cff
        );
    will-change: transform;
}


.vcArticleRevealItem {
    opacity: 0;
    transform:
        translateY(18px);
    transition:
        opacity .65s ease,
        transform .8s cubic-bezier(.16,1,.3,1);
}


.vcArticleRevealItem.is-visible {
    opacity: 1;
    transform:
        translateY(0);
}


@media (prefers-reduced-motion: reduce) {

    .vcArticleRevealItem {
        opacity: 1;
        transform: none;
        transition: none;
    }


    .vcArticleProgress {
        transition: none;
    }

}