/* ==========================================================================
   Company page — journey / leadership / clients / capacity sections.
   Same design language as contact.css / products-list.css: near-black ink,
   orange accent, Inter Tight headings + Instrument Sans body.
   ========================================================================== */

.company-page {
    --co-ink: #14171c;
    --co-muted: #5c6068;
    --co-line: #e4e3e0;
    --co-surface: #f6f5f3;
    --co-orange: #f86905;
    --co-radius-lg: 24px;
    --co-radius-md: 16px;
    background: #ffffff;
    color: var(--co-ink);
}

.company-page * {
    box-sizing: border-box;
}

.co-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 640px) {
    .co-container {
        padding: 0 18px;
    }
}

/* ---- Full-bleed hero ---- */
.co-hero-full {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.co-hero-full img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.co-hero-full::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 23, 28, 0.25) 0%, rgba(20, 23, 28, 0.78) 100%);
    z-index: 1;
}

.co-hero-full-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 64px 0 56px;
}

.co-hero-giant {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(52px, 9vw, 132px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0 0 48px;
}

.co-hero-full-bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.co-hero-subtitle {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(24px, 3.2vw, 38px);
    line-height: 1.2;
    color: #fff;
    margin: 0 0 14px;
}

.co-hero-text {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 44ch;
    margin: 0;
}

@media (max-width: 640px) {
    .co-hero-full-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
}

/* ---- Breadcrumb ---- */
.co-breadcrumb {
    padding: 24px 0 0;
}

.co-breadcrumb-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--co-muted);
}

.co-breadcrumb-link {
    color: var(--co-muted);
    text-decoration: none;
}

.co-breadcrumb-link:hover {
    color: var(--co-orange);
}

.co-breadcrumb-current {
    color: var(--co-ink);
    font-weight: 600;
}

.co-breadcrumb-sep {
    opacity: 0.55;
}

/* ---- Intro hero (badge + headline + since/copy/cta + location strip) ---- */
.co-intro-hero {
    position: relative;
    padding: 56px 0 40px;
    /* background:
        repeating-linear-gradient(90deg, var(--co-line) 0 1px, transparent 1px 25%),
        radial-gradient(circle, #d8d7d3 1px, transparent 1px) 0 0 / 22px 22px;
    background-color: var(--co-surface); */
}

.co-intro-hero-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.co-intro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--co-line);
    border-radius: 999px;
    padding: 8px 18px 8px 14px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--co-ink);
    margin: 0 0 20px;
}

.co-intro-hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--co-orange);
    flex: none;
}

.co-intro-hero-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--co-ink);
    margin: 0;
}

.co-intro-hero-title em {
    font-style: normal;
    color: var(--co-orange);
}

.co-intro-hero-right {
    max-width: 320px;
    flex: none;
}

.co-intro-hero-since {
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--co-muted);
    text-transform: uppercase;
    margin: 0 0 12px;
}

.co-intro-hero-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--co-muted);
    margin: 0 0 22px;
}

.co-intro-hero-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 72px;
    padding-top: 20px;
    border-top: 1px solid var(--co-line);
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--co-muted);
    text-transform: uppercase;
}

@media (max-width: 860px) {
    .co-intro-hero-top {
        align-items: flex-start;
    }

    .co-intro-hero-right {
        max-width: none;
    }

    .co-intro-hero-bottom {
        margin-top: 40px;
    }
}

/* ---- Kicker pill (reused for "Our journey" / "Our clients") ---- */
.co-kicker-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--co-line);
    border-radius: 999px;
    padding: 7px 16px 7px 12px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: var(--co-ink);
}

.co-kicker-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 2px;
    background: var(--co-orange);
    flex: none;
}

/* ---- Split hero ---- */
.co-split-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 560px;
    /* margin-top: 24px; */
}

.co-split-hero-media {
    position: relative;
    overflow: hidden;
}

.co-split-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-split-hero-panel {
    position: relative;
    background: linear-gradient(135deg, #3a3a3a 0%, #1f1f1f 55%, #0f0f0f 100%);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.co-split-hero-text {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.55;
    font-weight: 600;
    color: #fff;
    max-width: 34ch;
    margin: 0 0 28px;
}

.co-split-hero-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.co-btn-team {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--co-ink);
    color: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 200ms ease;
}

.co-btn-team:hover {
    transform: translateY(-2px);
}

.co-btn-team-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--co-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.co-btn-team-icon svg {
    width: 17px;
    height: 17px;
}

.co-link-brochure {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--co-ink);
    text-decoration: none;
}

