@import "./_variables.css";

/* ============================================================
   LUX Interactive 2026 — Base Stylesheet
   Built on Bootstrap 5 | Font: Lato (Google Fonts)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700&display=swap');

/* ------------------------------------------------------------
   3. RESET / BASE
   ------------------------------------------------------------ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-base);
    font-weight: var(--fw-reg);
    font-size: var(--fs-7); /* 16px base */
    line-height: var(--lh-150);
    color: var(--lux-black);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

img, svg {
    max-width: 100%;
    height: auto;
}

/* ------------------------------------------------------------
   4. TYPOGRAPHY SCALE
   ------------------------------------------------------------ */

/* --- FS-1 | 50px — Stats / hero numbers --- */
.fs-1, .lux-stat {
    font-size: var(--fs-1);
    line-height: var(--lh-125);
}

/* --- FS-2 | 40px — H1 --- */
h1, .fs-2, .lux-h1 {
    font-size: var(--fs-2);
    line-height: var(--lh-125);
    font-weight: var(--fw-reg);
}

/* --- FS-3 | 30px — H2 --- */
h2, .fs-3, .lux-h2 {
    font-size: var(--fs-3);
    line-height: var(--lh-125);
    font-weight: var(--fw-bld);
}

/* --- FS-4 | 22px — H3 --- */
h3, .fs-4, .lux-h3 {
    font-size: var(--fs-4);
    line-height: var(--lh-125);
    font-weight: var(--fw-bld);
}

/* --- FS-5 | 20px --- */
h4, .fs-5, .lux-h4 {
    font-size: var(--fs-5);
    line-height: var(--lh-125);
    font-weight: var(--fw-bld);
}

/* --- FS-6 | 18px — Intro copy / Eyebrow --- */
.fs-6, .lux-intro, .lux-eyebrow {
    font-size: var(--fs-6);
    line-height: var(--lh-150);
}

/* --- FS-7 | 16px — Body (base) --- */
p, .fs-7, .lux-body {
    font-size: var(--fs-7);
    line-height: var(--lh-150);
}

/* --- FS-8 | 14px — Small labels / card buttons --- */
.fs-8, .lux-label {
    font-size: var(--fs-8);
    line-height: var(--lh-150);
}

/* --- FS-9 | 12px — Mice type --- */
.fs-9, .lux-mice {
    font-size: var(--fs-9);
    line-height: var(--lh-150);
}

/* --- Font weight helpers --- */
.fw-reg {
    font-weight: var(--fw-reg);
}

.fw-bld {
    font-weight: var(--fw-bld);
}

.fw-blk {
    font-weight: var(--fw-blk);
}

/* --- Italic helpers --- */
.ff-italic {
    font-style: italic;
}

.ff-bold-italic {
    font-weight: var(--fw-bld);
    font-style: italic;
}

/* --- Eyebrow --- */
.lux-eyebrow {
    font-size: var(--fs-5);
    font-weight: var(--fw-bld);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--lux-black);
}

/* --- Intro copy (bold lead paragraph) --- */
.lux-intro {
    font-size: var(--fs-6);
    font-weight: var(--fw-bld);
    line-height: var(--lh-150);
}

/* --- Stat number --- */
.lux-stat {
    font-size: var(--fs-1);
    font-weight: var(--fw-blk);
    line-height: var(--lh-125);
    color: var(--lux-red);
}

/* --- Stat label --- */
.lux-stat-label {
    font-size: var(--fs-6);
    font-weight: var(--fw-reg);
    line-height: var(--lh-125);
}

/* --- Checkmark list --- */
.checkmark::before {
    content: "\2714";
    font-size: var(--fs-3);
    color: var(--lux-red);
    margin-right: 5px;
}

.lux-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .lux-checklist li {
        font-size: var(--fs-4);
        line-height: var(--lh-125);
        padding: 6px 0;
    }

        .lux-checklist li::before {
            content: "\2714";
            font-size: var(--fs-4);
            color: var(--lux-red);
            margin-right: 8px;
        }

/* --- Bullet copy --- */
.lux-bullet-text {
    font-size: var(--fs-4);
    line-height: var(--lh-125);
}

/* ------------------------------------------------------------
   5. COLOR UTILITY CLASSES
   ------------------------------------------------------------ */
