:root {
    --cn-bg: #05070a;
    --cn-bg-soft: #0b1118;
    --cn-panel: #0d1721;
    --cn-line: rgba(255, 255, 255, .14);
    --cn-text: #f7fbff;
    --cn-muted: #9fb0bf;
    --cn-blue: #009fe3;
    --cn-blue-deep: #0066a6;
    --cn-orange: #f58220;
    --cn-accent: #009fe3;
    --cn-accent-dark: #0066a6;
    --cn-max: 1440px;
    --cn-pad: clamp(20px, 4vw, 64px);
    --cn-radius: 28px;
    --cn-ease: cubic-bezier(.16, 1, .3, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    background: var(--cn-bg)
}

body {
    margin: 0;
    background: var(--cn-bg);
    color: var(--cn-text);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    overflow-x: hidden
}

body.cn-menu-open {
    overflow: hidden
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

button, input, textarea, select {
    font: inherit
}

.cn-shell {
    width: min(100%, var(--cn-max));
    margin-inline: auto;
    padding-inline: var(--cn-pad)
}

.cn-skip-link {
    position: fixed;
    left: 16px;
    top: -100px;
    background: #fff;
    color: #000;
    padding: 12px 16px;
    z-index: 9999
}

.cn-skip-link:focus {
    top: 16px
}

.cn-progress {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 2px;
    z-index: 1001;
    pointer-events: none
}

.cn-progress span {
    display: block;
    height: 100%;
    width: 100%;
    background: var(--cn-accent);
    transform: scaleX(0);
    transform-origin: left
}

.cn-header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    padding: 18px 0;
    transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
    border-bottom: 1px solid transparent
}

.cn-header.is-scrolled {
    background: rgba(5, 7, 10, .86);
    backdrop-filter: blur(18px);
    border-color: var(--cn-line)
}

.cn-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px
}

.cn-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1002;
    font-weight: 850;
    letter-spacing: -.04em
}

.custom-logo {
    max-height: 50px;
    width: auto
}

.cn-brand-mark {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    font-size: 13px;
    letter-spacing: -.06em
}

.cn-brand-text {
    font-size: 18px
}

.cn-nav {
    display: flex;
    align-items: center;
    gap: 28px
}

.cn-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 6px
}

.cn-nav-list li {
    position: relative
}

.cn-nav-list a {
    display: block;
    padding: 10px 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
    transition: color .2s ease
}

.cn-nav-list a:hover, .cn-nav-list .current-menu-item > a {
    color: #fff
}

.cn-nav-list .sub-menu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    display: none;
    list-style: none;
    padding: 10px;
    margin: 0;
    background: #07111a;
    border: 1px solid var(--cn-line);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4)
}

.cn-nav-list li:hover > .sub-menu, .cn-nav-list li:focus-within > .sub-menu {
    display: block
}

.cn-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: var(--cn-accent);
    color: #0a0d0b;
    padding: 12px 16px 12px 18px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px
}

.cn-nav-cta span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0a0d0b;
    color: #fff
}

.cn-menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: #fff;
    padding: 8px;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1002
}

.cn-menu-icon {
    width: 30px;
    height: 18px;
    position: relative;
    display: block
}

.cn-menu-icon i {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform .3s ease, top .3s ease
}

.cn-menu-icon i:first-child {
    top: 4px
}

.cn-menu-icon i:last-child {
    top: 13px
}

.cn-menu-toggle[aria-expanded="true"] .cn-menu-icon i:first-child {
    top: 9px;
    transform: rotate(45deg)
}

.cn-menu-toggle[aria-expanded="true"] .cn-menu-icon i:last-child {
    top: 9px;
    transform: rotate(-45deg)
}

.cn-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 90px;
    background: radial-gradient(circle at 75% 30%, rgba(0, 159, 227, .18), transparent 25%), linear-gradient(180deg, #0a0e0c 0%, #080b0a 100%)
}

.cn-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(to bottom, black, transparent 78%)
}

.cn-serpent-field {
    position: absolute;
    inset: 0;
    pointer-events: none
}

.cn-serpent-field svg {
    width: 100%;
    height: 100%
}

.cn-serpent-path {
    fill: none;
    stroke-linecap: round
}

.cn-serpent-path-back {
    stroke: rgba(255, 255, 255, .06);
    stroke-width: 58
}

.cn-serpent-path-front {
    stroke: var(--cn-accent);
    stroke-width: 4;
    stroke-dasharray: 10 18;
    animation: cnSnake 14s linear infinite;
    filter: drop-shadow(0 0 13px rgba(0, 159, 227, .65))
}

@keyframes cnSnake {
    to {
        stroke-dashoffset: -280
    }
}

.cn-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none
}

.cn-orb-one {
    width: 190px;
    height: 190px;
    right: 12%;
    top: 22%;
    background: radial-gradient(circle at 35% 35%, #fff 0 1%, #009fe3 3%, #0066a6 48%, #07111a 72%);
    box-shadow: 0 0 80px rgba(0, 159, 227, .22);
    opacity: .85
}

.cn-orb-two {
    width: 52px;
    height: 52px;
    left: 44%;
    bottom: 19%;
    background: var(--cn-orange);
    box-shadow: 0 0 35px rgba(245, 130, 32, .7)
}

.cn-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns:minmax(0, 1.45fr) minmax(280px, .55fr);
    gap: clamp(50px, 9vw, 150px);
    align-items: end
}

.cn-kicker, .cn-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 800;
    color: var(--cn-accent)
}

.cn-hero h1 {
    margin: 18px 0 28px;
    font-size: clamp(68px, 10.3vw, 168px);
    line-height: .78;
    letter-spacing: -.085em;
    font-weight: 900;
    max-width: 960px
}

.cn-hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .58)
}

.cn-hero-lead {
    max-width: 590px;
    font-size: clamp(18px, 2vw, 26px);
    color: #b9c2bd;
    line-height: 1.35
}

.cn-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px
}

.cn-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 14px 15px 14px 22px;
    border-radius: 999px;
    font-weight: 800;
    min-width: 205px;
    transition: transform .3s var(--cn-ease), background .2s ease
}

.cn-button:hover {
    transform: translateY(-3px)
}

.cn-button b {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-weight: 500
}

.cn-button-primary {
    background: var(--cn-accent);
    color: #0c0f0d
}

.cn-button-primary b {
    background: #0c0f0d;
    color: #fff
}

.cn-button-ghost {
    border: 1px solid var(--cn-line);
    background: rgba(255, 255, 255, .03)
}

.cn-button-ghost b {
    background: #fff;
    color: #000
}

.cn-button-light {
    background: #fff;
    color: #000
}

.cn-button-light b {
    background: #0a0d0b;
    color: #fff
}

.cn-hero-status {
    border-top: 1px solid var(--cn-line)
}

.cn-status-label {
    padding: 13px 0;
    color: var(--cn-muted);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase
}

.cn-status-card {
    display: grid;
    grid-template-columns:32px 1fr auto auto;
    gap: 12px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--cn-line);
    transition: padding .3s ease, color .3s ease
}

.cn-status-card:hover {
    padding-left: 10px;
    color: var(--cn-accent)
}

.cn-status-card span, .cn-status-card em {
    font-size: 11px;
    color: var(--cn-muted);
    font-style: normal
}

.cn-status-card strong {
    font-size: 16px
}

.cn-status-card b {
    font-weight: 400
}

.cn-scroll-cue {
    position: absolute;
    left: var(--cn-pad);
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--cn-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em
}

.cn-scroll-cue i {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--cn-muted);
    position: relative
}

.cn-scroll-cue i:after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    border-right: 1px solid var(--cn-muted);
    border-bottom: 1px solid var(--cn-muted);
    right: 0;
    top: -3px;
    transform: rotate(45deg)
}

.cn-section {
    padding: clamp(90px, 12vw, 190px) 0
}

.cn-manifesto {
    background: #f5f8fa;
    color: #07111a
}

