/* ============================================================
   RJMC — SC/ST Cell Page Styles  v1.0
   Matches: style.css  · Red · Teal · Deep palette
   Fonts: Playfair Display (display) · DM Sans (body)
   ============================================================ */

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

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

/* ══════════════════════════════════════════════════════════
   § 1 — MINI HERO
══════════════════════════════════════════════════════════ */
.sc-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 */
.sc-hero-geo {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

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

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

.sc-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 scGeoSpin {
    to { transform: rotate(360deg); }
}

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

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

.sc-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;
}

.sc-breadcrumb a:hover {
    color: #8CC7C4 !important;
}

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

.sc-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 */
.sc-hero-title-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

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

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

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

.sc-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 */
.sc-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sc-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(--sc-ease);
}

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

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

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

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

.sc-chip-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2C687B;
    flex-shrink: 0;
}

.sc-chip--light .sc-chip-dot {
    background: #DB1A1A;
}

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

.sc-sec-heading em {
    font-style: italic;
    color: #DB1A1A;
}

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

/* ══════════════════════════════════════════════════════════
   § 3 — ABOUT SECTION
══════════════════════════════════════════════════════════ */
.sc-about-section {
    background: #FFF6F6;
}

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

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

.sc-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;
}

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

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

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

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

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

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

.sc-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}

.sc-highlight-desc {
    font-size: 12.5px;
    color: var(--sc-text-muted);
    line-height: 1.5;
}

/* ── Image Collage ─────────────────────────────────────── */
.sc-collage {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.sc-collage-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: #DB1A1A;
    color: #fff;
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 16px rgba(219,26,26,.40);
}

.sc-collage-badge small {
    font-size: 11px;
    opacity: .80;
}

.sc-collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.sc-collage-cell {
    position: relative;
    height: 110px;
    border-radius: var(--sc-radius-md);
    overflow: hidden;
    box-shadow: var(--sc-shadow-xs);
}

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

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

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

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

.sc-collage-overlay span {
    font-size: 10.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.sc-collage-cell--accent {
    background: linear-gradient(135deg, #163745, #2C687B);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.sc-cstat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #8CC7C4;
    line-height: 1;
}

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

.sc-cstat-lbl {
    font-size: 10px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
    letter-spacing: .5px;
    line-height: 1.4;
    margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════
   § 4 — PILLARS / OBJECTIVES SECTION
══════════════════════════════════════════════════════════ */
.sc-pillars-section {
    background: #f4f8fa;
    padding: 96px 0;
}

.sc-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sc-pillar-card {
    background: #fff;
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow-sm);
    transition: transform .35s var(--sc-ease), box-shadow .35s var(--sc-ease);
}

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

.sc-pillar-img-wrap {
    position: relative;
    height: 170px;
    overflow: hidden;
}

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

.sc-pillar-card:hover .sc-pillar-img-wrap img {
    transform: scale(1.06);
}

.sc-pillar-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(22,55,69,.55) 100%);
}

.sc-pillar-body {
    padding: 22px 22px 20px;
}

.sc-pillar-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2C687B, #3d849a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8CC7C4;
    margin-bottom: 14px;
    box-shadow: var(--sc-shadow-sm);
    transition: transform .35s var(--sc-ease-spring);
}

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

.sc-pillar-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.sc-pillar-desc {
    font-size: 13px;
    color: var(--sc-text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

.sc-pillar-bar {
    height: 3px;
    width: 36px;
    background: linear-gradient(90deg, #DB1A1A, #ff6b6b);
    border-radius: 3px;
    transition: width .35s var(--sc-ease);
}

.sc-pillar-card:hover .sc-pillar-bar {
    width: 60px;
}

/* ══════════════════════════════════════════════════════════
   § 5 — FUNCTIONS SECTION
══════════════════════════════════════════════════════════ */
.sc-functions-section {
    background: #FFF6F6;
}

/* Strip collage */
.sc-strip-collage {
    display: grid;
    grid-template-rows: 240px 130px;
    gap: 12px;
}

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

.sc-strip-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc-strip-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(22,55,69,.90) 0%, transparent 100%);
    padding: 24px 20px 16px;
    font-size: 12.5px;
    font-weight: 700;
    color: rgba(255,255,255,.80);
    letter-spacing: .5px;
}

.sc-strip-label i {
    color: #8CC7C4;
    margin-right: 6px;
}

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

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

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

.sc-strip-thumb:hover img {
    transform: scale(1.06);
}

.sc-strip-thumb--accent {
    background: linear-gradient(135deg, #163745, #2C687B);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

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

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

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

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

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

.sc-commit-item:first-child { padding-top: 0; }
.sc-commit-item:last-child  { border-bottom: none; }

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

.sc-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(--sc-ease);
}

.sc-commit-item:hover .sc-commit-num {
    color: #DB1A1A;
}

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

.sc-commit-content p {
    font-size: 13.5px;
    color: var(--sc-text-muted);
    line-height: 1.6;
}

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

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

.sc-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(--sc-ease-spring);
}

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

/* ══════════════════════════════════════════════════════════
   § 6 — COMMITTEE MEMBERS
══════════════════════════════════════════════════════════ */
.sc-members-section {
    background: #fff;
}

.sc-members-sub {
    font-size: 14.5px;
    color: var(--sc-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.sc-member-card {
    background: #fff;
    border: 1px solid var(--sc-gray-200);
    border-radius: var(--sc-radius-lg);
    overflow: hidden;
    box-shadow: var(--sc-shadow-sm);
    transition: transform .35s var(--sc-ease), box-shadow .35s var(--sc-ease);
}

.sc-member-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sc-shadow-md);
}

.sc-member-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.sc-member-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform .5s var(--sc-ease);
}

.sc-member-card:hover .sc-member-img-wrap img {
    transform: scale(1.06);
}

.sc-member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(22,55,69,.60) 100%);
}

.sc-member-body {
    padding: 18px 20px 22px;
    text-align: center;
}

.sc-member-role {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #DB1A1A;
    background: #fde8e8;
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 10px;
}

.sc-member-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.sc-member-dept {
    font-size: 12.5px;
    color: var(--sc-text-muted);
    margin: 0;
}

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

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

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

.sc-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%);
}

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

.sc-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);
}

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

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

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

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

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

.sc-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(--sc-ease);
}

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

.sc-btn-red {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #DB1A1A, #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(--sc-ease);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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