.text-lux-red    { color: var(--lux-red) !important; }
.text-lux-black  { color: var(--lux-black) !important; }
.text-lux-teal   { color: var(--lux-teal) !important; }
.text-lux-navy   { color: var(--lux-navy) !important; }
.text-lux-gray   { color: var(--lux-black) !important; }
.text-lux-gold   { color: var(--lux-gold) !important; }
.text-white      { color: #ffffff !important; }

.bg-lux-red      { background-color: var(--lux-red) !important; }
.bg-lux-black    { background-color: var(--lux-black) !important; }
.bg-lux-teal     { background-color: var(--lux-teal) !important; }
.bg-lux-navy     { background-color: var(--lux-navy) !important; }
.bg-lux-red-alt  { background-color: var(--lux-red-alt) !important; }
.bg-cream        { background-color: var(--bg-cream) !important; }
.bg-off-white    { background-color: var(--bg-off-white) !important; }
.bg-warm-white   { background-color: var(--bg-warm-white) !important; }
.bg-teal-light   { background-color: var(--bg-teal-light) !important; }
.bg-navy-light   { background-color: var(--bg-navy-light) !important; }
.bg-gold-light   { background-color: var(--bg-gold-light) !important; }
.bg-gray-light   { background-color: var(--bg-gray-light) !important; }
.bg-f7           { background-color: var(--bg-f7) !important; }
.bg-f2           { background-color: var(--bg-f2) !important; }

/* ------------------------------------------------------------
   6. BUTTONS
   ------------------------------------------------------------ */

/* Shared button base */
.btn-lux {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: var(--btn-h-lg); /* 50px */
    padding: 0 24px;
    font-family: var(--ff-base);
    font-size: var(--fs-8); /* 14px */
    font-weight: var(--fw-bld);
    line-height: 1;
    border-radius: var(--btn-h-lg); /* pill */
    border: 2px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.15s ease;
    white-space: nowrap;
}

    .btn-lux:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }

/* Small variant (40px) */
.btn-lux-sm {
    height: var(--btn-h-md);
    font-size: var(--fs-7); /* 16px — matches FS-7 button spec */
    padding: 0 20px;
}

/* --- Primary (red fill) --- */
.btn-lux-primary {
    background-color: var(--lux-red);
    color: #ffffff;
    border-color: var(--lux-red);
}

    .btn-lux-primary:hover,
    .btn-lux-primary:focus {
        background-color: #c41a1d;
        border-color: #c41a1d;
        color: #ffffff;
    }

/* --- Primary Outline --- */
.btn-lux-primary-outline {
    background-color: transparent;
    color: var(--lux-red);
    border-color: var(--lux-red);
}

    .btn-lux-primary-outline:hover,
    .btn-lux-primary-outline:focus {
        background-color: var(--lux-red);
        color: #ffffff;
    }

/* --- Secondary (black fill) --- */
.btn-lux-secondary {
    background-color: var(--lux-black);
    color: #ffffff;
    border-color: var(--lux-black);
}

    .btn-lux-secondary:hover,
    .btn-lux-secondary:focus {
        background-color: #444444;
        border-color: #444444;
        color: #ffffff;
    }

/* --- Secondary White (white fill, black text) --- */
.btn-lux-white {
    background-color: #ffffff;
    color: var(--lux-black);
    border-color: #ffffff;
}

    .btn-lux-white:hover,
    .btn-lux-white:focus {
        background-color: var(--bg-f2);
        color: var(--lux-black);
    }

/* --- Secondary Outline --- */
.btn-lux-secondary-outline {
    background-color: transparent;
    color: var(--lux-black);
    border-color: var(--lux-black);
}

    .btn-lux-secondary-outline:hover,
    .btn-lux-secondary-outline:focus {
        background-color: var(--lux-black);
        color: #ffffff;
    }

/* Arrow icon helper (Font Awesome fa-arrow-right-long) */
.btn-lux .btn-arrow {
    font-size: var(--fs-7);
}

/* Hover lift — all .btn-lux share this (like the "Top" pill) */
.btn-lux {
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.15s ease;
}

    .btn-lux:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }

/* --- Card outline button (white border, used on dark cards) --- */
.btn-lux-card-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: var(--btn-h-md); /* 40px */
    padding: 0 20px;
    font-family: var(--ff-base);
    font-size: var(--fs-8);
    font-weight: var(--fw-bld);
    line-height: 1;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.15s ease;
}

    .btn-lux-card-outline:hover {
        background: rgba(255,255,255,0.15);
        border-color: #ffffff;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    }

/* --- Industry teal outline button --- */
.btn-lux-teal-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    font-family: var(--ff-base);
    font-size: var(--fs-9);
    font-weight: var(--fw-bld);
    line-height: 1;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
}

    .btn-lux-teal-outline:hover {
        background: rgba(255,255,255,0.15);
        border-color: #ffffff;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* ------------------------------------------------------------
   8. HERO / HEADER
   ------------------------------------------------------------ */
.lux-hero {
    min-height: 430px; /* per spec */
    display: flex;
    align-items: center;
    padding: 80px 0;
}

    .lux-hero h1,
    .lux-hero .lux-h1 {
        font-size: var(--fs-2);
        font-weight: var(--fw-blk);
        line-height: var(--lh-125);
    }

/* Centered hero variation (10 col) */
.lux-hero-centered {
    text-align: center;
}

    .lux-hero-centered .lux-hero-inner {
        max-width: calc(10/12 * 100%);
        margin: 0 auto;
    }

.hero-eyebrow {
    font-size: var(--fs-8);
    font-weight: var(--fw-bld);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--lux-black);
    margin-bottom: 14px
}
/* ------------------------------------------------------------
   9. SECTION WRAPPER
   ------------------------------------------------------------ */
.lux-section {
    padding: var(--section-gap) 0;
}

    .lux-section + .lux-section {
        border-top: var(--rule-width) solid var(--rule-color);
    }

/* Horizontal rule */
.lux-rule {
    border: none;
    border-top: var(--rule-width) solid var(--rule-color);
    margin: 0;
}

.lux-rule-white {
    border-top-color: rgba(255,255,255,0.5);
}