.cn-manifesto-grid {
    display: grid;
    grid-template-columns:1fr 3fr;
    gap: 60px
}

.cn-section-number {
    font-size: 11px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #7a837e
}

.cn-manifesto h2, .cn-section-head h2, .cn-story h2 {
    font-size: clamp(48px, 7vw, 108px);
    line-height: .92;
    letter-spacing: -.07em;
    margin: 10px 0 34px
}

.cn-big-copy {
    font-size: clamp(23px, 3.5vw, 52px);
    line-height: 1.14;
    letter-spacing: -.04em;
    max-width: 1100px
}

.cn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    font-weight: 800;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px
}

.cn-text-link span {
    transition: transform .25s ease
}

.cn-text-link:hover span {
    transform: translate(4px, -4px)
}

.cn-flow {
    background: var(--cn-bg)
}

.cn-section-head {
    display: grid;
    grid-template-columns:1fr 2fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 70px
}

.cn-section-head h2 {
    margin: 0
}

.cn-flow-grid {
    display: grid;
    grid-template-columns:repeat(12, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 14px
}

.cn-feature-card {
    grid-column: span 5;
    background: var(--cn-panel);
    border: 1px solid var(--cn-line);
    border-radius: var(--cn-radius);
    padding: 28px;
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: border-color .3s ease, background .3s ease, transform .2s ease;
    transform-style: preserve-3d
}

.cn-feature-card:after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    right: -80px;
    bottom: -100px;
    border: 1px solid rgba(0, 159, 227, .38);
    transition: transform .55s var(--cn-ease), background .35s ease
}

.cn-feature-card:hover {
    border-color: rgba(0, 159, 227, .55);
    background: #0a2030
}

.cn-feature-card:hover:after {
    transform: scale(1.5);
    background: rgba(0, 159, 227, .10)
}

.cn-feature-card-large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 674px
}

.cn-feature-card-wide {
    grid-column: span 7
}

.cn-feature-index {
    font-size: 11px;
    color: var(--cn-muted)
}

.cn-feature-icon {
    font-size: clamp(40px, 6vw, 88px);
    color: var(--cn-accent);
    align-self: flex-end
}

.cn-feature-card p {
    margin: 0 0 6px;
    color: var(--cn-accent);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: .16em
}

.cn-feature-card h3 {
    font-size: clamp(30px, 4vw, 68px);
    line-height: .94;
    letter-spacing: -.055em;
    margin: 0 0 18px;
    max-width: 560px
}

.cn-feature-card > div:last-child > span {
    color: var(--cn-muted);
    font-size: 14px
}

.cn-story {
    background: #07111a
}

.cn-story-grid {
    display: grid;
    grid-template-columns:1fr 1.25fr;
    gap: clamp(60px, 10vw, 160px)
}

.cn-story-sticky {
    align-self: start;
    position: sticky;
    top: 130px
}

.cn-story h2 {
    font-size: clamp(48px, 6vw, 90px)
}

.cn-story-stack {
    display: grid;
    gap: 35px
}

.cn-quote-card {
    background: #f5f8fa;
    color: #07111a;
    border-radius: var(--cn-radius);
    padding: clamp(28px, 5vw, 70px);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.cn-quote-card-shift {
    transform: translateX(-8%)
}

.cn-quote-mark {
    font-size: 84px;
    line-height: .6;
    color: var(--cn-accent-dark)
}

.cn-quote-card blockquote {
    font-size: clamp(24px, 3vw, 46px);
    letter-spacing: -.04em;
    line-height: 1.13;
    margin: 50px 0
}

.cn-quote-card footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(0, 0, 0, .15);
    padding-top: 20px
}

.cn-quote-card footer span {
    color: #66706a
}

.cn-sponsor-section {
    background: #f5f8fa;
    color: #07111a;
    overflow: hidden
}

.cn-sponsor-marquee {
    margin: 70px calc(var(--cn-pad) * -1) 25px;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, .15);
    border-bottom: 1px solid rgba(0, 0, 0, .15);
    padding: 26px 0
}

.cn-sponsor-track {
    display: flex;
    width: max-content;
    gap: 70px;
    animation: cnMarquee 26s linear infinite
}

.cn-sponsor-track span {
    font-size: clamp(34px, 5vw, 78px);
    font-weight: 900;
    letter-spacing: -.06em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, .55)
}

@keyframes cnMarquee {
    to {
        transform: translateX(-50%)
    }
}

.cn-final-cta {
    background: linear-gradient(110deg, var(--cn-blue-deep), var(--cn-blue) 62%, var(--cn-orange));
    color: #fff;
    padding: clamp(100px, 14vw, 220px) 0;
    position: relative;
    overflow: hidden
}

.cn-final-cta:after {
    content: "";
    position: absolute;
    width: 70vw;
    height: 70vw;
    border: 1px solid rgba(0, 0, 0, .18);
    border-radius: 50%;
    right: -25vw;
    top: -45vw
}

.cn-final-cta-inner {
    position: relative;
    z-index: 1
}

.cn-final-cta .cn-eyebrow {
    color: #fff
}

.cn-final-cta h2 {
    font-size: clamp(70px, 13vw, 210px);
    line-height: .74;
    letter-spacing: -.085em;
    margin: 24px 0 65px
}

.cn-final-cta h2 span {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .75)
}

.cn-footer {
    background: #020305;
    border-top: 1px solid var(--cn-line);
    padding: 80px 0 24px
}

.cn-footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    gap: 50px
}

.cn-footer-brand {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -.07em
}

.cn-footer p, .cn-footer a {
    color: var(--cn-muted)
}

.cn-footer h3 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #fff
}

.cn-footer-links {
    list-style: none;
    padding: 0;
    margin: 0
}

.cn-footer-links li {
    margin: 8px 0
}

.cn-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 50px;
    margin-top: 60px;
    border-top: 1px solid var(--cn-line);
    font-size: 12px;
    color: var(--cn-muted)
}

.cn-page-wrap {
    padding: 170px 0 120px;
    min-height: 75vh
}

.cn-page-header {
    max-width: 1100px;
    margin-bottom: 70px
}

.cn-page-header h1 {
    font-size: clamp(56px, 9vw, 140px);
    line-height: .85;
    letter-spacing: -.075em;
    margin: 10px 0
}

.cn-article-hero {
    border-radius: var(--cn-radius);
    overflow: hidden;
    margin-bottom: 60px
}

.cn-prose {
    max-width: 900px;
    font-size: 18px;
    color: #c4ccc8
}

.cn-prose h2, .cn-prose h3, .cn-prose h4 {
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1.05
}

.cn-prose h2 {
    font-size: clamp(36px, 5vw, 64px);
    margin-top: 70px
}

.cn-prose a {
    text-decoration: underline;
    text-decoration-color: var(--cn-accent);
    text-underline-offset: 4px
}

.cn-prose blockquote {
    border-left: 3px solid var(--cn-accent);
    padding-left: 24px;
    margin: 40px 0;
    font-size: 1.3em;
    color: #fff
}

.cn-prose table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto
}

.cn-prose th, .cn-prose td {
    padding: 14px;
    border-bottom: 1px solid var(--cn-line);
    text-align: left
}

.cn-post-grid {
    display: grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap: 20px
}

.cn-post-card {
    background: var(--cn-panel);
    border: 1px solid var(--cn-line);
    border-radius: var(--cn-radius);
    overflow: hidden
}

.cn-post-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    display: block
}

.cn-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--cn-ease)
}

.cn-post-card:hover .cn-post-thumb img {
    transform: scale(1.04)
}

.cn-post-card-body {
    padding: 30px
}

.cn-post-card h2 {
    font-size: clamp(28px, 4vw, 54px);
    line-height: .95;
    letter-spacing: -.05em
}

.cn-post-meta {
    color: var(--cn-accent);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .15em
}

.cn-404 {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 150px 0
}

.cn-404 h1 {
    font-size: clamp(70px, 13vw, 190px);
    letter-spacing: -.08em;
    line-height: .78;
    margin: 20px 0 60px
}