.co-link-brochure svg {
    width: 17px;
    height: 17px;
}

.co-link-brochure:hover {
    color: #fff;
}

.co-marquee {
    margin-top: auto;
    padding-top: 40px;
    overflow: hidden;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.co-marquee-track {
    display: inline-flex;
    gap: 28px;
    animation: co-marquee-scroll 22s linear infinite;
}

.co-marquee-track span {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: clamp(38px, 6vw, 64px);
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.28);
    white-space: nowrap;
}

@keyframes co-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) {
    .co-split-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .co-split-hero-media {
        aspect-ratio: 16 / 10;
    }
}

/* ---- Journey section ---- */
.co-journey {
    padding: 96px 0;
    border-bottom: 1px solid var(--co-line);
}

.co-journey-head {
    max-width: 900px;
    margin: 20px 0 56px;
}

.co-journey-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    color: var(--co-ink);
    margin: 0;
}

.co-journey-title em {
    font-style: normal;
    color: var(--co-orange);
}

.co-journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 32px;
    align-items: start;
}

.co-leader-card {
    background: var(--co-ink);
    border-radius: var(--co-radius-md);
    aspect-ratio: 4 / 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 24px;
    text-align: center;
}

.co-leader-card svg {
    width: 44px;
    height: 44px;
    color: rgba(255, 255, 255, 0.55);
}

.co-leader-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.co-leader-text {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.co-story-title,
.co-capabilities-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 21px;
    color: var(--co-ink);
    margin: 0 0 18px;
}

.co-story p {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--co-muted);
    margin: 0 0 16px;
}

.co-story p:last-child {
    margin-bottom: 0;
}

.co-capabilities-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    border-top: 1px solid var(--co-line);
}

.co-capabilities-list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 2px;
    border-bottom: 1px solid var(--co-line);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--co-ink);
    text-decoration: none;
}

.co-capabilities-list li a svg {
    width: 16px;
    height: 16px;
    color: var(--co-orange);
    flex: none;
    transition: transform 180ms ease;
}

.co-capabilities-list li a:hover svg {
    transform: translate(3px, -3px);
}

.co-btn-dark {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--co-ink);
    color: #fff;
    border-radius: 999px;
    padding: 6px 6px 6px 22px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 200ms ease;
}

.co-btn-dark:hover {
    transform: translateY(-2px);
}

.co-btn-dark-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--co-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.co-btn-dark-icon svg {
    width: 15px;
    height: 15px;
    color: #fff;
}

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

    .co-leader-card {
        aspect-ratio: 16 / 9;
    }
}

/* ---- Future / metallurgy split section ---- */
.co-future-dark {
    background: var(--co-ink);
    padding: 56px 0 0;
}

.co-future-tag {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--co-orange);
    margin: 0 0 16px;
}

.co-future-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(30px, 4.2vw, 46px);
    line-height: 1.2;
    text-align: center;
    color: #fff;
    max-width: 14ch;
    margin: 0 auto 48px;
}

.co-future-title em {
    font-style: normal;
}

.co-future-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.co-future-copy p {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 20px;
}

.co-future-copy p:last-child {
    margin-bottom: 0;
}

.co-future-media {
    border-radius: var(--co-radius-lg);
    overflow: hidden;
}

.co-future-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-future-media-top {
    aspect-ratio: 4 / 3;
    margin-bottom: -120px;
    position: relative;
    z-index: 2;
}

.co-future-bottom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: end;
    padding: 96px 0 96px;
}

.co-future-media-bottom {
    aspect-ratio: 4 / 3;
}

.co-future-foot p {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--co-muted);
    margin: 0 0 24px;
}

.co-future-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.co-btn-outline {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--co-line);
    border-radius: 999px;
    padding: 14px 26px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--co-ink);
    text-decoration: none;
    transition: border-color 180ms ease;
}

.co-btn-outline:hover {
    border-color: var(--co-ink);
}

@media (max-width: 900px) {
    .co-future-top-grid,
    .co-future-bottom-grid {
        grid-template-columns: 1fr;
    }

    .co-future-media-top {
        margin-bottom: 24px;
    }

    .co-future-bottom-grid {
        padding: 0 0 64px;
    }

    .co-future-media-bottom {
        order: 2;
    }

    .co-future-foot {
        order: 1;
    }
}

/* ---- Clients section ---- */
.co-clients {
    padding: 96px 0;
    border-bottom: 1px solid var(--co-line);
    text-align: center;
}

