/* ─── Shell & Base ─── */
.res-shell { background: #f0f4ff; min-height: 100vh; }

/* ─── Hero ─── */
.res-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #3157D5 100%);
    padding: 5rem 0 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.res-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(99,102,241,0.18) 0%, transparent 65%);
    pointer-events: none;
}
.res-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.res-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #93c5fd;
    margin-bottom: 1rem;
}
.res-hero-text h1 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    margin-bottom: 1.2rem;
}
.res-hero-lead {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.5;
    max-width: 540px;
    margin-bottom: 0;
}
.res-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.res-btn-primary {
    background: #fff;
    color: #1d4ed8;
    border: none;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    transition: all 0.2s;
}
.res-btn-primary:hover { background: #f0f9ff; color: #1e40af; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
.res-btn-outline {
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    background: transparent;
    font-weight: 700;
    transition: all 0.2s;
}
.res-btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }
.res-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.res-stat-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1rem;
    padding: 1.4rem 1.2rem;
    backdrop-filter: blur(12px);
    text-align: center;
    transition: all 0.2s;
}
.res-stat-card:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.res-stat-num { display: block; font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; }
.res-stat-label { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.7); margin-top: 0.3rem; font-weight: 500; }

/* ─── Filter Bar ─── */
.res-filter-bar {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 16px rgba(15,23,42,0.06);
}
.res-filter-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.res-filter-btn {
    padding: 0.55rem 1.2rem;
    border-radius: 999px;
    border: 1.5px solid #e2e8f0;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}
.res-filter-btn:hover { border-color: #3157D5; color: #3157D5; background: #eef2ff; }
.res-filter-btn.active {
    background: #3157D5;
    border-color: #3157D5;
    color: #fff;
    box-shadow: 0 4px 12px rgba(49,87,213,0.25);
}

/* ─── Section Eyebrow ─── */
.res-section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 800;
    color: #3157D5;
    margin-bottom: 0.5rem;
}
.res-section-header { margin-bottom: 2.5rem; }
.res-section-subhead { color: #64748b; max-width: 640px; margin: 0.5rem auto 0; font-size: 1.05rem; }

/* ─── Featured Card ─── */
.res-featured-wrap { padding: 3rem 0 0; }
.res-featured-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 55%, #3b4fd4 100%);
    border-radius: 1.5rem;
    padding: 2.8rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-height: 300px;
}
.res-featured-badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.res-featured-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #fff;
    max-width: 680px;
    line-height: 1.1;
    margin: 0;
}
.res-featured-desc {
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    max-width: 640px;
    line-height: 1.55;
    margin: 0;
}
.res-featured-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.res-meta-item { font-size: 0.82rem; color: rgba(255,255,255,0.65); font-weight: 500; }
.res-featured-cta {
    align-self: flex-start;
    background: #fff;
    color: #1d4ed8;
    border: none;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s;
}
.res-featured-cta:hover { background: #f0f9ff; color: #1e40af; transform: translateY(-2px); }

/* floating bubbles */
.res-featured-graphic {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 220px;
    pointer-events: none;
}
.res-std-bubble {
    position: absolute;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    animation: res-float 4s ease-in-out infinite;
    white-space: nowrap;
}
.res-std-a { top: 0%;   left: 30px;  animation-delay: 0s;   }
.res-std-b { top: 20%;  left: 140px; animation-delay: 0.5s; }
.res-std-c { top: 42%;  left: 10px;  animation-delay: 1s;   }
.res-std-d { top: 60%;  left: 120px; animation-delay: 1.5s; }
.res-std-e { top: 80%;  left: 40px;  animation-delay: 2s;   }
.res-std-f { top: 55%;  left: 195px; animation-delay: 2.5s; }
@keyframes res-float {
    0%, 100% { transform: translateY(0px);  }
    50%       { transform: translateY(-8px); }
}

/* ─── Tags ─── */
.res-tag { display: inline-block; border-radius: 999px; padding: 0.28rem 0.65rem; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.res-tag-blue   { background: #dbeafe; color: #1d4ed8; }
.res-tag-purple { background: #ede9fe; color: #6d28d9; }
.res-tag-green  { background: #dcfce7; color: #166534; }
.res-tag-indigo { background: #e0e7ff; color: #4338ca; }
.res-tag-orange { background: #ffedd5; color: #c2410c; }
.res-tag-teal   { background: #ccfbf1; color: #0f766e; }

/* ─── Resources Grid & View Toggle ─── */
.res-grid-section { padding: 2.5rem 0 3rem; }
.res-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.res-header-title-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
}
.res-header-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}
.res-results-count {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}
.res-toolbar-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.res-search-box {
    position: relative;
    display: flex;
    align-items: center;
}
.res-search-icon {
    position: absolute;
    left: 0.85rem;
    color: #94a3b8;
    font-size: 0.85rem;
    pointer-events: none;
}
.res-search-input {
    padding: 0.45rem 2rem 0.45rem 2.2rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #1e293b;
    background: #fff;
    width: 190px;
    transition: all 0.2s ease;
    font-family: inherit;
}
.res-search-input:focus {
    outline: none;
    border-color: #3157D5;
    width: 240px;
    box-shadow: 0 0 0 3px rgba(49, 87, 213, 0.12);
}
.res-search-clear {
    position: absolute;
    right: 0.75rem;
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 0;
    display: none;
    align-items: center;
    justify-content: center;
}
.res-search-clear:hover { color: #0f172a; }

.res-rows-select-wrap {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.res-rows-label {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}
.res-rows-select {
    padding: 0.4rem 1.8rem 0.4rem 0.75rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.82rem;
    color: #1e293b;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2364748b'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat right 0.45rem center/14px 14px;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s ease;
    font-family: inherit;
}
.res-rows-select:focus {
    outline: none;
    border-color: #3157D5;
    box-shadow: 0 0 0 3px rgba(49, 87, 213, 0.12);
}

.res-view-toggle-wrap {
    display: inline-flex;
    background: #e2e8f0;
    padding: 3px;
    border-radius: 10px;
    gap: 2px;
}
.res-view-btn {
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 0.35rem 0.65rem;
    color: #64748b;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.res-view-btn.active {
    background: #ffffff;
    color: #3157D5;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

.res-pagination-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 1rem;
}
.res-pagination-info {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}
.res-pagination-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0.35rem;
    align-items: center;
}
.res-page-btn {
    min-width: 36px;
    height: 36px;
    padding: 0 0.65rem;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    color: #1e293b;
    font-weight: 700;
    font-size: 0.84rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(15,23,42,0.02);
}
.res-page-btn:hover:not(:disabled) {
    border-color: #3157D5;
    color: #3157D5;
    background: #eef2ff;
    transform: translateY(-1px);
}
.res-page-btn.active {
    background: #3157D5;
    border-color: #3157D5;
    color: #ffffff;
    box-shadow: 0 3px 10px rgba(49, 87, 213, 0.28);
}
.res-page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #94a3b8;
}
.res-page-ellipsis {
    padding: 0 0.35rem;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.85rem;
}

.res-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    transition: all 0.25s ease;
}
.res-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 1.25rem;
    padding: 1.75rem;
    box-shadow: 0 4px 16px rgba(15,23,42,0.04);
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    transition: all 0.25s ease;
}
.res-card:hover {
    border-color: rgba(49,87,213,0.3);
    box-shadow: 0 16px 40px rgba(49,87,213,0.1);
    transform: translateY(-4px);
}
.res-card[hidden] { display: none; }
.res-card-top { display: flex; justify-content: space-between; align-items: flex-start; }
.res-card-icon {
    width: 44px; height: 44px;
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.res-icon-blue   { background: #dbeafe; color: #1d4ed8; }
.res-icon-green  { background: #dcfce7; color: #166534; }
.res-icon-purple { background: #ede9fe; color: #7c3aed; }
.res-icon-indigo { background: #e0e7ff; color: #4338ca; }
.res-icon-orange { background: #ffedd5; color: #c2410c; }
.res-icon-teal   { background: #ccfbf1; color: #0f766e; }
.res-card-tags { display: flex; gap: 0.35rem; flex-wrap: wrap; justify-content: flex-end; }
.res-card h3 { font-size: 1.05rem; font-weight: 700; color: #0f172a; line-height: 1.25; margin: 0; }
.res-card p  { font-size: 0.9rem; color: #64748b; line-height: 1.55; margin: 0; flex-grow: 1; }
.res-card-meta {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}
.res-meta-datetime {
    color: #334155;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.res-meta-datetime i {
    color: #3157D5;
    margin-right: 0.35rem;
}
.res-meta-readtime {
    color: #64748b;
    display: inline-flex;
    align-items: center;
}
.res-meta-readtime i {
    color: #94a3b8;
    margin-right: 0.35rem;
}
.res-read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #3157D5;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: gap 0.2s;
    gap: 0.3rem;
}
.res-read-more:hover { color: #1e40af; gap: 0.55rem; }
.res-no-results { text-align: center; padding: 3rem; color: #94a3b8; }

/* ─── List View Styles ─── */
.res-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.res-grid.list-view .res-card {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    grid-template-rows: auto auto auto;
    column-gap: 1.5rem;
    row-gap: 0.4rem;
    align-items: center;
    padding: 1.4rem 1.75rem;
    border-radius: 1.15rem;
}
.res-grid.list-view .res-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(49,87,213,0.08);
}
.res-grid.list-view .res-card .res-card-top {
    grid-column: 1;
    grid-row: 1 / span 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
}
.res-grid.list-view .res-card .res-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 0.85rem;
    font-size: 1.25rem;
}
.res-grid.list-view .res-card .res-card-tags {
    display: none;
}
.res-grid.list-view .res-card h3 {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.12rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin: 0;
}
.res-grid.list-view .res-card p {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}
.res-grid.list-view .res-card .res-card-meta {
    grid-column: 2;
    grid-row: 3;
    display: flex;
    gap: 1rem;
    align-items: center;
    margin: 0;
}
.res-grid.list-view .res-card .res-read-more {
    grid-column: 3;
    grid-row: 1 / span 3;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.35rem;
    background: #eef2ff;
    color: #3157D5;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.2s ease;
    align-self: center;
}
.res-grid.list-view .res-card .res-read-more:hover {
    background: #3157D5;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(49, 87, 213, 0.25);
    transform: translateY(-1px);
}
@media (max-width: 820px) {
    .res-grid.list-view .res-card {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 1.5rem;
    }
    .res-grid.list-view .res-card .res-card-top {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .res-grid.list-view .res-card .res-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    .res-grid.list-view .res-card .res-card-tags {
        display: flex;
    }
    .res-grid.list-view .res-card .res-read-more {
        align-self: flex-start;
        background: transparent;
        padding: 0;
    }
    .res-grid.list-view .res-card .res-read-more:hover {
        background: transparent;
        color: #1e40af;
        box-shadow: none;
        transform: none;
    }
}

/* ─── Official Government Mandate Card ─── */
.res-card-official {
    background: linear-gradient(135deg, #fffbeb 0%, #fef9ee 60%, #f0fdf4 100%);
    border: 2px solid #f59e0b;
    border-radius: 1.25rem;
    padding: 2rem 2.25rem;
    box-shadow: 0 8px 32px rgba(245,158,11,0.12), 0 2px 8px rgba(15,23,42,0.05);
    transition: all 0.25s ease;
    margin-bottom: 0.25rem;
}
.res-card-official:hover {
    border-color: #d97706;
    box-shadow: 0 16px 48px rgba(245,158,11,0.18), 0 4px 16px rgba(15,23,42,0.06);
    transform: translateY(-3px);
}
.res-card-official[hidden] { display: none; }
.res-official-inner {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.res-official-left { flex: 1; display: flex; flex-direction: column; gap: 0.85rem; }
.res-official-badge-row { display: flex; gap: 0.5rem; flex-wrap: wrap; align-items: center; }
.res-official-mandate-badge {
    display: inline-flex;
    align-items: center;
    background: #92400e;
    color: #fff;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.res-card-official h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}
.res-card-official p {
    font-size: 0.925rem;
    color: #44403c;
    line-height: 1.6;
    margin: 0;
}
.res-card-official p strong { color: #0f172a; }
.res-official-meta {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.res-meta-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #78350f;
}
.res-official-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.res-official-download {
    background: #f59e0b;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(245,158,11,0.35);
}
.res-official-download:hover { background: #d97706; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(245,158,11,0.4); }
.res-official-learn {
    background: #fff;
    color: #1d4ed8;
    border: 1.5px solid #bfdbfe;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    transition: all 0.2s;
}
.res-official-learn:hover { background: #eff6ff; border-color: #93c5fd; color: #1e40af; transform: translateY(-2px); }
.res-official-icon-wrap {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.res-official-emblem {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 24px rgba(245,158,11,0.4);
}
.res-official-emblem i { font-size: 2rem; line-height: 1; }
.res-official-emblem span { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; margin-top: 0.2rem; }
@media (max-width: 767px) {
    .res-official-inner  { flex-direction: column; }
    .res-official-icon-wrap { display: none; }
    .res-card-official   { padding: 1.5rem; }
}


.res-standards-section {
    background: #fff;
    padding: 3.5rem 0;
    border-top: 1px solid #e2e8f0;
}
.res-standards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.res-std-ref-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.2s;
}
.res-std-ref-card:hover { box-shadow: 0 8px 24px rgba(15,23,42,0.08); transform: translateY(-2px); }
.res-std-ref-badge {
    display: inline-block;
    border-radius: 6px;
    padding: 0.25rem 0.6rem;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.res-std-ref-card h3 { font-size: 1.05rem; font-weight: 700; color: #0f172a; margin-bottom: 0.5rem; }
.res-std-ref-card p  { font-size: 0.875rem; color: #64748b; margin-bottom: 0.75rem; }
.res-ext-link { font-size: 0.82rem; font-weight: 700; color: #3157D5; text-decoration: none; }
.res-ext-link:hover { color: #1e40af; }

/* ─── CTA Section ─── */
.res-cta-section { padding: 3rem 0 4rem; }
.res-cta-card {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3157D5 100%);
    border-radius: 1.5rem;
    padding: 3rem 3.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.res-cta-text h2 { font-size: 1.9rem; color: #fff; font-weight: 800; margin-bottom: 0.5rem; }
.res-cta-text p  { color: rgba(255,255,255,0.8); max-width: 520px; margin: 0; font-size: 1rem; }
.res-eyebrow-light {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
    color: #93c5fd;
    margin-bottom: 0.5rem;
}
.res-cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.res-cta-btn-main {
    background: #fff;
    color: #1d4ed8;
    border: none;
    font-weight: 700;
    transition: all 0.2s;
}
.res-cta-btn-main:hover { background: #f0f9ff; color: #1e40af; transform: translateY(-2px); }

/* ─── Responsive ─── */
@media (max-width: 1023px) {
    .res-hero-inner       { grid-template-columns: 1fr; gap: 2rem; }
    .res-hero-stats       { grid-template-columns: repeat(4, 1fr); }
    .res-featured-graphic { display: none; }
    .res-grid             { grid-template-columns: repeat(2, 1fr); }
    .res-standards-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .res-hero          { padding: 3rem 0 2.5rem; }
    .res-hero-stats    { grid-template-columns: repeat(2, 1fr); }
    .res-grid          { grid-template-columns: 1fr; }
    .res-standards-grid { grid-template-columns: 1fr; }
    .res-cta-card      { padding: 2rem 1.5rem; flex-direction: column; text-align: center; }
    .res-cta-actions   { justify-content: center; }
    .res-filter-row    { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.5rem; }
    .res-featured-card { padding: 2rem 1.5rem; }
    .res-cta-text h2   { font-size: 1.5rem; }
    .res-grid-header   { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .res-toolbar-controls { width: 100%; justify-content: space-between; gap: 0.6rem; }
    .res-search-box    { width: 100%; order: -1; }
    .res-search-input  { width: 100% !important; }
    .res-pagination-wrap { flex-direction: column; text-align: center; justify-content: center; gap: 0.75rem; }
}
@media (max-width: 479px) {
    .res-hero-stats { grid-template-columns: 1fr 1fr; }
    .res-hero-text h1 { font-size: 1.8rem; }
    .res-toolbar-controls { flex-wrap: wrap; }
    .res-rows-select-wrap { flex-grow: 1; justify-content: center; }
    .res-view-toggle-wrap { flex-grow: 1; display: flex; justify-content: center; }
    .res-pagination-list  { flex-wrap: wrap; justify-content: center; }
}
