/* ============================================
   ClearOnc — The Hidden Cost of One Cancer Claim
   Scrollytelling stylesheet
   ============================================ */

:root {
    --story-bg: #0B1226;
    --story-bg-2: #121F44;
    --story-cream: #FBF8F1;
    --story-ink: #0F1E3A;
    --story-teal: #24C8B9;
    --story-amber: #FF7900;
    --story-red: #D81271;
    --story-line: rgba(255, 255, 255, 0.08);
}

.story-body {
    background: var(--story-cream);
}

.story-main { padding-top: 0; }

.nav-dark { background: rgba(15, 30, 58, 0.78); }
.nav-dark.scrolled {
    background: rgba(15, 30, 58, 0.92);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}
.nav-dark .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}
.nav-dark .nav-links a:hover { color: #fff; }
.nav-dark .nav-cta {
    background: var(--story-teal) !important;
    color: var(--story-ink) !important;
    border-color: var(--story-teal) !important;
}

/* ============================================
   READING PROGRESS BAR
   ============================================ */
.story-progress {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 999;
}

.story-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--story-teal), var(--story-amber));
    width: 0%;
    transition: width 0.12s linear;
    box-shadow: 0 0 10px rgba(36, 200, 185, 0.55);
}

/* ============================================
   COVER
   ============================================ */
.story-cover {
    position: relative;
    background: var(--story-bg);
    color: var(--story-cream);
    padding: 200px 0 140px;
    overflow: hidden;
    text-align: center;
}

.story-cover-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.story-cover-bg span {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
    animation: storyAurora 24s ease-in-out infinite;
}

.story-cover-bg span:nth-child(1) {
    width: 620px; height: 620px;
    top: -160px; left: 5%;
    background: radial-gradient(circle, rgba(36, 200, 185, 0.55), transparent 70%);
}
.story-cover-bg span:nth-child(2) {
    width: 700px; height: 700px;
    bottom: -200px; right: -100px;
    background: radial-gradient(circle, rgba(255, 121, 0, 0.28), transparent 70%);
    animation-delay: -8s;
}
.story-cover-bg span:nth-child(3) {
    width: 500px; height: 500px;
    top: 35%; left: 35%;
    background: radial-gradient(circle, rgba(216, 18, 113, 0.20), transparent 70%);
    animation-delay: -16s;
}

@keyframes storyAurora {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -30px) scale(1.07); }
    66%      { transform: translate(-30px, 30px) scale(0.95); }
}

.story-cover-inner { position: relative; max-width: 880px; margin: 0 auto; }

.story-eyebrow {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--story-teal);
    background: rgba(36, 200, 185, 0.12);
    border: 1px solid rgba(36, 200, 185, 0.35);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 28px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 7vw, 5.8rem);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: #fff;
    margin-bottom: 30px;
}