[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .8s var(--cn-ease), transform .8s var(--cn-ease)
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none
}

@media (max-width: 1100px) {
    .cn-menu-toggle {
        display: flex
    }

    .cn-nav {
        position: fixed;
        inset: 0;
        background: #05070a;
        padding: 115px var(--cn-pad) 40px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        transform: translateY(-105%);
        transition: transform .55s var(--cn-ease);
        overflow: auto
    }

    .cn-nav.is-open {
        transform: none
    }

    .cn-nav-list {
        display: block
    }

    .cn-nav-list a {
        font-size: clamp(30px, 8vw, 64px);
        line-height: 1;
        padding: 12px 0;
        font-weight: 850;
        letter-spacing: -.05em
    }

    .cn-nav-list .sub-menu {
        position: static;
        display: block;
        background: none;
        border: 0;
        box-shadow: none;
        padding: 4px 0 10px 18px
    }

    .cn-nav-list .sub-menu a {
        font-size: 18px;
        color: var(--cn-muted);
        padding: 6px 0
    }

    .cn-nav-cta {
        font-size: 18px;
        padding: 16px 18px 16px 24px
    }

    .cn-hero-grid {
        grid-template-columns:1fr;
        gap: 70px
    }

    .cn-hero-status {
        max-width: 640px
    }

    .cn-flow-grid {
        grid-template-columns:repeat(2, 1fr)
    }

    .cn-feature-card, .cn-feature-card-large, .cn-feature-card-wide {
        grid-column: span 1;
        grid-row: auto;
        min-height: 360px
    }

    .cn-story-grid {
        grid-template-columns:1fr
    }

    .cn-story-sticky {
        position: static
    }

    .cn-quote-card-shift {
        transform: none
    }
}

@media (max-width: 720px) {
    :root {
        --cn-radius: 20px
    }

    .cn-header {
        padding: 12px 0
    }

    .cn-brand-text {
        display: none
    }

    .cn-brand-mark {
        width: 42px;
        height: 42px
    }

    .cn-menu-toggle-label {
        display: none
    }

    .cn-hero {
        padding-top: 130px;
        align-items: flex-start
    }

    .cn-hero h1 {
        font-size: clamp(58px, 20vw, 92px);
        margin-top: 28px
    }

    .cn-hero-lead {
        font-size: 18px;
        max-width: 90%
    }

    .cn-actions {
        display: grid
    }

    .cn-button {
        width: 100%
    }

    .cn-orb-one {
        width: 105px;
        height: 105px;
        right: -10px;
        top: 19%
    }

    .cn-orb-two {
        width: 26px;
        height: 26px
    }

    .cn-serpent-path-back {
        stroke-width: 36
    }

    .cn-scroll-cue {
        display: none
    }

    .cn-hero-status {
        margin-top: 10px
    }

    .cn-status-card {
        grid-template-columns:26px 1fr auto
    }

    .cn-status-card em {
        display: none
    }

    .cn-manifesto-grid, .cn-section-head {
        grid-template-columns:1fr;
        gap: 32px
    }

    .cn-manifesto h2, .cn-section-head h2 {
        font-size: clamp(46px, 15vw, 74px)
    }

    .cn-big-copy {
        font-size: 27px
    }

    .cn-flow-grid {
        grid-template-columns:1fr
    }

    .cn-feature-card, .cn-feature-card-large, .cn-feature-card-wide {
        grid-column: 1;
        min-height: 310px
    }

    .cn-feature-card h3 {
        font-size: 42px
    }

    .cn-story h2 {
        font-size: 56px
    }

    .cn-quote-card {
        min-height: 390px
    }

    .cn-quote-card blockquote {
        font-size: 27px
    }

    .cn-quote-card footer {
        display: grid
    }

    .cn-sponsor-track {
        gap: 36px
    }

    .cn-final-cta h2 {
        font-size: clamp(66px, 22vw, 112px)
    }

    .cn-footer-grid {
        grid-template-columns:1fr
    }

    .cn-footer-bottom {
        display: grid
    }

    .cn-post-grid {
        grid-template-columns:1fr
    }

    .cn-page-wrap {
        padding-top: 130px
    }

    .cn-page-header {
        margin-bottom: 45px
    }

    .cn-page-header h1 {
        font-size: clamp(54px, 18vw, 88px)
    }

    .cn-prose {
        font-size: 16px
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto
    }

    *, *:before, *:after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important
    }

    [data-reveal] {
        opacity: 1;
        transform: none
    }

    .cn-sponsor-track {
        transform: none
    }

    .cn-serpent-path-front {
        stroke-dasharray: none
    }
}

/* CobraNova corporate identity layer: black / electric blue / orange, angular court energy. */
.cn-header:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(90deg, var(--cn-blue) 0 72%, var(--cn-orange) 72% 82%, transparent 82%);
    opacity: .8
}

.cn-brand-mark {
    border: 2px solid var(--cn-blue);
    color: #fff;
    background: radial-gradient(circle at 68% 32%, var(--cn-orange) 0 7%, transparent 8%), linear-gradient(135deg, #07111a, #0a2637);
    box-shadow: 0 0 22px rgba(0, 159, 227, .22);
    font-style: italic;
    transform: skewX(-7deg)
}

.cn-brand-text {
    text-transform: uppercase;
    letter-spacing: .02em;
    font-style: italic
}

.cn-brand-text:after {
    content: " BASKETBALL";
    display: block;
    font-size: 8px;
    letter-spacing: .26em;
    color: var(--cn-blue);
    font-style: normal;
    margin-top: -2px
}

.cn-kicker, .cn-eyebrow {
    color: var(--cn-blue)
}

.cn-kicker:before, .cn-eyebrow:before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--cn-orange);
    vertical-align: middle;
    margin-right: 10px
}

.cn-hero:after {
    content: "COBRANOVA";
    position: absolute;
    right: -.06em;
    bottom: -.23em;
    font-size: clamp(110px, 25vw, 420px);
    font-weight: 950;
    font-style: italic;
    letter-spacing: -.08em;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, .035);
    pointer-events: none
}

.cn-hero h1 span {
    -webkit-text-stroke: 1.5px var(--cn-blue)
}

.cn-serpent-path-back {
    stroke: rgba(0, 159, 227, .10)
}

