/* ============================================================
   RJMC — Our Mission Page Styles  v2.0
   Matches: style.css  · Red · Teal · Deep palette
   Fonts: Playfair Display (display) · DM Sans (body)
   ============================================================ */

/* ── Variables (local fallbacks mirror style.css) ──────── */
:root {
    --gold: #C9A84C; /* kept for backward compat if used */
    --navy: #163745;
    --navy-deep: #0e2530;
    --navy-mid: #1a3a4a;
    --navy-soft: #2c5a6e;
    --white: #ffffff;
    --cream: #FFF6F6;
    --gray-200: #dde4e7;
    --text-body: #3d4a52;
    --text-muted: #7a8c94;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-xs: 0 1px 4px rgba(44,104,123,.07);
    --shadow-sm: 0 4px 16px rgba(44,104,123,.10);
    --shadow-md: 0 12px 40px rgba(44,104,123,.15);
    --shadow-lg: 0 24px 72px rgba(44,104,123,.20);
    --ease: cubic-bezier(.4,0,.2,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
}

/* ── UTILITY ────────────────────────────────────────────── */
.sec-pad {
    padding: 96px 0;
}

/* ══════════════════════════════════════════════════════════
   § 1 — MINI HERO
══════════════════════════════════════════════════════════ */
.om-mini-hero {
    position: relative;
    background-image: linear-gradient(145deg, rgba(22,55,69,.95) 0%, rgba(44,104,123,.88) 55%, rgba(140,199,196,.30) 100%), url('../images/rjmc-mini-banner.png');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    min-height: 310px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Geometry */
.om-hero-geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.om-hero-geo--1 {
    top: -70px;
    right: -70px;
    width: 340px;
    height: 340px;
    border: 1.5px solid rgba(140,199,196,.12);
    animation: omGeoSpin 24s linear infinite;
}

.om-hero-geo--2 {
    bottom: -90px;
    left: 8%;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(219,26,26,.08);
    animation: omGeoSpin 36s linear infinite reverse;
}

.om-hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(140,199,196,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(140,199,196,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

@keyframes omGeoSpin {
    to {
        transform: rotate(360deg);
    }
}

.om-hero-inner {
    position: relative;
    z-index: 2;
    padding: 68px 0 60px;
}

/* Breadcrumb */
.om-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    flex-wrap: wrap;
}

    .om-breadcrumb a {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(140,199,196,.65) !important;
        transition: color .25s;
    }

        .om-breadcrumb a:hover {
            color: var(--teal, #8CC7C4) !important;
        }

    .om-breadcrumb .bc-sep {
        font-size: 11px;
        color: rgba(255,255,255,.22);
    }

    .om-breadcrumb .bc-current {
        font-size: 11.5px;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: rgba(255,255,255,.40);
    }

/* Title row */
.om-hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.om-hero-accent {
    display: inline-block;
    width: 5px;
    height: 56px;
    background: linear-gradient(180deg, var(--red, #DB1A1A) 0%, var(--red-dark, #b31212) 100%);
    border-radius: 4px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(219,26,26,.35);
}

.om-hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white, #fff);
    line-height: 1.15;
    letter-spacing: -.3px;
    margin: 0 0 6px;
}

    .om-hero-h1 em {
        font-style: italic;
        color: #8CC7C4;
    }

.om-hero-tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: .5px;
    color: rgba(255,255,255,.50);
    margin: 0;
}

/* Pill tags */
.om-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.om-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .5px;
    color: rgba(255,255,255,.70);
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    padding: 6px 14px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    transition: all .25s var(--ease);
}

    .om-pill i {
        color: #8CC7C4;
        font-size: 12px;
    }

    .om-pill:hover {
        background: rgba(140,199,196,.15);
        border-color: rgba(140,199,196,.30);
        color: #fff;
    }

/* ══════════════════════════════════════════════════════════
   § 2 — CHIP / HEADING / DIVIDER  (shared helpers)
══════════════════════════════════════════════════════════ */
.om-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--deep, #2C687B);
    background: var(--deep-pale, #dbedf2);
    border: 1px solid rgba(44,104,123,.20);
    padding: 6px 16px 6px 12px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.om-chip--light {
    color: var(--red, #DB1A1A);
    background: var(--red-pale, #fde8e8);
    border-color: rgba(219,26,26,.20);
}

.om-chip-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--deep, #2C687B);
    flex-shrink: 0;
}

.om-chip--light .om-chip-dot {
    background: var(--red, #DB1A1A);
}

.om-sec-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    line-height: 1.22;
    margin-bottom: 12px;
}

    .om-sec-heading em {
        font-style: italic;
        color: var(--red, #DB1A1A);
    }

.om-divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--deep, #2C687B), var(--teal, #8CC7C4));
    border-radius: 3px;
    margin-bottom: 30px;
}

/* ══════════════════════════════════════════════════════════
   § 3 — MISSION STATEMENT SECTION
══════════════════════════════════════════════════════════ */
.om-statement-section {
    background: var(--off-white, #FFF6F6);
}

/* Statement card */
.om-statement-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-left: 5px solid var(--deep, #2C687B);
    border-radius: var(--radius-md);
    padding: 36px 36px 36px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    margin-bottom: 32px;
    transition: box-shadow .35s var(--ease), transform .35s var(--ease);
}

    .om-statement-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-3px);
    }

.om-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    line-height: 1;
    color: rgba(44,104,123,.10);
    position: absolute;
    top: 8px;
    left: 14px;
    pointer-events: none;
}

.om-statement-card p {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text-body, #3d4a52);
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* Highlights row */
.om-highlight-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.om-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    flex: 1 1 200px;
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-radius: var(--radius-md);
    padding: 18px 18px;
    box-shadow: var(--shadow-xs);
    transition: all .3s var(--ease);
}

    .om-highlight-item:hover {
        box-shadow: var(--shadow-sm);
        transform: translateY(-3px);
    }

.om-highlight-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep, #2C687B), var(--deep-light, #3d849a));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #8CC7C4;
    box-shadow: var(--shadow-sm);
    transition: transform .35s var(--ease-spring);
}

.om-highlight-item:hover .om-highlight-icon {
    transform: scale(1.12) rotate(-5deg);
}

.om-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 3px;
}

.om-highlight-desc {
    font-size: 12.5px;
    color: var(--text-muted, #7a8c94);
    line-height: 1.5;
}

/* ── Image Collage ────────────────────────────────────── */
.om-collage {
    display: grid;
    grid-template-rows: auto auto;
    gap: 12px;
}

.om-collage-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    box-shadow: var(--shadow-md);
}

    .om-collage-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s var(--ease);
    }

    .om-collage-main:hover img {
        transform: scale(1.04);
    }