.story-title-em {
    font-weight: 600;
    background: linear-gradient(135deg, var(--story-amber), var(--story-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
}

.story-lede {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.65;
    max-width: 660px;
    margin: 0 auto 40px;
}

.story-cover-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.story-scroll-hint {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}

.story-scroll-icon {
    color: var(--story-teal);
    animation: scrollNudge 2.2s ease-in-out infinite;
}

@keyframes scrollNudge {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50%      { transform: translateY(8px); opacity: 1; }
}

/* ============================================
   ACTS & SCROLLYTELLING
   ============================================ */
.story-act { padding: 0; background: var(--story-cream); }
.story-act-dark {
    background: var(--story-bg);
    color: var(--story-cream);
}
.story-act-baseline { background: linear-gradient(180deg, var(--story-cream) 0%, #F1EDDF 100%); }

.story-scrolly {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 900px) {
    .story-scrolly { grid-template-columns: 1fr; }
}

.story-sticky {
    position: sticky;
    top: 110px;
    height: calc(100vh - 110px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 24px 24px 0;
}

@media (max-width: 900px) {
    .story-sticky {
        height: 70vh;
        top: 100px;
        padding: 12px 0;
    }
}

.story-steps {
    padding: 30vh 32px 30vh 0;
}

@media (max-width: 900px) {
    .story-steps { padding: 16vh 0; }
}

.story-step {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 0;
    opacity: 0.25;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.story-step.is-active {
    opacity: 1;
    transform: translateY(0);
}

.story-step-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(32, 54, 106, 0.08);
    color: var(--color-navy);
    margin-bottom: 18px;
    width: fit-content;
}

.story-tag-blue   { background: rgba(36, 200, 185, 0.12); color: var(--color-teal); }
.story-tag-amber  { background: rgba(255, 121, 0, 0.14); color: var(--story-amber); }
.story-tag-orange { background: rgba(255, 121, 0, 0.20); color: var(--story-amber); }
.story-tag-red    { background: rgba(216, 18, 113, 0.12); color: var(--story-red); }
.story-tag-teal   { background: rgba(36, 200, 185, 0.22); color: #fff; }

.story-step h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--color-navy);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin-bottom: 18px;
}

.story-steps-dark .story-step h2 { color: #fff; }

.story-step p {
    font-size: 1.06rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.story-steps-dark .story-step p { color: rgba(255, 255, 255, 0.78); }

.story-step strong { color: var(--color-navy); font-weight: 700; }
.story-steps-dark .story-step strong { color: #fff; }

.story-step-callout {
    background: rgba(36, 200, 185, 0.06);
    border-left: 3px solid var(--story-teal);
    padding: 16px 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 14px;
    font-size: 0.98rem !important;
}

.story-callout-dark {
    background: rgba(36, 200, 185, 0.12);
    color: #fff !important;
}

/* ============================================
   VIZ FRAME
   ============================================ */
.story-viz {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-viz-frame {
    background: #fff;
    border: 1px solid rgba(32, 54, 106, 0.10);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 24px 60px rgba(15, 30, 58, 0.12);
    width: 100%;
    max-width: 560px;
}

.story-viz-dark .story-viz-frame {
    background: var(--story-bg-2);
    border-color: rgba(255, 255, 255, 0.10);
    color: #fff;
}

.story-viz-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.story-viz-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-teal);
    margin-bottom: 6px;
}

.story-viz-dark .story-viz-eyebrow { color: var(--story-teal); }

.story-viz-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1.3;
}

.story-viz-dark .story-viz-title { color: #fff; }

.story-viz-month {
    background: var(--color-bg-alt);
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--color-navy);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

.story-viz-month-light {
    background: rgba(36, 200, 185, 0.18);
    color: var(--story-teal);
}

/* ============================================
   POPULATION DOT GRID (ACT 1)
   ============================================ */
.story-viz-canvas {
    position: relative;
    background: var(--color-bg-alt);
    border-radius: 16px;
    padding: 24px;
    min-height: 240px;
    overflow: hidden;
}

.story-dots {
    display: grid;
    grid-template-columns: repeat(20, 1fr);
    gap: 4px;
}

.story-dots span {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(32, 54, 106, 0.18);
    transition: background 0.4s ease, transform 0.4s ease;
}

.story-dots span.is-case {
    background: var(--color-teal);
}

.story-dots span.is-sarah {
    background: var(--story-amber);
    box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.30);
    transform: scale(1.6);
    z-index: 2;
    position: relative;
    animation: sarahPulse 2.4s ease-in-out infinite;
}

@keyframes sarahPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.40); }
    50%      { box-shadow: 0 0 0 8px rgba(255, 121, 0, 0.10); }
}

.story-dot-callout {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(80px, -40px);
    background: var(--color-navy);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.86rem;
    font-weight: 600;
    line-height: 1.35;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    box-shadow: var(--shadow-lg);
}

.story-dot-callout span {
    display: block;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    margin-top: 2px;
}

.story-dot-callout.is-visible { opacity: 1; }

.story-dot-pulse {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--story-amber);
    border-radius: 50%;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(255, 121, 0, 0.6);
    animation: pulseDot 1.8s ease-out infinite;
}

@keyframes pulseDot {
    0%   { box-shadow: 0 0 0 0 rgba(255, 121, 0, 0.6); }
    100% { box-shadow: 0 0 0 12px rgba(255, 121, 0, 0); }
}

.story-callout-label { line-height: 1.3; }

.story-viz-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 22px;
}