.cn-serpent-path-front {
    stroke: url(#cnSnakeGradient)
}

.cn-feature-card {
    border-top: 2px solid rgba(0, 159, 227, .55)
}

.cn-feature-card:nth-child(3n+2) {
    border-top-color: rgba(245, 130, 32, .75)
}

.cn-feature-card:nth-child(3n+2) .cn-feature-icon, .cn-feature-card:nth-child(3n+2) p {
    color: var(--cn-orange)
}

.cn-status-card:hover {
    color: var(--cn-blue)
}

.cn-status-card:hover b {
    color: var(--cn-orange)
}

.cn-button-primary {
    background: var(--cn-blue);
    color: #fff
}

.cn-button-primary b {
    background: #fff;
    color: #07111a
}

.cn-nav-cta {
    background: var(--cn-blue);
    color: #fff
}

.cn-nav-cta span {
    background: var(--cn-orange);
    color: #fff
}

.cn-manifesto {
    position: relative;
    overflow: hidden
}

.cn-manifesto:after {
    content: "";
    position: absolute;
    right: -120px;
    top: 8%;
    width: 420px;
    height: 420px;
    border: 90px solid rgba(0, 159, 227, .07);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(245, 130, 32, .08)
}

.cn-quote-mark {
    color: var(--cn-orange)
}

.cn-prose blockquote {
    border-left-color: var(--cn-orange)
}

.cn-prose a {
    text-decoration-color: var(--cn-blue)
}

.cn-final-cta:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 10px;
    background: repeating-linear-gradient(135deg, #05070a 0 16px, transparent 16px 32px)
}

.cn-final-cta .cn-button-light b {
    background: var(--cn-orange)
}

@media (max-width: 720px) {
    .custom-logo {
        max-height: 54px
    }

    .cn-brand-text:after {
        display: none
    }

    .cn-hero:after {
        font-size: 36vw;
        bottom: 4%
    }
}

/* v1.2 — Court intensity layer: stronger basketball identity, bolder typography, darker blocks and mobile-safe interaction. */
:root {
    --cn-black: #020407;
    --cn-navy: #06111c;
    --cn-navy-2: #091b2b;
    --cn-court-blue: #009fe3;
    --cn-court-orange: #f58220;
    --cn-hot-orange: #ff5a00;
}

body {
    background: var(--cn-black)
}

.cn-header.is-scrolled {
    background: rgba(2, 4, 7, .93)
}

.cn-progress {
    height: 4px
}

.cn-progress span {
    background: linear-gradient(90deg, var(--cn-court-blue), var(--cn-court-orange))
}

.cn-hero {
    background: radial-gradient(circle at 78% 23%, rgba(0, 159, 227, .24), transparent 22%),
    radial-gradient(circle at 88% 70%, rgba(245, 130, 32, .16), transparent 22%),
    linear-gradient(135deg, #020407 0 48%, #071827 48% 72%, #020407 72%)
}

.cn-hero:before {
    background-image: linear-gradient(rgba(0, 159, 227, .055) 2px, transparent 2px), linear-gradient(90deg, rgba(0, 159, 227, .055) 2px, transparent 2px);
    background-size: 72px 72px;
    opacity: .8
}

.cn-hero-copy {
    position: relative
}

.cn-hero-copy:after {
    content: attr(data-year);
    position: absolute;
    right: -.25em;
    top: -.52em;
    font-size: clamp(120px, 18vw, 300px);
    line-height: 1;
    font-weight: 950;
    font-style: italic;
    letter-spacing: -.09em;
    color: rgba(245, 130, 32, .07);
    pointer-events: none;
    z-index: -1
}

.cn-hero h1 {
    font-family: Impact, "Arial Narrow", ui-sans-serif, sans-serif;
    font-stretch: condensed;
    text-transform: uppercase;
    font-style: italic;
    font-weight: 950;
    letter-spacing: -.055em;
    line-height: .76;
    text-shadow: 0 12px 50px rgba(0, 0, 0, .35)
}

.cn-hero h1 span {
    color: var(--cn-court-blue);
    -webkit-text-stroke: 0;
    text-shadow: 5px 5px 0 rgba(245, 130, 32, .15)
}

.cn-hero-lead {
    font-weight: 650;
    color: #e3edf5;
    max-width: 670px
}

.cn-kicker {
    display: inline-flex;
    align-items: center;
    background: var(--cn-court-orange);
    color: #05070a;
    padding: 7px 11px;
    transform: skewX(-8deg);
    font-weight: 950;
    letter-spacing: .12em
}

.cn-kicker:before {
    display: none
}

.cn-actions {
    gap: 10px
}

.cn-button {
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-weight: 950;
    position: relative;
    overflow: hidden
}

.cn-button:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .2) 48%, transparent 72%);
    transform: translateX(-130%);
    transition: transform .6s var(--cn-ease)
}

.cn-button:hover:before {
    transform: translateX(130%)
}

.cn-button-primary {
    background: var(--cn-court-orange);
    color: #080808
}

.cn-button-primary b {
    background: #080808;
    color: var(--cn-court-orange)
}

.cn-button-ghost {
    border: 2px solid var(--cn-court-blue);
    background: #06111c
}

.cn-button-ghost b {
    background: var(--cn-court-blue)
}

.cn-hero-status {
    background: rgba(2, 4, 7, .62);
    border: 1px solid rgba(0, 159, 227, .22);
    border-left: 4px solid var(--cn-court-orange);
    padding: 8px 22px 10px;
    backdrop-filter: blur(12px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .32)
}

.cn-status-label {
    color: var(--cn-court-orange);
    font-weight: 950
}

.cn-status-card {
    position: relative
}

.cn-status-card:before {
    content: "";
    position: absolute;
    left: -22px;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--cn-court-blue);
    transition: width .25s ease
}

.cn-status-card:hover:before {
    width: 4px
}

.cn-status-card strong {
    text-transform: uppercase;
    letter-spacing: -.02em
}

.cn-orb-one {
    background: radial-gradient(circle at 35% 35%, #fff 0 1%, #8de0ff 3%, #009fe3 42%, #063452 68%);
    box-shadow: 0 0 100px rgba(0, 159, 227, .34)
}

.cn-orb-one:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: repeating-radial-gradient(circle at center, transparent 0 22px, rgba(2, 4, 7, .12) 23px 24px);
    mix-blend-mode: multiply
}

.cn-orb-two {
    background: var(--cn-court-orange);
    box-shadow: 0 0 50px rgba(245, 130, 32, .75)
}

.cn-manifesto {
    background: linear-gradient(115deg, var(--cn-court-orange) 0 34%, #f4f7f9 34%);
    color: #020407
}

.cn-manifesto .cn-section-number {
    color: #020407
}

.cn-manifesto .cn-eyebrow {
    color: #020407
}

.cn-manifesto .cn-eyebrow:before {
    background: #020407
}

.cn-manifesto h2 {
    font-style: italic;
    text-transform: uppercase;
    font-weight: 950
}

.cn-big-copy {
    font-weight: 750
}

.cn-flow {
    background: linear-gradient(180deg, #020407, #06111c)
}

.cn-section-head h2, .cn-story h2, .cn-final-cta h2 {
    font-family: Impact, "Arial Narrow", ui-sans-serif, sans-serif;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -.04em
}

.cn-section-head h2 {
    color: var(--cn-court-blue)
}

.cn-flow-grid {
    gap: 10px
}

.cn-feature-card {
    border-radius: 10px;
    background: #07111b;
    border: 1px solid rgba(0, 159, 227, .18);
    border-top: 5px solid var(--cn-court-blue);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .015)
}

.cn-feature-card:nth-child(2), .cn-feature-card:nth-child(4) {
    background: #120a04;
    border-top-color: var(--cn-court-orange)
}

.cn-feature-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0 62%, rgba(255, 255, 255, .03) 62% 65%, transparent 65%);
    pointer-events: none
}

.cn-feature-card:hover {
    background: #0b2435;
    border-color: rgba(0, 159, 227, .7);
    box-shadow: 0 22px 80px rgba(0, 0, 0, .28)
}

.cn-feature-card:nth-child(2):hover, .cn-feature-card:nth-child(4):hover {
    background: #2a1205;
    border-color: rgba(245, 130, 32, .7)
}

.cn-feature-index {
    font-size: 13px;
    font-weight: 950;
    color: #fff
}

.cn-feature-icon {
    font-size: clamp(58px, 8vw, 128px);
    font-weight: 950
}

.cn-feature-card h3 {
    font-family: Impact, "Arial Narrow", ui-sans-serif, sans-serif;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: -.025em;
    max-width: 720px
}

.cn-story {
    background: linear-gradient(125deg, #06111c 0 56%, #020407 56%)
}

.cn-story h2 {
    color: var(--cn-court-orange)
}

.cn-quote-card {
    border-radius: 8px;
    border-top: 7px solid var(--cn-court-blue);
    box-shadow: 18px 18px 0 rgba(0, 159, 227, .08)
}

.cn-quote-card:nth-child(2) {
    border-top-color: var(--cn-court-orange);
    box-shadow: 18px 18px 0 rgba(245, 130, 32, .08)
}

.cn-sponsor-section {
    background: #020407;
    position: relative
}

.cn-sponsor-section:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 49.85%, rgba(0, 159, 227, .14) 49.85% 50.15%, transparent 50.15%), linear-gradient(transparent 49.85%, rgba(245, 130, 32, .08) 49.85% 50.15%, transparent 50.15%);
    background-size: 220px 220px;
    pointer-events: none
}

.cn-final-cta {
    background: linear-gradient(118deg, var(--cn-court-orange) 0 62%, var(--cn-court-blue) 62%);
    color: #020407
}

