/* ==========================================================================
   Vincent Hero — style WYLACZNIE sekcji hero z motywu Vincent.
   Ladowany tylko na szablonach custom-vincent-*.hbs.
   Tresc artykulu, typografia i dol wpisu = 100% Hanoi (ten plik ich nie dotyka:
   wszystkie reguly sa zeskopowane pod .vincent-scope, ktory obejmuje tylko hero).
   Wartosci rem z Vincenta przeliczone na px (Vincent zaklada html 62.5%).
   ========================================================================== */

/* --- Fonty Vincenta (Geist + Bricolage) — uzywane tylko w hero --- */
@font-face {
    font-family: 'Geist';
    src: url('../fonts/vincent/Geist-Variable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bricolage';
    src: url('../fonts/vincent/BricolageGrotesque-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Bricolage';
    src: url('../fonts/vincent/BricolageGrotesque-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/* --- Zmienne Vincenta zmapowane na palete Hanoi --- */
.vincent-scope {
    --brand-color: var(--ghost-accent-color, var(--color-accent, #6c49b6));
    --primary-text-color: var(--color-text, hsla(214, 70%, 4%, 0.9));
    --secondary-text-color: color-mix(in srgb, var(--color-text, #1f2518) 70%, transparent);
    --tertiary-text-color: color-mix(in srgb, var(--color-text, #1f2518) 55%, transparent);
    --disabled-text-color: color-mix(in srgb, var(--color-text, #1f2518) 35%, transparent);
    --divider-color: color-mix(in srgb, var(--color-text, #000) 10%, transparent);
    --input-background-color: color-mix(in srgb, var(--color-text, #000) 8%, transparent);
    --hero-background-color: color-mix(in srgb, var(--color-text, #000) 4%, transparent);
    --background-color: var(--color-background, #fff);
    --white-color: #fff;
    --black-color: #000;
    --orange-color: #ffc107;
    --animation-base: cubic-bezier(0.165, 0.84, 0.44, 1);
    --font-base: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-serif: 'Bricolage', sans-serif;
    --font-weight-regular: 400;
    --font-weight-medium: 600;
    --font-weight-bold: 700;
    --content-font-size: 20px;
    --space-section: 80px;
    --page-content-width: 760px;
    --page-layout-spacing: 240px;
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --primary-text-color-invert: rgb(250 250 250 / 95%);
    --secondary-text-color-invert: rgb(250 250 250 / 75%);
    --tertiary-text-color-invert: rgb(250 250 250 / 55%);
}


/* --- Baza typograficzna hero (zeskopowana; NIE dotyka tresci Hanoi) --- */
.vincent-scope {
    color: var(--primary-text-color);
    font-family: var(--gh-font-body, var(--font-base));
    font-size: var(--content-font-size);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-wrap: pretty;
    width: 100%;
}
.vincent-scope figure { margin: 0; }
.vincent-scope p { margin: 0; }
.vincent-scope img { display: block; max-width: 100%; height: auto; }
.vincent-scope a { color: var(--primary-text-color); text-decoration: none; transition: color 0.1s var(--animation-base); }
.vincent-scope a:hover { color: var(--brand-color); }
.vincent-scope h1 { margin: 0; color: var(--primary-text-color); }
.vincent-scope time { color: inherit; }
.vincent-scope .icon { width: 16px; height: 16px; fill: currentColor; }

/* --- Siatka kg-canvas (tylko dla naglowka hero) --- */
.vincent-scope .kg-canvas {
    display: grid;
    grid-template-columns:
        [full-start] minmax(5vw,auto)
        [wide-start] minmax(auto,var(--page-layout-spacing))
        [main-start] min(var(--page-content-width),calc(100% - 10vw))
        [main-end] minmax(auto,var(--page-layout-spacing))
        [wide-end] minmax(5vw,auto)
        [full-end];
}
.vincent-scope .kg-canvas > * {
    grid-column: main-start/main-end;
}
.vincent-scope .kg-canvas.custom-landing-page > .single-cta-wrapper {
    max-width: 100%;
}
.vincent-scope .kg-width-wide {
    grid-column: wide-start/wide-end;
}
.vincent-scope .kg-width-full {
    grid-column: full-start/full-end;
}
.vincent-scope .kg-canvas .kg-width-content {
    grid-column: main-start/main-end;
}
.vincent-scope .kg-canvas .kg-side-bar {
    grid-column: wide-start/main-start;
    position: absolute;
    top: 0;
    bottom: 0;
    width: calc(100%);
    
}
.vincent-scope .kg-width-full img {
    width: 100%;
}

/* --- Vincent: typography.css (klasy pomocnicze hero) --- */
.vincent-scope .hero-title, .vincent-scope .gh-content.custom-hero-intro > h1 {
    font-size: 80px;
    line-height: 1;
    font-weight: 700;
    font-family: var(--gh-font-heading, var(--font-serif));
    text-align: center;
    max-width: 10ch;
}
.vincent-scope .hero-desc {
    color: var(--primary-text-color);
    text-align: center;
}
.vincent-scope .elegant-title {
    font-weight: 700;
    font-family: var(--gh-font-heading, var(--font-serif));
}
.vincent-scope h1, .vincent-scope .h1 {
    font-size: 48px;
    line-height: 56px;
    font-weight: var(--font-weight-bold);
}
.vincent-scope h2, .vincent-scope .h2 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: var(--font-weight-bold);
}
.vincent-scope h3, .vincent-scope .h3 {
    font-size: 24px;
    line-height: 1.25;
    font-weight: var(--font-weight-medium);
}
.vincent-scope h4, .vincent-scope .h4 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: var(--font-weight-medium);
}
.vincent-scope h5, .vincent-scope .h5, .vincent-scope h6, .vincent-scope .h6 {
    font-size: 16px;
    line-height: 1.5;
    font-weight: var(--font-weight-medium);
}
.vincent-scope .section-title {
    font-size: 28px;
    font-weight: var(--font-weight-bold);
    font-family: var(--gh-font-heading, var(--font-serif));
    line-height: 1.25;
    
}
.vincent-scope .body-large {
    font-size: 24px;
    font-weight: var(--font-weight-regular);
    line-height: 1.25;
}
.vincent-scope .body-1 {
    font-size: 16px;
    font-weight: var(--font-weight-regular);
    line-height: 1.5;
}
.vincent-scope .sub-heading-large {
    font-size: calc(var(--content-font-size) + 4px);
    font-weight: var(--font-weight-regular);
    line-height: 1.35;
}
.vincent-scope .sub-heading {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    line-height: 20px;
}
.vincent-scope .label, .vincent-scope .label.single-excerpt {
    font-size: 14px;
    font-weight: var(--font-weight-regular);
    line-height: 1.5;
}
@media (max-width: 767px) {
.vincent-scope .sub-heading-large {
        font-size: 20px;
        line-height: 28px;
    }
.vincent-scope .hero-title, .vincent-scope .gh-content.custom-hero-intro > h1 {
        font-size: 48px;
        line-height: 1.25;
        max-width: 100%;
    }
}

/* --- Vincent: single.css (naglowek/hero posta) --- */
.vincent-scope .single-header {
    margin-bottom: 56px;
}
.vincent-scope .single-header-narrow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 48px;
    align-items: center;
    border-bottom: var(--border-separator);
    padding-bottom: 80px;
    margin-bottom: 40px;
}
.vincent-scope .single-meta {
    color: var(--tertiary-text-color);
    align-items: center;
    display: flex;
    justify-content: center;
    font-size: 15px;
    flex-wrap: wrap;
    text-transform: uppercase;
    width: 100%;
    row-gap: 8px;
}
.vincent-scope .single-eyebrow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}
.vincent-scope .meta-top {
    font-size: 12px;
}
.vincent-scope .meta-tags {
    color: var(--primary-text-color);
    font-weight: 600;
    margin-bottom: 16px;
}
.vincent-scope .single-visibility, .vincent-scope .single-line-item {
    align-items: center;
    display: flex;
    gap: 4px;
}
.vincent-scope .single-visibility .icon {
    color: var(--brand-color);
}
.vincent-scope .post-full-meta-tag .icon {
    height: 16px;
    width: 16px;
}
.vincent-scope .meta-featured .icon {
    color: var(--orange-color);
}
.vincent-scope .meta-link .icon {
    color: var(--tertiary-text-color);
}
.vincent-scope .meta-link .post-tag {
    color: inherit;
}
.vincent-scope .single-meta-item {
    display: flex;
    align-items: center;
    line-height: 1;
}
.vincent-scope .single-cta-wrapper {
    position: relative;
}
.vincent-scope .gradient-mask {
    background: linear-gradient(0deg,var(--background-color) 0, var(--background-color) 20%, rgba(248, 248, 248, 0) 100%);
    height: 400px;
    width: 100vw;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    display: block;
}
.vincent-scope .single-cta, .vincent-scope .single-cta-base {
    margin-bottom: calc(var(--space-section) / 2) !important;
    padding: 32px 56px 32px;
    text-align: center;
    border-radius: var(--radius-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.vincent-scope .single-cta {
    background-color: var(--hero-background-color);
}
.vincent-scope .single-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 16px;
    margin-bottom: 8px;
    background-color: hsl(from var(--brand-color) h s l / .08);
}
.vincent-scope .single-cta-icon .icon {
    width: 52px;
    height: 52px;
    color: var(--brand-color);
}
.vincent-scope .button-post-paid {
    margin: 8px 0;
}
.vincent-scope .single-meta-item + .single-meta-item::before {
    content: "✲"; 
    padding: 0 1.2em 0 1.2em;
    font-size: .6em;
    opacity: .3;
    line-height: 1;
}
.vincent-scope .meta-top .single-meta-item + .single-meta-item::before {
    padding: 0 0.8em;
    opacity: .5;

}
.vincent-scope .single-title {
    margin-bottom: 0;
    letter-spacing: -1px;
    font-size: clamp(32px, 3vw + 12px, 64px);
    line-height: 1.125;
    font-family: var(--gh-font-heading, var(--font-serif));
    width: 100%;
}
.vincent-scope .single-excerpt {
    margin-top: 16px;
    color: var(--secondary-text-color);
    max-width: var(--page-content-width);
    
}
.vincent-scope .single-media {
    margin-top: 45px;
    margin-bottom: 0;
}
.vincent-scope .single-media .video-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vincent-scope .single-media img, .vincent-scope .video-cover {
    width: 100%;
}
.vincent-scope .single-media:not(.kg-width-full) img, .vincent-scope .single-media:not(.kg-width-full) .video-cover, .vincent-scope .media-wrapper img {
    border-radius: var(--radius-medium);
}
.vincent-scope .single-cta-desc {
    color: var(--tertiary-text-color);
}
.vincent-scope .tiers-name {
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
    color: var(--brand-color);
}
.vincent-scope .tiers-underline {
    position: absolute;
    bottom: -38px;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
}
.vincent-scope .tiers-underline path {
    fill: none;
    stroke: var(--brand-color);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-scribble 1.5s cubic-bezier(0.68, -0.3, 0.32, 1.3) forwards;
    opacity: 0.4;
}
@keyframes draw-scribble {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}
.vincent-scope .single-cta-button {
    margin-bottom: 10px;
    font-weight: 800 !important;
    font-size: 14px;
}
.vincent-scope .single-cta-footer {
    font-size: 14px;
    font-weight: 400 !important;
}
.vincent-scope .single-footer {
    display: flex;
    align-items: center;
    margin-top: 45px;
}
.vincent-scope .single-footer-left, .vincent-scope .single-footer-right {
    flex: 2;
    display: flex;
}
.vincent-scope .single-footer-right {
    justify-content: flex-end;
}
.vincent-scope .single-footer-middle {
    display: flex;
flex-direction: column;
}
.vincent-scope .single-footer-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 32px;
    width: 100%;
    max-width: var(--page-content-width);
    grid-column: wide-start/main-start !important;
    position: absolute;
    left: 0;
    top: 8px;
    min-width: 120px;
    margin-top: 0 !important;
}
.vincent-scope .single-footer-title {
    margin-bottom: 10px;
    font-size: 18px;
}
.vincent-scope .single-footer-top + .single-footer-bottom {
    margin-top: 20px;
}
.vincent-scope .single-content-subscription {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    text-align: center;
    background-color: var(--background-color);
    padding: 32px;
    margin-top: 40px;
}
.vincent-scope .single-content-subscription-title {
    font-size: 25px;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
}
.vincent-scope .with-feature-image .hero-wrapper {
    flex: 1 1 0;
}
.vincent-scope .media-wrapper {
    flex: 1 1 0;
}
.vincent-scope .tiny-image-wrap {
    display: flex;
    gap: 24px;
    flex-direction: row-reverse;
    margin-bottom: 40px;
    align-items: center;
}
.vincent-scope .expanded-image-wrap {
    display: flex;
    gap: 24px;
    flex-direction: row-reverse;
    margin-bottom: 40px;
    align-items: center;
}
.vincent-scope .expanded-image-wrap.reverse {
    flex-direction: row;
}
.vincent-scope .expanded-image-wrap.reverse .single-media {
    rotate: 3deg;
    margin-left: 24px;
}
.vincent-scope .kg-canvas .expanded-image-wrap {
    grid-column: wide;
}
.vincent-scope .expanded-image-wrap .single-media {
    width: 38%;
    margin-top: 0;
}
.vincent-scope .kg-canvas .single-heading-wrap {
    grid-column: wide;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: 100%;
}
.vincent-scope .expanded-image-wrap .single-heading-wrap {
    flex: 1 1 0;
    text-align: left;
    align-items: flex-start;
}
.vincent-scope .expanded-image-wrap .single-meta {
    justify-content: flex-start;
}
.vincent-scope .tiny-image-wrap .single-media {
    width: 33%;
    margin-top: 0;
}
.vincent-scope .book-meta {
    margin-top: 12px;
}
.vincent-scope .page-header-series {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.vincent-scope .page-header-wrapper {
    max-width: var(--page-content-width);
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
}
.vincent-scope .hero-wrapper-series {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
    max-width: var(--page-content-width);
    margin: 0 auto;
}
.vincent-scope .hero-header-series {
    text-align: center;
}
.vincent-scope .hero-desc-series {
    text-align: center;
    color: var(--secondary-text-color);
}
.vincent-scope .separator {
    grid-column: main;
    height: 2px;
    background-color: var(--divider-color);
    margin-top: 48px;
}
.vincent-scope .separator .icon {
    width: 16px;
    height: 16px;
    color: var(--tertiary-text-color);
    opacity: 0.5;
}
.vincent-scope .latest-posts-title {
    margin-bottom: 28px;
    text-align: center;
}
.vincent-scope .section-header-title {
    text-align: center;
}
@media (max-width: 1023px) {
.vincent-scope .page-header.with-feature-image {
        grid-template-columns: 1fr;
        gap: 64px;
    }
.vincent-scope .page-header-wrapper {
        max-width: 100%;
        order: 2;
    }
}
@media (max-width: 991px) {
.vincent-scope .single-footer-top {
        grid-column: main !important;
        position: relative;
        grid-row: auto;
        min-width: 100%;
        width: 100%;
        margin-top: 40px !important;
        margin-bottom: 40px !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 24px;
    }
}
@media (max-width: 767px) {
.vincent-scope .single-header {
        margin-bottom: 30px;
    }
.vincent-scope .single-cta {
        padding: 30px 20px 40px;
    }
.vincent-scope .single-media {
        margin-top: 30px;
    }
.vincent-scope .single-header-narrow {
        grid-template-columns: 1fr;
    }
.vincent-scope .with-feature-image {
        flex-direction: column-reverse;
    }
.vincent-scope .media-wrapper {
        margin-bottom: 20px;
    }
.vincent-scope .with-feature-image .hero-wrapper {
        width: 100%;
    }
.vincent-scope .tiny-image-wrap {
        flex-direction: column-reverse;
    }
.vincent-scope .tiny-image-wrap .single-media {
        width: 50%;
    }
.vincent-scope .expanded-image-wrap {
        flex-direction: column;
    }
.vincent-scope .expanded-image-wrap.reverse {
        flex-direction: column;
        align-items: flex-start;
    }
.vincent-scope .expanded-image-wrap.reverse .single-media {
        max-width: 90%;
        margin-top: 24px;
        margin-left: 16px;
    }
.vincent-scope .expanded-image-wrap .single-media {
        width: 100%;
    }
.vincent-scope .hero-wrapper-series {
        padding: 0;
    }
.vincent-scope .single-cta, .vincent-scope .single-cta-base {
        padding: 16px;
    }
}

/* --- Vincent: blur-load.css --- */
.vincent-scope .blur-load {
    position: relative;
    overflow: hidden;
}
.vincent-scope .blur-load:not(.loaded) {
    border-radius: var(--radius-medium);
    height: 100%;
}
.vincent-scope .blur-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(16px);
    transform: scale(1.1);
    opacity: 1;
    transition: opacity 400ms ease-out;
    z-index: 1;
}
.vincent-scope .full-img {
    position: relative;
    opacity: 0;
    transition: opacity 400ms ease-in;
    z-index: 2;
}
.vincent-scope .blur-load.loaded .blur-img {
    opacity: 0;
    pointer-events: none;
}
.vincent-scope .blur-load.loaded .full-img {
    opacity: 1;
}
.vincent-scope .blur-load::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    animation: shimmer 2s infinite;
    z-index: 3;
    pointer-events: none;
}
.vincent-scope .blur-load.loaded::before {
    display: none;
}
@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
@supports not (filter: blur(20px)) {
.vincent-scope .blur-img {
        display: none;
    }
.vincent-scope .full-img {
        opacity: 1;
    }
}
@media (prefers-reduced-motion: reduce) {
.vincent-scope .blur-img, .vincent-scope .full-img {
        transition: none;
    }
.vincent-scope .blur-load::before {
        animation: none;
    }
}

/* --- Vincent: klasy kontrastu tekstu --- */
.vincent-scope .text-black {
    color: #000000 !important;
}
.vincent-scope .text-white {
    color: #ffffff !important;
}
.vincent-scope .text-black:not(.footer-inner-main) *, .vincent-scope .text-white:not(.footer-inner-main) * {
    color: inherit;
}
.vincent-scope .text-black .u-permalink, .vincent-scope .text-white .u-permalink {
    color: inherit;
}
.vincent-scope .text-black .icon, .vincent-scope .text-white .icon {
    fill: currentColor;
}

/* --- Kolorowy hero + adaptacja do Hanoi --- */
.vincent-scope .single-header.hero-wrapper {
    background-color: var(--hero-background-color);
    transition: background-color 0.3s ease;
    margin-top: 0;
    padding-top: 56px;
    padding-bottom: 24px;
}
.vincent-scope .single-header.hero-wrapper.full { padding-bottom: 0; }
.vincent-scope .kg-width-full figcaption { margin-bottom: 12px; }
.vincent-scope .hero-wrapper.text-white {
    --primary-text-color: var(--primary-text-color-invert);
    --secondary-text-color: var(--secondary-text-color-invert);
    --tertiary-text-color: var(--tertiary-text-color-invert);
}
.vincent-scope .single-media figcaption {
    color: var(--tertiary-text-color);
    font-size: 14px;
    text-align: center;
    margin-top: 8px;
}
.vincent-scope .single-header { margin-bottom: 0; }
.vincent-scope { padding-top: 32px; padding-bottom: 24px; }

/* FIX: elementy siatki hero nie moga byc rozpychane przez min-content obrazka
   (naturalna szerokosc 1920px wypychala figure poza kolumne w prawo na
   szerokich ekranach). min-width:0 pozwala grid itemowi trzymac sie swojej
   kolumny — obrazek hero jest zawsze idealnie wycentrowany. */
.vincent-scope .kg-canvas > * { min-width: 0; }
.vincent-scope .single-media { width: 100%; max-width: 100%; box-sizing: border-box; }
.vincent-scope .single-media img { max-width: 100%; }

/* ==========================================================================
   Warianty COLOR: kolor hero obejmuje rowniez obszar pod logo i menu Hanoi.
   Wykorzystujemy natywny mechanizm Hanoi "header-overlay" (uzywany przez
   szablon Post Hero): header staje sie przezroczysty i lezy NA kolorowym hero.
   JS (vincent-hero.js) ustawia --vincent-hero-color + klase kontrastu na body.
   ========================================================================== */
.vincent-color-hero .vincent-scope--color {
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 24px;
}
.vincent-color-hero .vincent-scope--color .single-header.hero-wrapper {
    /* Header Hanoi (absolute) ma ~120-140px wysokosci — hero podchodzi pod niego */
    padding-top: clamp(128px, 16vh, 176px);
    padding-bottom: 32px;
}
.vincent-color-hero .vincent-scope--color .single-header.hero-wrapper.full { padding-bottom: 0; }

/* Kontrast tekstu headera Hanoi na dynamicznym tle.
   Domyslnie (zanim JS wyliczy kolor) header dziedziczy kolor tekstu motywu,
   zeby nic nie migalo bialym na jasnym tle. */
body.vincent-color-hero.header-overlay .c-header {
    background-color: transparent;
    color: var(--color-text);
    transition: color 0.3s ease;
}
body.vincent-color-hero.vincent-hero-text-white .c-header {
    --color-text: #fff;
    color: #fff;
}
body.vincent-color-hero.vincent-hero-text-white .c-header .c-header-logo__link { color: #fff; }
body.vincent-color-hero.vincent-hero-text-black .c-header {
    --color-text: #0f0f0f;
    color: #0f0f0f;
}
body.vincent-color-hero.vincent-hero-text-black .c-header .c-header__controls {
    --header-surface-bg: color-mix(in srgb, #000 8%, transparent);
    --header-surface-border: color-mix(in srgb, #000 14%, transparent);
    --header-surface-filter: none;
    --header-surface-hover: color-mix(in srgb, #000 10%, transparent);
    --header-surface-current: color-mix(in srgb, #000 16%, transparent);
}

@media (max-width: 767px) {
    .vincent-scope { padding-top: 16px; }
    .vincent-scope .single-header.hero-wrapper { padding-top: 32px; }
    .vincent-color-hero .vincent-scope--color .single-header.hero-wrapper {
        padding-top: 112px;
    }
}