.story-viz-stat {
    background: rgba(32, 54, 106, 0.04);
    padding: 16px;
    border-radius: 12px;
}

.story-viz-stat-num {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 500;
    color: var(--color-navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.story-viz-stat-label {
    color: var(--color-text-light);
    font-size: 0.82rem;
    margin-top: 6px;
    line-height: 1.4;
}

/* ============================================
   CHART (ACT 2)
   ============================================ */
.story-chart {
    position: relative;
    background: var(--color-bg-alt);
    border-radius: 16px;
    padding: 24px 16px 16px;
    margin-bottom: 22px;
}

.story-chart-svg {
    width: 100%;
    height: auto;
    overflow: visible;
}

.story-chart-grid line {
    stroke: rgba(32, 54, 106, 0.08);
    stroke-width: 1;
    stroke-dasharray: 3 4;
}

.story-chart-yax text,
.story-chart-xax span {
    fill: var(--color-text-lighter);
    color: var(--color-text-lighter);
    font-family: var(--font-body);
    font-size: 10px;
    letter-spacing: 0.04em;
}

.story-stoploss-line {
    stroke: var(--story-red);
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    opacity: 0.65;
}

.story-stoploss-label {
    fill: var(--story-red);
    font-family: var(--font-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.story-chart-area {
    fill: url(#storyAreaGrad);
    opacity: 0.18;
    transition: d 0.5s ease;
}

.story-chart-line {
    fill: none;
    stroke: var(--color-navy);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: d 0.5s ease;
}

.story-chart-xax {
    display: flex;
    justify-content: space-between;
    padding: 8px 60px 0 60px;
    font-size: 0.72rem;
    color: var(--color-text-lighter);
    letter-spacing: 0.04em;
}

.story-cost-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.story-cost-card {
    background: var(--color-bg-alt);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: center;
}

.story-cost-label {
    font-size: 0.72rem;
    color: var(--color-text-lighter);
    letter-spacing: 0.10em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 6px;
}

.story-cost-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-navy);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.005em;
}

/* milestone dots */
.story-milestone-dot {
    fill: var(--color-navy);
    stroke: #fff;
    stroke-width: 2;
    r: 5;
    transition: all 0.35s ease;
    opacity: 0;
}

.story-milestone-dot.is-active {
    opacity: 1;
    r: 7;
}

.story-milestone-dot.is-amber { fill: var(--story-amber); }
.story-milestone-dot.is-red   { fill: var(--story-red); }

/* ============================================
   VERSUS BARS (ACT 3)
   ============================================ */
.story-versus {
    display: grid;
    gap: 18px;
    margin: 8px 0 26px;
}

.story-versus-row { display: block; }

.story-versus-bar {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    align-items: center;
    gap: 14px;
}

@media (max-width: 600px) {
    .story-versus-bar { grid-template-columns: 1fr; gap: 6px; }
}

.story-versus-bar-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.story-versus-bar-track {
    height: 22px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
}

.story-versus-bar-fill {
    height: 100%;
    border-radius: 999px;
    transition: width 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-versus-bar-baseline .story-versus-bar-fill {
    background: linear-gradient(90deg, var(--story-amber), var(--story-red));
    box-shadow: 0 0 16px rgba(216, 18, 113, 0.35);
}

.story-versus-bar-clearonc .story-versus-bar-fill {
    background: linear-gradient(90deg, var(--story-teal), #62D4C7);
    box-shadow: 0 0 16px rgba(36, 200, 185, 0.45);
}

.story-versus-bar-val {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: #fff;
    font-variant-numeric: tabular-nums;
    min-width: 110px;
    text-align: right;
}

.story-versus-savings {
    background: rgba(36, 200, 185, 0.12);
    border: 1px solid rgba(36, 200, 185, 0.30);
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
}

.story-savings-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--story-teal);
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.015em;
}

.story-savings-label {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    margin-top: 8px;
}

.story-versus-breakdown {
    display: grid;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.86rem;
}

.story-vs-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.78);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.story-vs-row.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.story-vs-row .saved {
    color: var(--story-teal);
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

/* ============================================
   INTERLUDE
   ============================================ */
.story-interlude {
    background: linear-gradient(180deg, var(--story-cream) 0%, #F1EDDF 100%);
    padding: 100px 0;
}

.story-interlude-card {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.story-interlude-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-navy);
    margin: 18px 0 24px;
    letter-spacing: -0.015em;
}

.story-interlude-card p {
    font-size: 1.12rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 18px;
}

.story-interlude-cue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-teal);
    font-weight: 600;
    font-size: 1rem !important;
    margin-top: 18px;
    animation: scrollNudge 2.2s ease-in-out infinite;
}

/* ============================================
   ZOOM OUT
   ============================================ */
.story-zoomout {
    background: linear-gradient(180deg, var(--story-bg) 0%, var(--story-bg-2) 100%);
    color: #fff;
    padding: 100px 0;
}

.story-zoomout .section-title { color: #fff; }
.story-zoomout .section-subtitle { color: rgba(255, 255, 255, 0.75); }

.story-zoomout .section-tag {
    background: rgba(36, 200, 185, 0.14);
    color: var(--story-teal);
    border: 1px solid rgba(36, 200, 185, 0.30);
}

.story-zoom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 48px 0 64px;
}

@media (max-width: 800px) { .story-zoom-grid { grid-template-columns: 1fr; } }

.story-zoom-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
}