.cn-final-cta h2 span {
    color: #020407;
    -webkit-text-stroke: 0
}

.cn-final-cta .cn-eyebrow {
    color: #020407
}

.cn-final-cta .cn-eyebrow:before {
    background: #020407
}

.cn-final-cta .cn-button-light {
    border: 3px solid #020407;
    border-radius: 5px;
    font-weight: 950
}

.cn-footer {
    background: #020407;
    border-top: 5px solid var(--cn-court-blue)
}

/* Pointer spotlight adds intensity without affecting touch devices. */
[data-tilt] {
    --spot-x: 50%;
    --spot-y: 50%
}

[data-tilt] .cn-feature-icon {
    transition: transform .3s var(--cn-ease)
}

[data-tilt]:hover .cn-feature-icon {
    transform: scale(1.08) rotate(-4deg)
}

@media (pointer: fine) and (prefers-reduced-motion: no-preference) {
    .cn-feature-card:after {
        background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(0, 159, 227, .18), transparent 34%);
        width: auto;
        height: auto;
        border-radius: 0;
        inset: 0;
        border: 0;
        opacity: 0;
        transition: opacity .25s ease;
        transform: none !important
    }

    .cn-feature-card:hover:after {
        opacity: 1
    }

    .cn-feature-card:nth-child(2):after, .cn-feature-card:nth-child(4):after {
        background: radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(245, 130, 32, .19), transparent 34%)
    }
}