/* ------------------------------------------------------------
   10. CARDS
   ------------------------------------------------------------ */

/* --- Base card --- */
.lux-card {
    border-radius: var(--card-radius); /* 10px */
    overflow: hidden;
    background: #ffffff;
    height: 100%;
}

/* Card image ratio 21:9 */
.lux-card-img {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
}

/* Card image ratio 16:9 */
.lux-card-img-16-9 {
    aspect-ratio: 16 / 9;
}

/* Card image ratio 3:2 */
.lux-card-img-3-2 {
    aspect-ratio: 3 / 2;
}

/* Card body */
.lux-card-body {
    padding: 24px;
}

/* Case study card — dark red-brown theme */
.lux-card-case {
    background-color: var(--lux-red-alt);
    color: #ffffff;
}

    .lux-card-case .lux-card-tag {
        font-size: var(--fs-9);
        font-weight: var(--fw-bld);
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .lux-card-case .lux-card-stat {
        font-size: var(--fs-3);
        font-weight: var(--fw-blk);
        line-height: var(--lh-125);
    }

    .lux-card-case h3,
    .lux-card-case .lux-card-title {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
    }

    .lux-card-case .lux-rule {
        border-top-color: rgba(255,255,255,0.3);
        margin: 12px 0;
    }

/* Industry / stat card — teal theme */
.lux-card-industry {
    background-color: var(--lux-teal);
    color: #ffffff;
}

    .lux-card-industry .lux-card-stat {
        font-size: var(--fs-3);
        font-weight: var(--fw-blk);
        line-height: var(--lh-125);
    }

    .lux-card-industry .lux-card-name {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
    }

    .lux-card-industry .lux-card-label {
        font-size: var(--fs-9);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
    }

    .lux-card-industry .lux-card-inner {
        border: 1px solid rgba(255,255,255,0.35);
        border-radius: 8px;
        padding: 20px;
    }

/* Standard content card */
.lux-card-standard {
    border: var(--rule-width) solid var(--rule-color);
}

    .lux-card-standard .lux-card-number {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        color: var(--lux-red);
    }

    .lux-card-standard h3 {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
    }

/* ------------------------------------------------------------
   11. STATS BLOCK
   ------------------------------------------------------------ */
.lux-stats-block {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.lux-stat-item .lux-stat-number {
    font-size: var(--fs-1);
    font-weight: var(--fw-blk);
    line-height: var(--lh-125);
    color: var(--lux-red);
}

.lux-stat-item .lux-stat-desc {
    font-size: var(--fs-5);
    line-height: var(--lh-125);
    color: var(--lux-black);
}

/* --- Card outline button (white border — use on dark colored cards) --- */
.btn-lux-card-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: var(--btn-h-md); /* 40px */
    padding: 0 20px;
    font-family: var(--ff-base);
    font-size: var(--fs-8); /* 14px */
    font-weight: var(--fw-bld);
    line-height: 1;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.7);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.15s ease;
}

    .btn-lux-card-outline:hover {
        background: rgba(255,255,255,0.15);
        border-color: #ffffff;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 14px rgba(0,0,0,0.2);
    }

/* --- Teal section outline button (smaller, used on teal backgrounds) --- */
.btn-lux-teal-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 36px;
    padding: 0 16px;
    font-family: var(--ff-base);
    font-size: var(--fs-9); /* 12px */
    font-weight: var(--fw-bld);
    line-height: 1;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.6);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.22s ease, border-color 0.22s ease, transform 0.15s ease, box-shadow 0.22s ease;
}

    .btn-lux-teal-outline:hover {
        background: rgba(255,255,255,0.15);
        border-color: #ffffff;
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    }

/* ------------------------------------------------------------
   13. LAYOUT HELPERS
   ------------------------------------------------------------ */

/* 12-column full-width content area */
.lux-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 10-column centered (hero headings) */
.lux-col-10-center {
    max-width: calc(10/12 * 100%);
    margin: 0 auto;
}

/* Divider rule variants */
.lux-divider {
    width: 100%;
    height: 1px;
    background: var(--rule-color);
    margin: 40px 0;
}

.lux-divider-white {
    background: rgba(255,255,255,0.5);
}

/* ------------------------------------------------------------
   14. IMAGE ASPECT RATIO WRAPPERS
   ------------------------------------------------------------ */
.ratio-21-9 {
    aspect-ratio: 21 / 9;
}

.ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.ratio-3-2 {
    aspect-ratio: 3 / 2;
}

    .ratio-21-9 img,
    .ratio-16-9 img,
    .ratio-3-2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--card-radius);
    }

/* ------------------------------------------------------------

   15. ROTATING LOGO BAR
       ------------------------------------------------------------ */

.logo-bar {
    background: var(--bg-f7);
    border-top: 1px solid var(--rule-color);
    border-bottom: 1px solid var(--bg-f2);
    padding: 38px 0
}