.story-zoom-card-accent {
    background: linear-gradient(135deg, rgba(255, 121, 0, 0.14), rgba(216, 18, 113, 0.10));
    border-color: rgba(255, 121, 0, 0.30);
}

.story-zoom-card-teal {
    background: linear-gradient(135deg, rgba(36, 200, 185, 0.16), rgba(36, 200, 185, 0.06));
    border-color: rgba(36, 200, 185, 0.30);
}

.story-zoom-num {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 5vw, 3.6rem);
    font-weight: 300;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}

.story-zoom-card-accent .story-zoom-num {
    background: linear-gradient(135deg, var(--story-amber), var(--story-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-zoom-card-teal .story-zoom-num {
    color: var(--story-teal);
}

.story-zoom-label {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 600;
}

.story-zoom-label span {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.86rem;
    font-weight: 400;
    margin-top: 4px;
}

.story-zoom-cta {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding: 36px;
    background: rgba(36, 200, 185, 0.08);
    border: 1px solid rgba(36, 200, 185, 0.22);
    border-radius: 24px;
}

.story-zoom-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 12px;
}

.story-zoom-cta p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 26px;
    font-size: 1.02rem;
    line-height: 1.6;
}

.story-zoom-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.story-zoomout .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.30);
}

.story-zoomout .btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* ============================================
   METHOD + SOURCES
   ============================================ */
.story-method {
    background: var(--color-bg-alt);
    padding: 80px 0;
}

.story-method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 800px) { .story-method-grid { grid-template-columns: 1fr; } }

.story-method-grid h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-navy);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-teal);
}

.story-method-grid p {
    color: var(--color-text-light);
    font-size: 0.96rem;
    line-height: 1.7;
    margin-bottom: 14px;
}

.story-source-list {
    list-style: decimal;
    padding-left: 22px;
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.7;
}

.story-source-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--color-border);
}

.story-source-list li:last-child { border-bottom: 0; }

/* ============================================
   TRUST STRIP (reuses pattern)
   ============================================ */
.cco-trust-strip {
    background: var(--color-navy);
    color: #fff;
    padding: 48px 0;
    text-align: center;
}

.cco-trust-strip h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.95);
}

.cco-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.cco-trust-row span {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