.om-collage-badge {
    position: absolute;
    bottom: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(219,26,26,.90);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(219,26,26,.35);
}

    .om-collage-badge i {
        font-size: 18px;
    }

    .om-collage-badge small {
        font-size: 11px;
        font-weight: 400;
        opacity: .80;
        display: block;
    }

.om-collage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.om-collage-cell {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 120px;
    box-shadow: var(--shadow-xs);
    cursor: pointer;
}

    .om-collage-cell img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s var(--ease);
    }

    .om-collage-cell:hover img {
        transform: scale(1.08);
    }

.om-collage-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22,55,69,.80) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 10px 10px;
    opacity: 0;
    transition: opacity .3s var(--ease);
}

.om-collage-cell:hover .om-collage-overlay {
    opacity: 1;
}

.om-collage-overlay span {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    letter-spacing: .3px;
}

/* Accent stat cell */
.om-collage-cell--accent {
    background: linear-gradient(135deg, var(--deep, #2C687B) 0%, var(--deep-dark, #1f4e5f) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.om-collage-stat-block {
    text-align: center;
}

.om-cstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

    .om-cstat-num sup {
        font-size: 1rem;
    }

.om-cstat-lbl {
    font-size: 11px;
    font-weight: 500;
    color: rgba(140,199,196,.75);
    line-height: 1.4;
    margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   § 4 — MISSION PILLARS SECTION
══════════════════════════════════════════════════════════ */
.om-pillars-section {
    background: var(--gray-50, #f9fafa);
    padding: 96px 0;
}

.om-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.om-pillar-card {
    background: var(--white, #fff);
    border: 1px solid var(--gray-200, #dde4e7);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: all .4s var(--ease);
    position: relative;
}

    .om-pillar-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-8px);
    }

.om-pillar-img-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
}

    .om-pillar-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s var(--ease);
    }

.om-pillar-card:hover .om-pillar-img-wrap img {
    transform: scale(1.08);
}

.om-pillar-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(22,55,69,.55) 100%);
    transition: opacity .4s;
}