@media (max-width: 1100px) {
    .cn-nav {
        background: linear-gradient(150deg, #020407 0 60%, #071827 60%)
    }

    .cn-nav-list a {
        text-transform: uppercase;
        font-family: Impact, "Arial Narrow", ui-sans-serif, sans-serif;
        font-style: italic;
        letter-spacing: -.02em
    }

    .cn-nav-list > li:nth-child(even) > a {
        color: var(--cn-court-blue)
    }

    .cn-nav-list > li:nth-child(3n) > a {
        color: var(--cn-court-orange)
    }
}

@media (max-width: 720px) {
    .cn-hero {
        min-height: auto;
        padding: 118px 0 68px;
        background: radial-gradient(circle at 88% 12%, rgba(0, 159, 227, .2), transparent 24%), linear-gradient(155deg, #020407 0 62%, #071827 62%)
    }

    .cn-hero-grid {
        gap: 46px
    }

    .cn-hero h1 {
        font-size: clamp(60px, 18vw, 92px);
        line-height: .79;
        word-break: normal
    }

    .cn-hero h1 span {
        text-shadow: 3px 3px 0 rgba(245, 130, 32, .18)
    }

    .cn-kicker {
        font-size: 9px;
        line-height: 1.25;
        max-width: 92%;
        padding: 6px 8px
    }

    .cn-hero-lead {
        font-size: 17px;
        line-height: 1.42;
        max-width: 100%
    }

    .cn-actions {
        grid-template-columns:1fr
    }

    .cn-button {
        min-width: 0;
        min-height: 56px;
        padding: 8px 8px 8px 16px;
        font-size: 13px
    }

    .cn-button b {
        width: 40px;
        height: 40px
    }

    .cn-hero-status {
        padding: 5px 14px 8px;
        border-left-width: 3px
    }

    .cn-status-card {
        padding: 15px 0;
        gap: 9px
    }

    .cn-status-card:before {
        left: -14px
    }

    .cn-status-card strong {
        font-size: 14px
    }

    .cn-status-label {
        font-size: 10px
    }

    .cn-orb-one {
        width: 82px;
        height: 82px;
        right: -18px;
        top: 16%
    }

    .cn-orb-two {
        display: none
    }

    .cn-serpent-field {
        opacity: .68
    }

    .cn-manifesto {
        background: linear-gradient(165deg, var(--cn-court-orange) 0 25%, #f4f7f9 25%)
    }

    .cn-manifesto-grid {
        padding-top: 16px
    }

    .cn-manifesto h2 {
        font-size: clamp(48px, 14vw, 68px);
        line-height: .84;
        margin-top: 22px
    }

    .cn-big-copy {
        font-size: 24px;
        line-height: 1.18
    }

    .cn-section {
        padding: 76px 0
    }

    .cn-section-head h2 {
        font-size: clamp(50px, 14vw, 72px);
        line-height: .85
    }

    .cn-flow-grid {
        gap: 8px
    }

    .cn-feature-card, .cn-feature-card-large, .cn-feature-card-wide {
        min-height: 260px;
        padding: 22px;
        border-top-width: 4px
    }

    .cn-feature-card h3 {
        font-size: clamp(38px, 12vw, 54px);
        line-height: .9
    }

    .cn-feature-icon {
        font-size: 58px
    }

    .cn-story {
        background: #06111c
    }

    .cn-story h2 {
        font-size: clamp(52px, 15vw, 72px);
        line-height: .84
    }

    .cn-quote-card {
        min-height: 330px;
        padding: 26px;
        box-shadow: 8px 8px 0 rgba(0, 159, 227, .08)
    }

    .cn-quote-card:nth-child(2) {
        box-shadow: 8px 8px 0 rgba(245, 130, 32, .08)
    }

    .cn-quote-card blockquote {
        font-size: 24px;
        line-height: 1.15
    }

    .cn-sponsor-track {
        font-size: clamp(42px, 15vw, 72px)
    }

    .cn-final-cta {
        background: linear-gradient(158deg, var(--cn-court-orange) 0 73%, var(--cn-court-blue) 73%)
    }

    .cn-final-cta h2 {
        font-size: clamp(66px, 20vw, 104px);
        line-height: .78
    }
}

@media (max-width: 390px) {
    .cn-shell {
        padding-inline: 16px
    }

    .cn-hero {
        padding-top: 105px
    }

    .cn-hero h1 {
        font-size: clamp(52px, 17vw, 72px)
    }

    .cn-hero-lead {
        font-size: 16px
    }

    .cn-feature-card h3 {
        font-size: 36px
    }

    .cn-quote-card blockquote {
        font-size: 22px
    }

    .cn-final-cta h2 {
        font-size: 65px
    }
}


.custom-logo-link {
    display: block;
    max-height: 120px;
    min-height: 90px;
    object-fit: contain;

    img {
        max-width: 100%;
        height: auto;
        object-fit: contain;
        max-height: 80px;
        min-height: 60px;
    }
}

* {
    border-radius: 0 !important;
}

/* Important */
.cn-orb-one {
    background: radial-gradient(
            circle at 35% 35%,
            #ffd0a3 0 2%,
            #ff9a3d 5%,
            #f58220 35%,
            #d85b12 65%,
            #7a2b08 100%
    ) !important;
    box-shadow: 0 0 100px rgb(255 158 39 / 34%);
    border-radius: 100% !important;
}

.cn-orb-one {
    width: 190px;
    height: 190px;
    right: 12%;
    top: 22%;
    background: radial-gradient(
            circle at 35% 35%,
            #ffd0a3 0 2%,
            #ff9a3d 5%,
            #f58220 35%,
            #d85b12 65%,
            #7a2b08 100%
    ) !important;
    box-shadow: 0 0 80px rgba(0, 159, 227, .22);
    opacity: .85;
}

.cn-sp-sponsor-stage--normal .cn-sponsor-item__logo img {
    filter: none !important;
    max-height: 95px;
    width: auto;
}

@media (max-width: 1100px) {
    .cn-nav {
        position: fixed;
        inset: 0;
        background: #05070a;
        padding: 115px var(--cn-pad) 40px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: space-between;
        transform: translateY(-105%);
        transition: transform .55s var(--cn-ease);
        overflow: auto;
        min-height: 100vh;
    }

    .cn-header:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -1px;
        height: 2px;
        background: none !important;
        /* background: linear-gradient(90deg, var(--cn-blue) 0 72%, var(--cn-orange) 72% 82%, transparent 82%); */
        opacity: .8;
    }
}

.cn-header::after {
    background: none !important;
}

/* =========================================================
   HOMEPAGE SPONSORS - RESPONSIVE 4 COLUMN GRID
========================================================= */

.cn-home-live-sponsors {
    width: 100%;
    margin-top: 40px;
}

/* Force shortcode into a 4-column grid */
.cn-home-live-sponsors .cn-sponsor-shortcode {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
}

/* Sponsor card */
.cn-home-live-sponsors .cn-sponsor-item {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;

    width: 100%;
    min-width: 0;
    min-height: 220px;

    padding: 30px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;

    background: #111419;

    overflow: hidden;
    transition: transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

/* Hover */
.cn-home-live-sponsors .cn-sponsor-item:hover {
    transform: translateY(-4px);
    border-color: var(--cn-blue, #009fe3);
    background: #15191d;
}

/* Hide number + arrow at top */
.cn-home-live-sponsors .cn-sponsor-item__top {
    display: none !important;
}

/* Logo area */
.cn-home-live-sponsors .cn-sponsor-item__logo {
    display: flex !important;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 140px;

    padding: 15px;
}

/* Make every logo use the same available space */
.cn-home-live-sponsors .cn-sponsor-item__logo img,
.cn-home-live-sponsors .cn-sponsor-logo {
    display: block;

    width: 100% !important;
    height: 100% !important;

    max-width: 180px !important;
    max-height: 110px !important;

    object-fit: contain !important;
    object-position: center;

    filter: none !important;
}

/* Remove sponsor name / text below logo */
.cn-home-live-sponsors .cn-sponsor-item__footer {
    display: none !important;
}


/* =========================================================
   TABLET - 2 COLUMNS
========================================================= */

@media (max-width: 900px) {

    .cn-home-live-sponsors .cn-sponsor-shortcode {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* =========================================================
   MOBILE - 1 COLUMN
========================================================= */

@media (max-width: 520px) {

    .cn-home-live-sponsors .cn-sponsor-shortcode {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    .cn-home-live-sponsors .cn-sponsor-item {
        min-height: 180px;
        padding: 20px;
    }

    .cn-home-live-sponsors .cn-sponsor-item__logo {
        height: 120px;
    }

}


.cn-text-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-top: 28px;
    font-weight: 800;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    color: white;
}


.custom-logo-link {
    display: block;
    max-height: 120px;
    min-height: 90px;
    max-width: 100%;
    min-width: 200px;
    object-fit: contain;
}




.cn-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cn-nav-cta--shop {
    background: var(--cn-orange, #f58220);
    color: #080808;
}

.cn-nav-cta--shop span {
    background: #080808;
    color: #fff;
}

.cn-nav-cta--shop:hover {
    background: #ff963f;
}


@media (max-width: 1100px) {
    .cn-nav-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cn-nav-actions .cn-nav-cta {
        width: 100%;
        justify-content: space-between;
    }
}




/* =========================================================
   COBRANOVA RESPONSIVE HERO FIX
   - Voorkomt afgesneden titels
   - Maakt featured images volledig responsive
   - Gebruikt object-fit: cover
   - Vermindert lege ruimte op mobiel
   - Geldt voor pagina's, profielen, archieven en clubpagina's
========================================================= */

/* ---------------------------------------------------------
   Algemene bescherming tegen horizontaal uitlopen
--------------------------------------------------------- */

html,
body {
    max-width: 100%;
    overflow-x: clip;
}

.cn-main,
.cn-page,
.cn-page-shell,
.cn-page-hero,
.cn-page-shell__hero,
.cn-club-profile,
.cn-club-profile__hero {
    max-width: 100%;
    overflow-x: clip;
}

.cn-container,
.cn-shell,
.cn-page-shell__hero-grid,
.cn-club-profile__hero-grid {
    min-width: 0;
}

/* ---------------------------------------------------------
   Titels algemeen
--------------------------------------------------------- */

.cn-page-hero h1,
.cn-page-shell__hero h1,
.cn-page-shell__title,
.cn-club-profile__hero h1,
.cn-hero h1 {
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: auto;
    text-wrap: balance;
}

/* Lange woorden mogen alleen breken wanneer dat echt nodig is */
@supports (overflow-wrap: anywhere) {
    .cn-page-hero h1,
    .cn-page-shell__hero h1,
    .cn-page-shell__title,
    .cn-club-profile__hero h1,
    .cn-hero h1 {
        overflow-wrap: anywhere;
    }
}

/* ---------------------------------------------------------
   Featured image / hero image algemeen
--------------------------------------------------------- */

.cn-page-hero__image,
.cn-page-shell__media,
.cn-page-shell__image,
.cn-page-shell__visual,
.cn-club-profile__image,
.cn-hero-featured-image,
.cn-featured-image {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: hidden;
}

/* Zorg dat de afbeelding het beschikbare vlak vult */
.cn-page-hero__image img,
.cn-page-shell__media img,
.cn-page-shell__image img,
.cn-page-shell__visual img,
.cn-club-profile__image img,
.cn-hero-featured-image img,
.cn-featured-image img {
    display: block;
    width: auto;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center center;
    max-height: 450px;
}

/* WordPress featured-image wrappers */
.cn-page-shell__hero .post-thumbnail,
.cn-page-hero .post-thumbnail,
.cn-club-profile__hero .post-thumbnail {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cn-page-shell__hero .post-thumbnail img,
.cn-page-hero .post-thumbnail img,
.cn-club-profile__hero .post-thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ---------------------------------------------------------
   Tablet
--------------------------------------------------------- */

@media (max-width: 1100px) {

    .cn-page-shell__hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 72px;
    }

    .cn-page-shell__hero-grid,
    .cn-club-profile__hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }

    .cn-page-shell__hero-copy,
    .cn-club-profile__hero-grid > div:first-child {
        width: 100%;
        max-width: 100%;
    }

    .cn-page-hero h1,
    .cn-page-shell__hero h1,
    .cn-page-shell__title,
    .cn-club-profile__hero h1 {
        font-size: clamp(54px, 9vw, 94px);
        line-height: 0.88;
        letter-spacing: -0.06em;
    }

    .cn-page-hero__image,
    .cn-page-shell__media,
    .cn-page-shell__image,
    .cn-page-shell__visual,
    .cn-club-profile__image,
    .cn-hero-featured-image,
    .cn-featured-image,
    .cn-page-shell__hero .post-thumbnail,
    .cn-page-hero .post-thumbnail,
    .cn-club-profile__hero .post-thumbnail {
        width: 100%;
        min-height: 0;
        aspect-ratio: 16 / 10;
    }

    .cn-club-profile__image img {
        min-height: 0;
    }
}

/* ---------------------------------------------------------
   Mobiel
--------------------------------------------------------- */

@media (max-width: 768px) {

    /* Hero krijgt geen vaste viewporthoogte meer */
    .cn-page-hero,
    .cn-page-shell__hero,
    .cn-club-profile__hero {
        min-height: auto;
        height: auto;
        align-items: flex-start;
        padding-top: 125px;
        padding-bottom: 54px;
    }

    /* Minder grote algemene sectiepadding */
    .cn-page-shell {
        --cn-page-pad: 56px;
    }

    .cn-page-shell__hero-grid,
    .cn-club-profile__hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        width: 100%;
    }

    .cn-page-shell__hero-copy,
    .cn-page-hero__content,
    .cn-club-profile__hero-grid > div:first-child {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    /* Responsive paginatitels */
    .cn-page-hero h1,
    .cn-page-shell__hero h1,
    .cn-page-shell__title,
    .cn-club-profile__hero h1 {
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        margin-bottom: 22px;
        font-size: clamp(42px, 13vw, 72px);
        line-height: 0.9;
        letter-spacing: -0.055em;
        overflow-wrap: anywhere;
        word-break: normal;
        hyphens: auto;
        text-wrap: balance;
    }

    /* Homehero iets apart behandelen */
    .cn-hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(48px, 14vw, 82px);
        line-height: 0.84;
        letter-spacing: -0.06em;
        overflow-wrap: anywhere;
        text-wrap: balance;
    }

    /* Introductietekst netjes binnen het scherm */
    .cn-page-shell__hero-copy p,
    .cn-page-hero__content p,
    .cn-club-profile__hero p,
    .cn-hero-lead {
        max-width: 100%;
        font-size: clamp(16px, 4.6vw, 20px);
        line-height: 1.55;
    }

    /* Featured image wordt altijd gecropt als cover */
    .cn-page-hero__image,
    .cn-page-shell__media,
    .cn-page-shell__image,
    .cn-page-shell__visual,
    .cn-club-profile__image,
    .cn-hero-featured-image,
    .cn-featured-image,
    .cn-page-shell__hero .post-thumbnail,
    .cn-page-hero .post-thumbnail,
    .cn-club-profile__hero .post-thumbnail {
        width: 100%;
        max-width: 100%;
        min-height: 0;
        height: auto;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        border-radius: 0;
    }

    .cn-page-hero__image img,
    .cn-page-shell__media img,
    .cn-page-shell__image img,
    .cn-page-shell__visual img,
    .cn-club-profile__image img,
    .cn-hero-featured-image img,
    .cn-featured-image img,
    .cn-page-shell__hero .post-thumbnail img,
    .cn-page-hero .post-thumbnail img,
    .cn-club-profile__hero .post-thumbnail img {
        width: 100%;
        height: 100%;
        min-height: 0;
        max-height: none;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center center;
    }

    /* Voorkomt dat media buiten de container schuift */
    .cn-page-shell__hero figure,
    .cn-page-hero figure,
    .cn-club-profile__hero figure {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    /* Achtergrondwoorden mogen niet voor horizontale overflow zorgen */
    .cn-page-shell__word,
    .cn-contact-hero__word,
    .cn-tenues-word {
        max-width: 100vw;
        overflow: hidden;
    }
}

/* ---------------------------------------------------------
   Kleine telefoons
--------------------------------------------------------- */

@media (max-width: 480px) {

    .cn-page-hero,
    .cn-page-shell__hero,
    .cn-club-profile__hero {
        padding-top: 112px;
        padding-bottom: 44px;
    }

    .cn-page-hero h1,
    .cn-page-shell__hero h1,
    .cn-page-shell__title,
    .cn-club-profile__hero h1 {
        font-size: clamp(38px, 12.5vw, 60px);
        line-height: 0.92;
        letter-spacing: -0.045em;
    }

    .cn-hero h1 {
        font-size: clamp(44px, 13.5vw, 68px);
    }

    .cn-page-hero__image,
    .cn-page-shell__media,
    .cn-page-shell__image,
    .cn-page-shell__visual,
    .cn-club-profile__image,
    .cn-hero-featured-image,
    .cn-featured-image,
    .cn-page-shell__hero .post-thumbnail,
    .cn-page-hero .post-thumbnail,
    .cn-club-profile__hero .post-thumbnail {
        aspect-ratio: 1 / 1;
    }
}

/* ---------------------------------------------------------
   Eventuele Gutenberg featured images
--------------------------------------------------------- */

.cn-page-shell__hero .wp-block-post-featured-image,
.cn-page-hero .wp-block-post-featured-image,
.cn-club-profile__hero .wp-block-post-featured-image {
    width: 100%;
    overflow: hidden;
}

.cn-page-shell__hero .wp-block-post-featured-image img,
.cn-page-hero .wp-block-post-featured-image img,
.cn-club-profile__hero .wp-block-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .cn-page-shell__hero .wp-block-post-featured-image,
    .cn-page-hero .wp-block-post-featured-image,
    .cn-club-profile__hero .wp-block-post-featured-image {
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .cn-page-shell__hero .wp-block-post-featured-image,
    .cn-page-hero .wp-block-post-featured-image,
    .cn-club-profile__hero .wp-block-post-featured-image {
        aspect-ratio: 1 / 1;
    }
}



.cn-club-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

img.cn-club-card__image.wp-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}


/* =========================================================
   INSTAGRAM FEED
========================================================= */

.cn-instagram-section {
    position: relative;
    overflow: hidden;
    background: #020407;
    color: #c5c3c3;
}

.cn-instagram-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #f58220;
    opacity: 0.12;
    pointer-events: none;
}

.cn-instagram-section::after {
    content: "";
    position: absolute;
    bottom: -220px;
    left: -160px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: #ffc514;
    opacity: 0.16;
    pointer-events: none;
}

.cn-instagram-section .cn-shell {
    position: relative;
    z-index: 1;
}

.cn-instagram-intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin: 0 0 42px;
}

.cn-instagram-intro p {
    max-width: 650px;
    margin: 0;
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    line-height: 1.7;
    color: rgba(197,195,195,0.8);
}

.cn-instagram-feed {
    position: relative;
    padding: 12px;
    background: #0b1724;
    border-top: 5px solid #f58220;
    box-shadow: 0 24px 60px rgba(11, 23, 36, 0.16);
}

/*
 * Probeert de afbeeldingen van de plugin als strak grid te tonen.
 * De exacte plugin-HTML kan per versie verschillen.
 */
.cn-instagram-feed > div,
.cn-instagram-feed .simple-photo-feed,
.cn-instagram-feed .spf-feed,
.cn-instagram-feed .photo-feed {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.cn-instagram-feed a {
    position: relative;
    display: block;
    overflow: hidden;
    background: #10283a;
}

.cn-instagram-feed a::after {
    content: "↗";
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: #f58220;
    color: #0b1724;
    font-size: 1rem;
    font-weight: 900;
    opacity: 0;
    transform: translateY(8px);
    transition:
            opacity 0.25s ease,
            transform 0.25s ease;
    pointer-events: none;
}

.cn-instagram-feed a:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.cn-instagram-feed img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition:
            transform 0.45s ease,
            filter 0.45s ease;
}

.cn-instagram-feed a:hover img {
    transform: scale(1.055);
    filter: brightness(0.78);
}

/* Captions altijd verbergen, ook als de plugin ze toch uitvoert */
.cn-instagram-feed figcaption,
.cn-instagram-feed .caption,
.cn-instagram-feed .photo-caption,
.cn-instagram-feed .spf-caption,
.cn-instagram-feed [class*="caption"],
.cn-instagram-feed [class*="description"] {
    display: none !important;
}

.cn-instagram-missing {
    padding: 24px;
    border-left: 5px solid #f58220;
    background: #0b1724;
    color: #fff;
}

@media (max-width: 900px) {
    .cn-instagram-intro {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .cn-instagram-feed > div,
    .cn-instagram-feed .simple-photo-feed,
    .cn-instagram-feed .spf-feed,
    .cn-instagram-feed .photo-feed {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cn-instagram-feed {
        padding: 7px;
    }

    .cn-instagram-feed > div,
    .cn-instagram-feed .simple-photo-feed,
    .cn-instagram-feed .spf-feed,
    .cn-instagram-feed .photo-feed {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }
}



/* =========================================================
   COBRANOVA — SIMPLE PHOTO FEED OVERRIDES
   Plaats dit na de originele SPF CSS in theme.css
========================================================= */

.cn-instagram-section .spf_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0;
    margin: 0;
    white-space: normal;
    background: transparent;
}

.cn-instagram-section .spf_container.spf_size_small {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cn-instagram-section .spf_container .spf_item {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
    background: #0b1724;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 32px rgba(11, 23, 36, 0.16);
    isolation: isolate;
}

.cn-instagram-section .spf_container .spf_item::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
            linear-gradient(
                    to top,
                    rgba(11, 23, 36, 0.72) 0%,
                    rgba(11, 23, 36, 0.08) 45%,
                    transparent 70%
            );
    opacity: 0.35;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.cn-instagram-section .spf_container .spf_item::after {
    content: "↗";
    position: absolute;
    right: 0.85rem;
    bottom: 0.85rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 2.75rem;
    height: 2.75rem;
    background: #f58220;
    color: #0b1724;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    transform: translateY(0.5rem);
    transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            background-color 0.25s ease;
    pointer-events: none;
}

.cn-instagram-section .spf_container .spf_item:hover::before,
.cn-instagram-section .spf_container .spf_item:focus-within::before {
    opacity: 0.72;
}

.cn-instagram-section .spf_container .spf_item:hover::after,
.cn-instagram-section .spf_container .spf_item:focus-within::after {
    opacity: 1;
    transform: translateY(0);
}

.cn-instagram-section .spf_container .spf_item:hover::after {
    background: #ffc514;
}

.cn-instagram-section .spf_container .spf_item a {
    position: absolute;
    inset: 0;
    display: block;
    z-index: 0;
}

.cn-instagram-section .spf_container .spf_item img {
    position: absolute;
    inset: 0;
    display: block;
    margin: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
            transform 0.45s ease,
            filter 0.45s ease;
}

.cn-instagram-section .spf_container .spf_item img:hover,
.cn-instagram-section .spf_container .spf_item a:focus img,
.cn-instagram-section .spf_container .spf_item:hover img,
.cn-instagram-section .spf_container .spf_item:focus-within img {
    transform: scale(1.06);
    filter: brightness(0.78) saturate(0.95);
}

/* Tekst altijd uit */
.cn-instagram-section .spf_caption {
    display: none !important;
}

/* =========================================================
   SPF LIGHTBOX — COBRANOVA STYLE
========================================================= */

#spf_lightbox_container {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    background: rgba(5, 13, 22, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

#spf_lightbox_container::before {
    content: "";
    position: fixed;
    top: -10rem;
    right: -10rem;
    width: 28rem;
    height: 28rem;
    border-radius: 50%;
    background: #f58220;
    opacity: 0.1;
    pointer-events: none;
}

#spf_lightbox_container::after {
    content: "";
    position: fixed;
    bottom: -12rem;
    left: -10rem;
    width: 32rem;
    height: 32rem;
    border-radius: 50%;
    background: #ffc514;
    opacity: 0.08;
    pointer-events: none;
}

#spf_lightbox_image_box {
    position: fixed;
    top: 3rem;
    left: 3rem;
    right: calc(3rem + 30%);
    bottom: 3rem;
    text-align: center;
}

#spf_lightbox_image_box img {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    max-width: 100%;
    max-height: 100%;
    box-sizing: border-box;
    border: 0;
    outline: 0;
    background: #0b1724;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

#spf_lightbox_caption {
    display: none !important;
}

#spf_lightbox_link {
    position: fixed;
    right: 3rem;
    bottom: 7.5rem;
    width: calc(30% - 4.5rem);
    box-sizing: border-box;
    padding: 1rem 1.25rem;
    background: #f58220;
    color: #0b1724;
    border: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    transition:
            background-color 0.25s ease,
            color 0.25s ease,
            transform 0.25s ease;
}