.logo-item img {
    max-height: 50px;
    max-width: auto;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    /* Optional — for color logos that need to read as monochrome on the gray bar: */
    /* filter: grayscale(100%); opacity: .65; transition: filter .2s ease, opacity .2s ease; */
}
/* .logo-item:hover img{ filter: grayscale(0); opacity: 1; } */
.logo-track-wrapper {
    overflow: hidden;
    position: relative
}

    .logo-track-wrapper::before,
    .logo-track-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 80px;
        z-index: 2;
        pointer-events: none
    }

    .logo-track-wrapper::before {
        left: 0;
        background: linear-gradient(to right,var(--bg-f7),transparent)
    }

    .logo-track-wrapper::after {
        right: 0;
        background: linear-gradient(to left,var(--bg-f7),transparent)
    }

.logo-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: logoScroll 50s linear infinite
}

    .logo-track:hover {
        animation-play-state: paused
    }

@keyframes logoScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.logo-item {
    flex-shrink: 0;
    border-radius: 4px;
    height: 40px;
    width: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-9);
    font-weight: var(--fw-bld);
    color: #777;
    letter-spacing: .04em;
    margin-right: 48px;
}


/* ------------------------------------------------------------
   16. PAGE COMPONENTS — shared section patterns
   ------------------------------------------------------------
   Background colors STAY LOCAL on each page so sections can be
   re-tinted per page. Exceptions — fully consolidated here:
     .stats-section, .testimonials-section,
     .client-stories, .story-card
   ------------------------------------------------------------ */

/* --- Image placeholders --- */
.img-ph {
    background: #d9d9d9;
    border-radius: var(--card-radius);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa
}

.img-ph-4-3 {
    aspect-ratio: 4/3
}

.img-ph-16-9 {
    aspect-ratio: 16/9
}

.img-ph-sq {
    aspect-ratio: 1/1
}

.img-ph-3-2 {
    aspect-ratio: 3/2
}

/* --- Section heading helpers --- */
.services-section {
    background: #fff;
    padding: 72px 0;
    border-top: 1px solid var(--rule-color)
}

.section-eyebrow {
    font-size: var(--fs-7);
    font-weight: var(--fw-reg);
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--lux-black);
    margin-bottom: 8px
}

.section-heading-center {
    text-align: center;
    margin-bottom: 48px
}

    .section-heading-center h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black)
    }

.product-section-intro {
    text-align: center;
    margin: -36px auto 40px;
    max-width: 900px;
}

/* --- Hero section (structure only — bg stays per-page) --- */
.hero-section {
    padding: 80px 0 60px;
    min-height: 430px;
    display: flex;
    align-items: center
}

    .hero-section h1 {
        font-size: var(--fs-2);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 20px
    }

.hero-body {
    font-size: var(--fs-7);
    line-height: var(--lh-150);
    color: var(--lux-black);
    margin-bottom: 32px
}

.hero-section img {
    border-radius: var(--card-radius);
    max-width: 100%;
    height: auto
}

/* --- Stats section (FULL — bg consolidated) --- */
.stats-section {
    background: #fff;
    padding: 40px 0
}

.stats-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap
}

.stat-item {
    flex: 1 1 200px;
    text-align: center;
    padding: 16px 40px;
    position: relative
}

    .stat-item + .stat-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 10%;
        height: 80%;
        width: 1px;
        background: var(--rule-color)
    }

.stat-number,
.stat-text {
    font-size: var(--fs-1);
    font-weight: var(--fw-blk);
    line-height: var(--lh-125);
    color: var(--lux-red)
}

.stat-label {
    font-size: var(--fs-6);
    font-weight: var(--fw-reg);
    line-height: var(--lh-125);
    color: var(--lux-black);
    margin-top: 6px
}

/* --- Testimonials section (FULL — bg consolidated) --- */
.testimonials-section {
    background: var(--bg-f2);
    padding: 72px 0;
    border-top: 1px solid var(--rule-color)
}

.testimonial-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 28px;
    height: 100%;
    border: 1px solid var(--bg-f2)
}

.testimonial-stars {
    color: var(--lux-red);
    font-size: var(--fs-7);
    margin-bottom: 10px
}

.testimonial-label {
    font-size: var(--fs-4);
    font-weight: var(--fw-reg);
    color: var(--lux-black);
    margin-bottom: 10px
}

.testimonial-text {
    font-size: var(--fs-7);
    line-height: var(--lh-150);
    color: var(--lux-black);
    margin-bottom: 16px
}

.testimonial-author {
    font-size: var(--fs-8);
    font-weight: var(--fw-bld);
    color: var(--lux-black)
}

    .testimonial-author span {
        display: block;
        font-weight: var(--fw-reg);
        color: var(--lux-gray)
    }

/* --- Client stories + story cards (FULL — bg consolidated) --- */
.client-stories {
    background: #fff;
    padding: 72px 0;
    border-top: 1px solid var(--rule-color)
}

.story-card {
    border-radius: var(--card-radius);
    overflow: hidden;
    height: 100%
}

.story-card-img {
    width: 100%;
    aspect-ratio: 21/9;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.18);
    color: rgba(255,255,255,.4)
}

.story-card-body {
    padding: 24px
}

.story-card-1 {
    background-color: var(--lux-red-alt);
    color: #fff
}

.story-card-2 {
    background-color: var(--lux-teal);
    color: #fff
}

.story-card-3 {
    background-color: var(--lux-gray);
    color: #fff
}

.story-tag {
    font-size: var(--fs-9);
    font-weight: var(--fw-bld);
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .85;
    margin-bottom: 4px
}