.om-pillar-body {
    padding: 24px 24px 20px;
}

.om-pillar-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep, #2C687B), var(--teal, #8CC7C4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white, #fff);
    margin-bottom: 14px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(44,104,123,.30);
    transition: transform .35s var(--ease-spring);
}

.om-pillar-card:hover .om-pillar-icon {
    transform: scale(1.12) rotate(-6deg);
}

.om-pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 8px;
}

.om-pillar-desc {
    font-size: 13px;
    color: var(--text-muted, #7a8c94);
    line-height: 1.65;
    margin-bottom: 14px;
}

.om-pillar-bar {
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--red, #DB1A1A), var(--teal, #8CC7C4));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s var(--ease);
}

.om-pillar-card:hover .om-pillar-bar {
    transform: scaleX(1);
}

/* ══════════════════════════════════════════════════════════
   § 5 — COMMITMENTS SECTION
══════════════════════════════════════════════════════════ */
.om-commitments-section {
    background: var(--off-white, #FFF6F6);
}

/* Strip Collage */
.om-strip-collage {
    display: grid;
    grid-template-rows: 260px 130px;
    gap: 12px;
}

.om-strip-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

    .om-strip-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .6s var(--ease);
    }

    .om-strip-main:hover img {
        transform: scale(1.04);
    }

.om-strip-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(22,55,69,.90) 0%, transparent 100%);
    padding: 32px 20px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: #8CC7C4;
    letter-spacing: .5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.om-strip-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.om-strip-thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

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

    .om-strip-thumb:hover img {
        transform: scale(1.08);
    }

/* Quote thumb */
.om-strip-thumb--accent {
    background: linear-gradient(135deg, var(--red, #DB1A1A), var(--red-dark, #b31212));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.om-strip-quote {
    text-align: center;
    color: rgba(255,255,255,.90);
}

    .om-strip-quote i {
        font-size: 28px;
        opacity: .50;
        display: block;
        margin-bottom: 8px;
    }

    .om-strip-quote p {
        font-family: 'Playfair Display', serif;
        font-size: 12.5px;
        font-style: italic;
        line-height: 1.5;
    }

/* Commit list */
.om-commit-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 36px;
}

.om-commit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-200, #dde4e7);
    transition: all .3s var(--ease);
}

    .om-commit-item:first-child {
        padding-top: 0;
    }

    .om-commit-item:last-child {
        border-bottom: none;
    }

    .om-commit-item:hover {
        padding-left: 6px;
    }

.om-commit-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(44,104,123,.14);
    line-height: 1;
    flex-shrink: 0;
    width: 42px;
    transition: color .3s var(--ease);
}

.om-commit-item:hover .om-commit-num {
    color: var(--red, #DB1A1A);
}

.om-commit-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark, #1a1a2e);
    margin-bottom: 4px;
}