#spf_lightbox_link:hover,
#spf_lightbox_link:focus-visible {
    background: #ffc514;
    color: #0b1724;
    transform: translateY(-2px);
}

#spf_lightbox_next,
#spf_lightbox_prev,
#spf_lightbox_close {
    display: grid;
    place-items: center;
    width: 3.5rem;
    height: 3.5rem;
    background: #0b1724;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #fff;
    cursor: pointer;
    transition:
            background-color 0.25s ease,
            border-color 0.25s ease,
            transform 0.25s ease;
}

#spf_lightbox_next:hover,
#spf_lightbox_prev:hover,
#spf_lightbox_close:hover,
#spf_lightbox_next:focus-visible,
#spf_lightbox_prev:focus-visible,
#spf_lightbox_close:focus-visible {
    background: #f58220;
    border-color: #f58220;
    transform: translateY(-2px);
}

#spf_lightbox_next > svg,
#spf_lightbox_prev > svg,
#spf_lightbox_close > svg {
    width: 1.6rem;
    height: 1.6rem;
    color: currentColor;
}

#spf_lightbox_next:hover > svg,
#spf_lightbox_prev:hover > svg,
#spf_lightbox_close:hover > svg {
    color: #0b1724;
}

#spf_lightbox_next {
    position: fixed;
    right: 3rem;
    bottom: 3rem;
    transform: none;
}