.story-stat {
    font-size: var(--fs-3);
    font-weight: var(--fw-blk);
    line-height: 1.1
}

.story-stat-sub {
    font-size: var(--fs-9);
    font-weight: var(--fw-bld);
    opacity: .8;
    margin-bottom: 10px
}

.story-title {
    font-size: var(--fs-5);
    font-weight: var(--fw-bld);
    line-height: var(--lh-125);
    margin-bottom: 20px
}

.sc-rule {
    border: none;
    border-top: 1px solid rgba(255,255,255,.3);
    margin: 10px 0
}

/* --- Services section cards (clickable, same on every page) --- */
.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    transition: transform .22s ease, box-shadow .22s ease;
}

    .service-card:hover,
    .service-card:focus-visible {
        transform: translateY(-4px);
        box-shadow: 0 14px 32px rgba(0,0,0,.14);
        color: inherit;
        text-decoration: none;
        outline: none;
    }

    .service-card:active {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0,0,0,.18);
    }

    .service-card img {
        display: block;
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
    }

.service-card-body {
    padding: 0 24px 24px;
    flex: 1;
}

.service-card h3 {
    font-size: var(--fs-5);
    font-weight: var(--fw-bld);
    line-height: var(--lh-125);
    color: var(--lux-black);
    margin: 14px 0 0;
}

/* --- Audit section (structure only — bg stays per-page) --- */
.audit-section {
    padding: 80px 0;
    border-top: 1px solid var(--rule-color)
}

    .audit-section h2 {
        text-align: center;
        margin-bottom: 14px
    }

    .audit-section .audit-intro {
        font-size: var(--fs-6);
        line-height: var(--lh-150);
        color: var(--lux-black);
        text-align: center;
        max-width: 980px;
        margin: 0 auto 28px
    }

    .audit-section .ac-list-heading {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        color: var(--lux-black);
        margin-bottom: 10px
    }

    .audit-section .ac-tagline {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        color: var(--lux-black);
        margin-bottom: 14px
    }

    .audit-section img {
        display: block;
        max-width: 100%;
        height: auto
    }

.audit-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}

    .audit-list li {
        font-size: var(--fs-6);
        line-height: var(--lh-150);
        padding: 10px 0;
        display: flex;
        align-items: flex-start;
        gap: 14px
    }

        .audit-list li i {
            color: var(--lux-red);
            margin-top: 5px;
            flex-shrink: 0;
            font-size: var(--fs-4)
        }

        .audit-list li strong {
            font-weight: var(--fw-bld);
            color: var(--lux-black)
        }
/* Video card — used inside .audit-section as image alternative */
.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: var(--card-radius);
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,.12)
}

    .video-card iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
        display: block
    }

/* --- Connect-card grid (numbered image cards)
       Used on product/service pages for "How X connects" 3-up layouts.
       The .connect-card-heading wrapper mirrors .solution-item-heading
       so the number+h3 combo lines up the same way as icon+h3. ---------- */
.connect-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,.05);
    height: 100%
}

    .connect-card img {
        display: block;
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover
    }

.connect-card-body {
    padding: 20px 24px 24px
}

.connect-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px
}

    .connect-card-heading .connect-card-number {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        color: var(--lux-red);
        flex-shrink: 0;
        margin-top: 3px;
        width: 36px;
        text-align: center;
        line-height: 1
    }

    .connect-card-heading h3 {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin: 0
    }

.connect-card-body p {
    font-size: var(--fs-7);
    line-height: var(--lh-150);
    color: var(--lux-black);
    margin: 0
}

/* --- Problem section (structure only — bg stays per-page)
       Used on industry pages above the client-stories block. ----- */
.problem-section {
    padding: 72px 0
}

    .problem-section .ps-intro {
        font-size: var(--fs-6);
        line-height: var(--lh-150);
        color: var(--lux-black);
        text-align: center;
        max-width: 980px;
        margin: 0 auto 48px
    }

    .problem-section img {
        border-radius: var(--card-radius)
    }

.problem-item {
    margin-bottom: 24px
}

    .problem-item:last-child {
        margin-bottom: 0
    }

    .problem-item h3 {
        font-size: var(--fs-4);
        font-weight: var(--fw-bld);
        color: var(--lux-black);
        line-height: var(--lh-125);
        margin-bottom: 8px
    }

    .problem-item p {
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        color: var(--lux-black);
        margin: 0
    }

/* --- Solution section (structure only — bg stays per-page)
       Left intro + right 2-up icon grid pattern. ----------------- */
.solution-section {
    padding: 80px 0;
    border-top: 1px solid var(--rule-color)
}

    .solution-section h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 18px
    }

    .solution-section .ss-intro {
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        color: var(--lux-black)
    }

.solution-item {
    margin-bottom: 8px
}

.solution-item-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px
}

    .solution-item-heading .ss-icon {
        font-size: var(--fs-3);
        color: var(--lux-red);
        flex-shrink: 0;
        margin-top: 3px;
        width: 36px;
        text-align: center;
        line-height: 1
    }

    .solution-item-heading h3 {
        font-size: var(--fs-6);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin: 0
    }