.om-commit-content p {
    font-size: 13.5px;
    color: var(--text-muted, #7a8c94);
    line-height: 1.6;
}

/* Buttons */
.om-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--deep, #2C687B) 0%, var(--deep-dark, #1f4e5f) 100%);
    color: var(--white, #fff) !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow-md);
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

    .om-btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(44,104,123,.35);
    }

.om-btn-arrow {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform .3s var(--ease-spring);
}

.om-btn-primary:hover .om-btn-arrow {
    transform: translateX(4px);
}

/* ══════════════════════════════════════════════════════════
   § 6 — GOVERNANCE BANNER
══════════════════════════════════════════════════════════ */
.om-gov-banner {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.om-gov-img-layer {
    position: absolute;
    inset: 0;
}

    .om-gov-img-layer img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

.om-gov-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 145deg, rgba(22,55,69,.96) 0%, rgba(219,26,26,.65) 60%, rgba(44,104,123,.75) 100% );
}

.om-gov-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 72px 0;
    flex-wrap: wrap;
}

.om-gov-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
    border: 2px solid rgba(140,199,196,.30);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #8CC7C4;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(8px);
}

.om-gov-text {
    flex: 1;
    min-width: 260px;
}

    .om-gov-text h2 {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }

        .om-gov-text h2 em {
            font-style: italic;
            color: #8CC7C4;
        }

    .om-gov-text p {
        font-size: 14.5px;
        color: rgba(255,255,255,.62);
        line-height: 1.75;
        max-width: 560px;
    }

.om-gov-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.om-btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.10);
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: all .3s var(--ease);
}

    .om-btn-white:hover {
        background: rgba(255,255,255,.18);
        border-color: rgba(140,199,196,.50);
        transform: translateY(-2px);
    }

.om-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--red, #DB1A1A), var(--red-dark, #b31212));
    color: #fff !important;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 11px 24px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(219,26,26,.35);
    transition: all .3s var(--ease);
}

    .om-btn-red:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(219,26,26,.50);
    }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media (max-width: 1199px) {
    .om-collage-grid {
        grid-template-columns: 1fr 1fr;
    }

    .om-collage-cell {
        height: 100px;
    }
}

@media (max-width: 991px) {
    .om-mini-hero {
        background-attachment: scroll;
        min-height: 260px;
    }

    .om-hero-h1 {
        font-size: 2.2rem;
    }

    .om-pillars-grid {
        grid-template-columns: 1fr 1fr;
    }

    .om-strip-collage {
        grid-template-rows: 200px 110px;
    }

    .om-gov-inner {
        flex-direction: column;
        text-align: center;
    }

    .om-gov-text p {
        margin: 0 auto;
    }

    .om-gov-actions {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .sec-pad {
        padding: 68px 0;
    }

    .om-pillars-section {
        padding: 68px 0;
    }

    .om-hero-inner {
        padding: 54px 0 46px;
    }

    .om-sec-heading {
        font-size: 1.9rem;
    }

    .om-statement-card {
        padding: 26px 22px 26px 20px;
    }

    .om-collage-grid {
        grid-template-columns: 1fr 1fr;
    }

    .om-strip-collage {
        grid-template-rows: 180px 100px;
    }

    .om-pillars-grid {
        grid-template-columns: 1fr;
    }

    .om-highlight-row {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .om-hero-h1 {
        font-size: 1.85rem;
    }

    .om-hero-accent {
        height: 42px;
    }

    .om-collage-main {
        height: 220px;
    }

    .om-collage-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .om-collage-cell {
        height: 90px;
    }

    .om-commit-num {
        font-size: 1.5rem;
        width: 32px;
    }

    .om-gov-text h2 {
        font-size: 1.6rem;
    }

    .om-hero-pills {
        gap: 6px;
    }

    .om-pill {
        font-size: 10.5px;
        padding: 5px 11px;
    }
}