#spf_lightbox_prev {
    position: fixed;
    right: 7.25rem;
    bottom: 3rem;
    transform: none;
}

#spf_lightbox_close {
    position: fixed;
    top: 3rem;
    right: 3rem;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media only screen and (max-width: 1024px) {
    .cn-instagram-section .spf_container,
    .cn-instagram-section .spf_container.spf_size_small {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    #spf_lightbox_image_box {
        right: 2rem;
        bottom: 10rem;
    }

    #spf_lightbox_link {
        right: 50%;
        bottom: 2rem;
        width: auto;
        max-width: calc(100% - 14rem);
        translate: 50% 0;
        white-space: nowrap;
    }

    #spf_lightbox_prev {
        left: 2rem;
        right: auto;
        bottom: 2rem;
    }

    #spf_lightbox_next {
        right: 2rem;
        bottom: 2rem;
    }

    #spf_lightbox_close {
        top: 2rem;
        right: 2rem;
    }
}

@media only screen and (max-width: 768px) {
    .cn-instagram-section .spf_container,
    .cn-instagram-section .spf_container.spf_size_small {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .cn-instagram-section .spf_container .spf_item::after {
        width: 2.4rem;
        height: 2.4rem;
        right: 0.65rem;
        bottom: 0.65rem;
    }

    #spf_lightbox_image_box {
        top: 5.5rem;
        left: 1rem;
        right: 1rem;
        bottom: 9rem;
    }

    #spf_lightbox_link {
        bottom: 1.5rem;
        max-width: calc(100% - 10rem);
        padding: 0.9rem 1rem;
        font-size: 0.75rem;
    }

    #spf_lightbox_prev,
    #spf_lightbox_next,
    #spf_lightbox_close {
        width: 3rem;
        height: 3rem;
    }

    #spf_lightbox_prev {
        left: 1rem;
        bottom: 1.5rem;
    }

    #spf_lightbox_next {
        right: 1rem;
        bottom: 1.5rem;
    }

    #spf_lightbox_close {
        top: 1rem;
        right: 1rem;
    }
}

@media only screen and (max-width: 480px) {
    .cn-instagram-section .spf_container,
    .cn-instagram-section .spf_container.spf_size_small {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cn-instagram-section .spf_container .spf_item::after {
        display: none;
    }

    #spf_lightbox_link {
        max-width: calc(100% - 9rem);
        overflow: hidden;
        text-overflow: ellipsis;
    }
}





/* CobraNova tarieven */

.cobranova-tarieven-card{
    background:#fff;
    border:2px solid #e5e5e5;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
}

.cobranova-tarieven-card h2{
    margin:0;
    padding:18px 24px;
    background:#000;
    color:#f58220;
    font-size:1.5rem;
    font-weight:700;
}

.cobranova-tarieven-card p{
    padding:0 24px;
    margin:20px 0;
}

.cobranova-tarieven-table{
    width:100%;
    border-collapse:collapse;
    margin:0;
    font-size:.95rem;
}

.cobranova-tarieven-table thead{
    background:#f58220;
}

.cobranova-tarieven-table thead th{
    color:#000;
    font-weight:700;
    padding:14px 18px;
    border:none;
}

.cobranova-tarieven-table td{
    padding:14px 18px;
    border-bottom:1px solid none;
    vertical-align:middle;
    color:#000;
}

.cobranova-tarieven-table tbody tr:nth-child(even){
    background:none;
}

.cobranova-tarieven-table tbody tr:hover{
    background:none;
    transition:.2s;
}

.cobranova-bedrag{
    font-weight:700;
    color:#000;
    white-space:nowrap;
}

.cobranova-tarieven-scroll{
    overflow-x:auto;
}

@media (max-width:768px){

    .cobranova-tarieven-card{
        border-radius:8px;
    }

    .cobranova-tarieven-table{
        min-width:600px;
    }

}

.cn-prose table, .cobranova-tarieven-table {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
}