.co-clients-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--co-ink);
    margin: 20px 0 44px;
}

.co-clients-title em {
    font-style: normal;
    color: var(--co-orange);
}

.co-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.co-client-box {
    background: var(--co-surface);
    border-radius: var(--co-radius-md);
    aspect-ratio: 16 / 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.co-client-box img {
    max-width: 100%;
    max-height: 66px;
    width: auto;
    filter: grayscale(1);
    opacity: 0.75;
}

.co-clients-stats {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 1px solid var(--co-line);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
}

.co-clients-stats-lead {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 22px;
    color: var(--co-ink);
    max-width: 22ch;
    margin: 0;
}

.co-clients-stats-lead em {
    font-style: normal;
    color: var(--co-orange);
}

.co-clients-stats-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.co-clients-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 26px;
    color: var(--co-ink);
}

.co-clients-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12.5px;
    color: var(--co-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    max-width: 16ch;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .co-clients-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .co-clients-stats {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .co-clients-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ---- Case results ---- */
.co-results {
    padding: 96px 0;
    border-bottom: 1px solid var(--co-line);
}

.co-results-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.co-results-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(28px, 3.6vw, 40px);
    color: var(--co-ink);
    margin: 20px 0 0;
}

.co-results-title em {
    font-style: normal;
    color: var(--co-orange);
}

.co-results-nav {
    display: flex;
    gap: 10px;
}

.co-results-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--co-line);
    background: #fff;
    color: var(--co-ink);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.co-results-nav-btn:hover {
    background: var(--co-ink);
    border-color: var(--co-ink);
    color: #fff;
}

.co-results-nav-btn svg {
    width: 18px;
    height: 18px;
}

.co-results-stage {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
}

.co-result-slide {
    display: none;
}

.co-result-slide.is-active {
    display: contents;
}

.co-result-copy {
    background: var(--co-ink);
    border-radius: var(--co-radius-lg);
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 340px;
}

.co-result-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    color: #fff;
    margin: 0 0 14px;
}

.co-result-desc {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 36ch;
}

.co-result-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.co-result-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--co-orange);
    border: 1px solid rgba(248, 105, 5, 0.4);
    border-radius: 999px;
    padding: 8px 16px;
}

.co-result-view {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--co-ink);
    border-radius: 999px;
    padding: 8px 8px 8px 20px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none;
    flex: none;
}

.co-result-view span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--co-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.co-result-view span svg {
    width: 15px;
    height: 15px;
}

.co-result-media {
    position: relative;
    border-radius: var(--co-radius-lg);
    overflow: hidden;
    min-height: 340px;
}

.co-result-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.co-result-media-label {
    position: absolute;
    top: 24px;
    left: 24px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(20, 23, 28, 0.55);
    padding: 8px 14px;
    border-radius: 999px;
}

@media (max-width: 780px) {
    .co-results-stage,
    .co-result-slide.is-active {
        grid-template-columns: 1fr;
    }

    .co-result-copy,
    .co-result-media {
        min-height: 0;
    }

    .co-result-media {
        aspect-ratio: 16 / 10;
    }
}

.co-conversation {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px solid var(--co-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.co-conversation-lead {
    display: flex;
    align-items: center;
    gap: 20px;
}

.co-conversation-avatars {
    display: flex;
}

.co-conversation-avatars span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--co-surface);
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px var(--co-line);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--co-muted);
    margin-left: -14px;
}

.co-conversation-avatars span:first-child {
    margin-left: 0;
}

.co-conversation-avatars svg {
    width: 18px;
    height: 18px;
}

.co-conversation-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 19px;
    color: var(--co-ink);
    margin: 0 0 4px;
}

.co-conversation-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--co-muted);
    margin: 0;
}

@media (max-width: 640px) {
    .co-conversation {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ---- Quote / capacity banner ---- */
.co-quote-banner {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.co-quote-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.co-quote-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 23, 28, 0.45) 0%, rgba(20, 23, 28, 0.75) 100%);
    z-index: 1;
}

.co-quote-banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    padding: 56px 0;
}

.co-quote-heading {
    border-left: 3px solid var(--co-orange);
    padding-left: 20px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.3;
    color: #fff;
    max-width: 20ch;
    margin: 0;
}

.co-quote-stat {
    text-align: right;
}

.co-quote-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(30px, 4vw, 46px);
    color: #fff;
}

.co-quote-stat-label {
    display: block;
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 6px;
}

@media (max-width: 640px) {
    .co-quote-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .co-quote-stat {
        text-align: left;
    }
}