.solution-item p {
    font-size: var(--fs-7);
    line-height: var(--lh-150);
    color: var(--lux-black);
    margin: 0;
    padding-left: 0px
}

/* --- Partnership stages section (structure only — bg stays per-page)
       Two-column "Understand / Design / Build / Integrate / Evolve". */
.partnership-stages-section {
    padding: 72px 0;
    border-top: 1px solid var(--rule-color)
}

    .partnership-stages-section h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 32px
    }

    .partnership-stages-section .partnership-intro {
        font-size: var(--fs-6);
        line-height: var(--lh-150);
        color: var(--lux-black);
        margin-bottom: 32px
    }

    .partnership-stages-section img {
        border-radius: var(--card-radius)
    }

.pstage-item {
    margin-bottom: 24px
}

    .pstage-item:last-child {
        margin-bottom: 0
    }

    .pstage-item h3 {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        color: var(--lux-black);
        line-height: var(--lh-125);
        margin-bottom: 6px
    }

    .pstage-item .ps-subhead {
        font-size: var(--fs-7);
        font-weight: var(--fw-bld);
        color: var(--lux-black);
        margin: 0 0 6px
    }

    .pstage-item p {
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        color: var(--lux-black);
        margin: 0
    }

/* --- Why-LUX section (structure only — bg stays per-page)
       Industry "Why X Choose LUX" block. Almost always dark. ------ */
.why-lux-section {
    padding: 80px 0
}

    .why-lux-section .section-heading-center h2 {
        margin-bottom: 14px
    }

    .why-lux-section .wls-intro {
        font-size: var(--fs-6);
        line-height: var(--lh-175);
        text-align: center;
        max-width: 980px;
        margin: 0 auto 48px
    }

    .why-lux-section .wls-caption {
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        margin-top: 18px
    }

.why-lux-img {
    border-radius: var(--card-radius);
    overflow: hidden
}

    .why-lux-img img {
        width: 100%;
        height: auto;
        display: block
    }

.why-item {
    margin-bottom: 22px
}

    .why-item:last-child {
        margin-bottom: 0
    }

    .why-item h3 {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        margin-bottom: 6px
    }

    .why-item p {
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        margin: 0
    }

/* --- FAQ section (structure only — bg stays per-page)
       Wraps a .lux-accordion. ------------------------------------ */
.faq-section {
    padding: 72px 0;
    border-top: 1px solid var(--rule-color)
}

    .faq-section h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 32px
    }

/* --- Build-for section (structure only — bg stays per-page)
       "What We Build For X" left-heading + right icon-grid pattern. */
.build-for-section {
    padding: 80px 0;
    border-top: 1px solid var(--rule-color)
}

    .build-for-section h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 8px
    }

.build-item {
    margin-bottom: 8px
}

.build-item-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px
}

    .build-item-heading .bi-icon {
        font-size: 26px;
        color: var(--lux-red);
        flex-shrink: 0;
        margin-top: 2px;
        width: 36px;
        text-align: center;
        line-height: 1
    }

    .build-item-heading h3 {
        font-size: var(--fs-6);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin: 0
    }

.build-item p {
    font-size: var(--fs-7);
    line-height: var(--lh-150);
    color: var(--lux-black);
    margin: 0;
    padding-left: 0px
}

/* --- Industry-page audit-section image stacking on tablet/mobile --- */
@media (max-width: 991.98px) {
    .audit-section img {
        max-width: 520px;
        margin: 0 auto 24px
    }
}


/* --- Situation section (structure only — bg stays per-page) --- */
.situation-section {
    padding: 80px 0
}
    .situation-section h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 18px
    }

    .situation-section .ss-intro {
        font-size: var(--fs-6);
        line-height: var(--lh-175);
        color: var(--lux-black);
        margin-bottom: 28px
    }

/* --- Accordion (lux-accordion) --- */
.lux-accordion .accordion-item {
    border: none;
    border-top: 1px solid var(--rule-color);
    border-radius: 0 !important;
    background: transparent
}

    .lux-accordion .accordion-item:last-child {
        border-bottom: 1px solid var(--rule-color)
    }

.lux-accordion .accordion-button {
    background: transparent;
    padding: 20px 0;
    font-family: var(--ff-base);
    font-size: var(--fs-4);
    font-weight: var(--fw-reg);
    color: var(--lux-black);
    line-height: var(--lh-125);
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 14px
}

    .lux-accordion .accordion-button:focus {
        box-shadow: none
    }

    .lux-accordion .accordion-button:not(.collapsed) {
        color: var(--lux-red);
        background: transparent
    }

    .lux-accordion .accordion-button::after {
        display: none
    }

.lux-accordion .acc-icon {
    font-size: var(--fs-4);
    color: var(--lux-red);
    flex-shrink: 0;
    width: 24px;
    text-align: center
}

    .lux-accordion .acc-icon .icon-minus {
        display: none
    }

    .lux-accordion .acc-icon .icon-plus {
        display: inline
    }

.lux-accordion .accordion-button:not(.collapsed) .acc-icon .icon-minus {
    display: inline
}

.lux-accordion .accordion-button:not(.collapsed) .acc-icon .icon-plus {
    display: none
}

.lux-accordion .accordion-body {
    padding: 0 0 24px 38px;
    font-size: var(--fs-6);
    line-height: var(--lh-150);
    color: var(--lux-black)
}

    .lux-accordion .accordion-body p {
        margin-bottom: 0;
        font-size: var(--fs-6);
    }


/* §10 VALUE PROPS — page-unique */
.value-section {
    background: var(--bg-f7);
    padding: 80px 0;
    border-top: 1px solid var(--rule-color)
}

.value-left-intro {
    font-size: var(--fs-7);
    line-height: var(--lh-150);
    color: var(--lux-black)
}

.value-card {
    padding-bottom: 8px
}

.value-card-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 10px
}

    .value-card-heading .val-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px
    }

        .value-card-heading .val-icon i {
            color: var(--lux-red);
            font-size: 18px
        }

    .value-card-heading h3 {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin: 0
    }

.value-card p {
    font-size: var(--fs-7);
    line-height: var(--lh-150);
    color: var(--lux-black);
    margin: 0;
    padding-left: 0
}

/* ------------------------------------------------------------
   16b. CASE STUDY COMPONENTS — shared across all case-study pages
   ------------------------------------------------------------
   Background colors stay LOCAL on each page (hero, dark-cta, etc.)
   so sections can be re-tinted per study. Everything else lives here.
   ------------------------------------------------------------ */

/* --- Outcomes section (sidebar quote card + checklist) --- */
.outcomes-section {
    background: var(--bg-f7);
    padding: 72px 0;
    border-top: 1px solid var(--rule-color)
}

.outcome-side-card {
    background: #fff;
    border-radius: var(--card-radius);
    overflow: hidden;
    border: 1px solid var(--bg-c9);
    height: 100%;
    display: flex;
    flex-direction: column
}

    .outcome-side-card .osc-img {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        display: block;
        background: #d9d9d9
    }

    .outcome-side-card .osc-body {
        padding: 22px;
        border-top: 1px solid var(--rule-color)
    }

    .outcome-side-card .osc-label {
        font-size: var(--fs-5);
        font-weight: var(--fw-reg);
        color: var(--lux-black);
        line-height: var(--lh-125);
        margin-bottom: 10px
    }

    .outcome-side-card .osc-quote {
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        color: var(--lux-black);
        font-style: italic;
        margin: 0 0 14px
    }

    .outcome-side-card .osc-author {
        font-size: var(--fs-8);
        font-weight: var(--fw-bld);
        color: var(--lux-black);
        line-height: var(--lh-125)
    }

        .outcome-side-card .osc-author span {
            display: block;
            font-weight: var(--fw-reg);
            color: var(--lux-gray);
            margin-top: 2px
        }

.outcomes-list-heading {
    font-size: var(--fs-3);
    font-weight: var(--fw-bld);
    line-height: var(--lh-125);
    color: var(--lux-black);
    margin-bottom: 24px
}

.outcomes-list {
    list-style: none;
    padding: 0;
    margin: 0
}

    .outcomes-list li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 10px 0;
        font-size: var(--fs-6);
        line-height: var(--lh-175);
        color: var(--lux-black)
    }

        .outcomes-list li i {
            color: var(--lux-red);
            font-size: var(--fs-6);
            flex-shrink: 0;
            margin-top: 4px;
            width: 22px;
            text-align: center
        }

        .outcomes-list li strong {
            font-weight: var(--fw-bld);
            color: var(--lux-black)
        }

/* --- Dark CTA strip --- */
.dark-cta-strip {
    background: var(--lux-teal);
    padding: 48px 0;
    text-align: center;
    color: #fff
}

    .dark-cta-strip h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        color: #fff;
        line-height: var(--lh-125);
        margin-bottom: 24px
    }

/* --- Narrative sections (Challenge / Solution two-column prose) --- */
.narrative-section {
    background: #fff;
    padding: 72px 0
}

    .narrative-section h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 32px
    }

.narrative-item {
    margin-bottom: 28px
}

    .narrative-item:last-child {
        margin-bottom: 0
    }

    .narrative-item h3 {
        font-size: var(--fs-5);
        font-weight: var(--fw-bld);
        color: var(--lux-black);
        line-height: var(--lh-125);
        margin-bottom: 8px
    }

    .narrative-item p {
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        color: var(--lux-black);
        margin: 0
    }

.narrative-decoration {
    display: flex;
    align-items: flex-end;
    justify-content: left;
    padding-top: 16px
}

    .narrative-decoration img {
        max-width: 300px;
        width: 60%;
        height: auto
    }

/* --- Quote callout (cream band with portrait) --- */
.quote-callout-section {
    background: var(--bg-warm-cream);
    padding: 72px 0
}

.quote-callout-text {
    font-size: var(--fs-4);
    font-weight: var(--fw-reg);
    line-height: var(--lh-150);
    color: var(--lux-black);
    margin-bottom: 24px
}

.quote-callout-author {
    font-size: var(--fs-7);
    font-weight: var(--fw-bld);
    color: var(--lux-black);
    line-height: var(--lh-125)
}

    .quote-callout-author span {
        display: block;
        font-weight: var(--fw-reg);
        color: var(--lux-gray);
        margin-top: 2px
    }

.quote-callout-section img {
    border-radius: var(--card-radius)
}

/* --- Pull quote (gold band with decorative image) --- */
.pull-quote-section {
    background: var(--bg-chart-gold);
    padding: 72px 0;
    border-top: 1px solid var(--rule-color)
}

.pull-quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center
}

    .pull-quote-decoration img {
        max-width: auto;
        width: auto;
        height: auto
    }

.pull-quote-body {
    font-size: var(--fs-4);
    font-weight: var(--fw-reg);
    font-style: italic;
    line-height: var(--lh-150);
    color: var(--lux-black);
    margin-bottom: 18px
}

.pull-quote-attribution {
    font-size: var(--fs-7);
    font-weight: var(--fw-bld);
    color: var(--lux-black);
    line-height: var(--lh-125)
}

/* --- Before / After comparison table --- */
.compare-section {
    background: #fff;
    padding: 72px 0
}

    .compare-section h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 24px
    }

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--fs-7);
    line-height: var(--lh-150)
}

    .compare-table thead th {
        background: var(--bg-chart-gold);
        color: var(--lux-black);
        font-size: var(--fs-7);
        font-weight: var(--fw-bld);
        text-align: left;
        padding: 14px 18px;
        border-bottom: 1px solid var(--rule-color)
    }

    .compare-table tbody td {
        padding: 16px 18px;
        color: var(--lux-black);
        vertical-align: top;
        border-bottom: 1px solid var(--rule-color)
    }

    .compare-table tbody tr:nth-child(odd) td {
        background: #F7F2E6
    }

    .compare-table tbody tr:nth-child(even) td {
        background: #fff
    }

    .compare-table tbody td:first-child {
        font-weight: var(--fw-bld)
    }

/* --- Partnership CTA (cream band with checklist) --- */
.partnership-cta-section {
    background: var(--bg-warm-cream);
    padding: 72px 0;
    border-top: 1px solid var(--rule-color)
}

    .partnership-cta-section h2 {
        font-size: var(--fs-3);
        font-weight: var(--fw-bld);
        line-height: var(--lh-125);
        color: var(--lux-black);
        margin-bottom: 18px
    }

    .partnership-cta-section .pcs-intro {
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        color: var(--lux-black);
        margin-bottom: 24px
    }

.partnership-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px
}

    .partnership-checklist li {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 10px 0;
        font-size: var(--fs-7);
        line-height: var(--lh-150);
        color: var(--lux-black)
    }

        .partnership-checklist li i {
            color: var(--lux-red);
            font-size: var(--fs-6);
            flex-shrink: 0;
            margin-top: 4px;
            width: 22px;
            text-align: center
        }

.partnership-cta-section img {
    border-radius: var(--card-radius)
}

/* --- Case study responsive tweaks --- */
@media (max-width: 991.98px) {
    .narrative-decoration {
        padding-top: 24px
    }

        .narrative-decoration img {
            max-width: 160px
        }

    .pull-quote-decoration {
        margin-bottom: 24px
    }

        .pull-quote-decoration img {
            max-width: 160px
        }
}

@media (max-width: 767.98px) {
    .compare-table thead th, .compare-table tbody td {
        padding: 12px 12px;
        font-size: var(--fs-8)
    }

    .quote-callout-text {
        font-size: var(--fs-5)
    }

    .pull-quote-body {
        font-size: var(--fs-5)
    }
}


/* ------------------------------------------------------------
   17. RESPONSIVE OVERRIDES
   ------------------------------------------------------------ */
@media (max-width: 991.98px) {
    :root {
        --fs-1: 40px;
        --fs-2: 32px;
        --fs-3: 26px;
        --fs-4: 20px;
    }

    .lux-hero {
        min-height: auto;
        padding: 20px 0;
    }

    /* Hero sections: stack image above the heading on mobile/tablet.
     Each .hero-section uses a single Bootstrap .row with two columns
     (text first, image second). Reversing flex direction puts the
     image on top once the columns wrap below the lg breakpoint. */
    @media (max-width: 991.98px) {
        .hero-section .row,
        .lux-hero .row {
            flex-direction: column-reverse;
        }
            /* Image is now visually first — kill its inherited gutter margin-top
     so it sits flush below the section's padding. */
            .hero-section .row > *:last-child,
            .lux-hero .row > *:last-child {
                margin-top: 0;
            }
    }

    @media (max-width: 767.98px) {
        :root {
            --fs-1: 36px;
            --fs-2: 28px;
            --fs-3: 22px;
            --fs-4: 18px;
            --fs-5: 18px;
        }

        .lux-section {
            padding: 48px 0;
        }

        .lux-hero {
            padding: 48px 0;
        }

        .lux-col-10-center {
            max-width: 100%;
        }
    }
}

/* ------------------------------------------------------------
   18. BLOG STYLES
   ------------------------------------------------------------ */

.lux-filter-link {
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--lux-black);
    text-decoration: none;
    font-size: var(--fs-7);
    font-weight: var(--fw-reg);
    transition: color 0.15s ease;
}

.lux-filter-link:hover,
.lux-filter-link:focus {
    color: var(--lux-red) !important;
}

.lux-filter-link.active {
    color: var(--lux-red) !important;
    font-weight: var(--fw-bld);
}