/* ══════════════════════════════════════════════════════════════════
   exchanges-index-v2.css
   Gulf Stock Markets — /stock/exchanges
   Design: editorial financial hub, Navy/Teal/Gold design system
   ══════════════════════════════════════════════════════════════════ */

/* ── HERO ──────────────────────────────────────────────────────── */
.exv2-hero {
    position: relative;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(14,124,123,.22) 0%, transparent 65%),
        linear-gradient(160deg, var(--navy-deep, #071428) 0%, var(--navy, #152D50) 55%, #1a3a62 100%);
    padding-block: 72px 80px;
    overflow: hidden;
    color: var(--text-on-navy, #fff);
}

/* Decorative mesh circles */
.exv2-hero::before,
.exv2-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.exv2-hero::before {
    width: 500px;
    height: 500px;
    top: -200px;
    inset-inline-end: -100px;
    background: radial-gradient(circle, rgba(14,124,123,.12) 0%, transparent 70%);
}
.exv2-hero::after {
    width: 300px;
    height: 300px;
    bottom: -100px;
    inset-inline-start: -60px;
    background: radial-gradient(circle, rgba(192,138,46,.08) 0%, transparent 70%);
}

.exv2-hero__gradient-overlay {
    position: absolute;
    inset-block-end: 0;
    inset-inline: 0;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(7,20,40,.4));
    pointer-events: none;
}

.exv2-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

/* Badges */
.exv2-hero__badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-block-end: 24px;
}

.exv2-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .3px;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.18);
    color: rgba(255,255,255,.9);
    backdrop-filter: blur(4px);
}

.exv2-badge--live {
    background: rgba(52,211,153,.12);
    border-color: rgba(52,211,153,.3);
    color: #6EE7B7;
}

.exv2-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34D399;
    box-shadow: 0 0 0 0 rgba(52,211,153,.6);
    animation: exv2Pulse 2s infinite;
    display: inline-block;
}

@keyframes exv2Pulse {
    0%   { box-shadow: 0 0 0 0 rgba(52,211,153,.6); }
    70%  { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
    100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

/* Title */
.exv2-hero__title {
    font-size: clamp(40px, 6.5vw, 76px);
    font-weight: 900;
    line-height: 1.1;
    margin-block-end: 20px;
    display: block;
}

.exv2-hero__title-line1 {
    display: block;
    color: rgba(255,255,255,.9);
    letter-spacing: -.5px;
}

.exv2-hero__title-accent {
    display: block;
    background: linear-gradient(135deg, var(--gold, #C08A2E), var(--gold-light, #E5A83A) 60%, #f0c060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.5px;
}

.exv2-hero__lead {
    font-size: clamp(14px, 2vw, 17px);
    color: rgba(255,255,255,.65);
    max-width: 580px;
    margin-inline: auto;
    margin-block-end: 36px;
    line-height: 1.75;
}

/* Flag chips */
.exv2-hero__flags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.exv2-flag-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    text-decoration: none;
    color: rgba(255,255,255,.85);
    font-size: 13px;
    font-weight: 700;
    transition: background .18s, border-color .18s, transform .15s;
}

.exv2-flag-chip:hover {
    background: rgba(255,255,255,.15);
    border-color: rgba(255,255,255,.28);
    transform: translateY(-2px);
    color: #fff;
}

.exv2-flag-chip__emoji { font-size: 20px; line-height: 1; }
.exv2-flag-chip__abbr  { font-size: 11px; font-weight: 800; letter-spacing: .5px; opacity: .85; }

/* ── STATS BAR ─────────────────────────────────────────────────── */
.exv2-stats-bar {
    background: var(--navy, #152D50);
    border-block-end: 1px solid rgba(255,255,255,.08);
    padding-block: 14px;
}

.exv2-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255,255,255,.07);
    border-radius: 10px;
    overflow: hidden;
}

.exv2-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 12px 8px;
    background: rgba(255,255,255,.04);
    text-align: center;
}

.exv2-stat-item__value {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-on-navy, #fff);
    line-height: 1;
}

.exv2-stat-item__value--teal { color: #34D399; }

.exv2-stat-item__label {
    font-size: 10px;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    letter-spacing: .3px;
}

/* ── PAGE LAYOUT ───────────────────────────────────────────────── */
.exv2-page {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
    padding-block: 32px 56px;
}

.exv2-page__main { min-width: 0; }

/* ── SECTION CHROME ────────────────────────────────────────────── */
.exv2-section {
    margin-block-end: 32px;
}

.exv2-section__header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-block-end: 18px;
    padding-block-end: 12px;
    border-block-end: 2px solid var(--border, #DDE5EF);
}

.exv2-section__title {
    font-size: 18px;
    font-weight: 900;
    color: var(--navy, #152D50);
    margin: 0;
}

.exv2-section__icon {
    width: 30px;
    height: 30px;
    background: var(--teal-bg, #EBF7F7);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.exv2-section__sub {
    font-size: 13px;
    color: var(--text-muted, #5E7A95);
    margin-inline-start: auto;
    white-space: nowrap;
}

/* ── EXCHANGE CARDS ────────────────────────────────────────────── */
.exv2-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.exv2-excard {
    display: flex;
    flex-direction: column;
    background: var(--bg-card, #fff);
    border: 1.5px solid var(--border, #DDE5EF);
    border-radius: 16px;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color .18s, box-shadow .18s, transform .15s;
    position: relative;
    overflow: hidden;
}

.exv2-excard::before {
    content: '';
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    inset-inline-end: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal, #0E7C7B), transparent);
    opacity: 0;
    transition: opacity .2s;
}

.exv2-excard:hover {
    border-color: var(--teal-border, #B8E0DF);
    box-shadow: 0 8px 28px rgba(14,124,123,.12), 0 2px 6px rgba(21,45,80,.06);
    transform: translateY(-3px);
    color: inherit;
}

.exv2-excard:hover::before { opacity: 1; }

.exv2-excard:focus-visible {
    outline: 3px solid var(--teal, #0E7C7B);
    outline-offset: 2px;
}

/* Featured card — largest market visual weight */
.exv2-excard--featured {
    border-color: var(--gold, #C08A2E);
    background: linear-gradient(160deg, #FFFDF5 0%, #fff 60%);
}

.exv2-excard--featured::before {
    background: linear-gradient(90deg, var(--gold, #C08A2E), var(--gold-light, #E5A83A));
    opacity: 1;
}

.exv2-excard--featured:hover {
    border-color: var(--gold, #C08A2E);
    box-shadow: 0 8px 28px rgba(192,138,46,.18), 0 2px 6px rgba(21,45,80,.06);
}

.exv2-excard__featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .4px;
    background: linear-gradient(135deg, var(--gold, #C08A2E), var(--gold-light, #E5A83A));
    color: var(--navy, #152D50);
    padding: 2px 8px;
    border-radius: 20px;
    margin-inline-start: auto;
}

/* Head row */
.exv2-excard__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-block-end: 12px;
}

.exv2-excard__flag-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg, #F5F8FC);
    border: 1px solid var(--border-light, #EBF0F7);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exv2-excard__flag { font-size: 26px; line-height: 1; }

.exv2-excard__names { flex: 1; min-width: 0; }

.exv2-excard__abbr {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--navy, #152D50);
    letter-spacing: .3px;
    line-height: 1.2;
}

.exv2-excard__fullname {
    display: block;
    font-size: 11px;
    color: var(--text-muted, #5E7A95);
    margin-block-start: 2px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.exv2-excard__arrow {
    font-size: 16px;
    color: var(--teal, #0E7C7B);
    opacity: .4;
    transition: opacity .15s, transform .15s;
    flex-shrink: 0;
}

.exv2-excard:hover .exv2-excard__arrow {
    opacity: 1;
    transform: translateX(-3px);
}

/* Description */
.exv2-excard__desc {
    font-size: 12.5px;
    line-height: 1.65;
    color: var(--text-mid, #3D5A7A);
    flex: 1;
    margin-block-end: 14px;
}

/* Stats row */
.exv2-excard__stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: var(--bg, #F5F8FC);
    border: 1px solid var(--border-light, #EBF0F7);
    border-radius: 10px;
    overflow: hidden;
    margin-block-end: 12px;
}

.exv2-excard__stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 9px 6px;
    gap: 2px;
}

.exv2-excard__stat-divider {
    width: 1px;
    height: 32px;
    background: var(--border-light, #EBF0F7);
    flex-shrink: 0;
}

.exv2-excard__stat-value {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy, #152D50);
    line-height: 1;
}

.exv2-excard__stat-value--halal { color: var(--success, #059669); }
.exv2-excard__stat-value--currency { color: var(--teal, #0E7C7B); }

.exv2-excard__stat-label {
    font-size: 10px;
    color: var(--text-muted, #5E7A95);
    font-weight: 600;
    letter-spacing: .2px;
}

/* Footer */
.exv2-excard__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.exv2-excard__hours-tag,
.exv2-excard__days-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 6px;
    background: rgba(14,124,123,.07);
    color: var(--teal, #0E7C7B);
    border: 1px solid rgba(14,124,123,.12);
    direction: ltr;
    display: inline-block;
}

.exv2-excard__days-tag {
    background: rgba(21,45,80,.05);
    color: var(--text-mid, #3D5A7A);
    border-color: var(--border-light, #EBF0F7);
    direction: rtl;
}

/* ── COMPARISON TABLE ──────────────────────────────────────────── */
.exv2-compare-table-wrap {
    background: var(--bg-card, #fff);
    border: 1px solid var(--border, #DDE5EF);
    border-radius: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.exv2-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.exv2-compare-table thead th {
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 800;
    color: var(--text-muted, #5E7A95);
    text-align: right;
    background: var(--bg-subtle, #F8FAFC);
    border-block-end: 1px solid var(--border, #DDE5EF);
    letter-spacing: .3px;
    white-space: nowrap;
}

.exv2-compare-table tbody tr {
    border-block-end: 1px solid var(--border-light, #EBF0F7);
    transition: background .1s;
}

.exv2-compare-table tbody tr:last-child { border-block-end: none; }
.exv2-compare-table tbody tr:hover { background: var(--bg-subtle, #F8FAFC); }

.exv2-compare-table td {
    padding: 13px 16px;
    font-size: 13px;
    vertical-align: middle;
}

.exv2-ctable__name-link {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    color: var(--navy, #152D50);
    font-weight: 700;
    transition: color .15s;
}

.exv2-ctable__name-link:hover { color: var(--teal, #0E7C7B); }

.exv2-ctable__flag { font-size: 18px; line-height: 1; }

.exv2-ctable__abbr-badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .3px;
    background: var(--bg, #F5F8FC);
    border: 1px solid var(--border, #DDE5EF);
    color: var(--text-mid, #3D5A7A);
}

.exv2-ctable__ltr { direction: ltr; text-align: left; }

.exv2-halal-pct {
    display: inline-block;
    background: rgba(5,150,105,.1);
    color: #059669;
    font-weight: 800;
    font-size: 12px;
    padding: 3px 9px;
    border-radius: 20px;
}

.exv2-compare-disclaimer {
    font-size: 11px;
    color: var(--text-muted, #5E7A95);
    margin-block-start: 10px;
    padding-inline: 4px;
}

/* ── ABOUT SECTION ─────────────────────────────────────────────── */
.exv2-about {
    background: var(--bg-card, #fff);
    border: 1px solid var(--border, #DDE5EF);
    border-radius: 16px;
    padding: 28px;
}

.exv2-about__title {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy, #152D50);
    margin-block-end: 16px;
    line-height: 1.4;
}

.exv2-about__subtitle {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy, #152D50);
    margin-block: 24px 12px;
}

.exv2-about__body {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-mid, #3D5A7A);
    margin-block-end: 24px;
}

.exv2-text-link {
    color: var(--teal, #0E7C7B);
    font-weight: 700;
    text-decoration: none;
}

.exv2-text-link:hover { text-decoration: underline; }

/* Highlight cards grid */
.exv2-about__highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-block-end: 24px;
}

.exv2-highlight-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-radius: 12px;
    padding: 16px;
    background: var(--bg, #F5F8FC);
    border: 1px solid var(--border-light, #EBF0F7);
    transition: border-color .15s;
}

.exv2-highlight-card:hover { border-color: var(--teal-border, #B8E0DF); }

.exv2-highlight-card--saudi  { background: #E8F4EE; border-color: #A8D5BE; }
.exv2-highlight-card--uae    { background: #EEF3FB; border-color: #C5D8F0; }
.exv2-highlight-card--qatar  { background: #FBF0F0; border-color: #F0C0C0; }
.exv2-highlight-card--kuwait { background: #E8F5EE; border-color: #B8DFD0; }

.exv2-highlight-card__icon { font-size: 28px; line-height: 1; flex-shrink: 0; margin-block-start: 2px; }

.exv2-highlight-card__name {
    display: block;
    font-size: 13px;
    font-weight: 900;
    color: var(--navy, #152D50);
    margin-block-end: 5px;
}

.exv2-highlight-card__text {
    font-size: 12px;
    line-height: 1.65;
    color: var(--text-mid, #3D5A7A);
    margin: 0;
}

/* SEO list */
.exv2-about__list {
    padding-inline-start: 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--text-mid, #3D5A7A);
}

.exv2-about__list li strong { color: var(--navy, #152D50); }

/* ── FAQ ───────────────────────────────────────────────────────── */
.exv2-faq {
    background: var(--bg-card, #fff);
    border: 1px solid var(--border, #DDE5EF);
    border-radius: 14px;
    overflow: hidden;
}

.exv2-faq__item {
    border-block-end: 1px solid var(--border-light, #EBF0F7);
}

.exv2-faq__item:last-child { border-block-end: none; }

.exv2-faq__q {
    width: 100%;
    padding: 18px 22px;
    background: none;
    border: none;
    text-align: right;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy, #152D50);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transition: background .12s;
    line-height: 1.45;
}

.exv2-faq__q:hover { background: var(--bg-subtle, #F8FAFC); }

.exv2-faq__chevron {
    font-size: 16px;
    color: var(--teal, #0E7C7B);
    flex-shrink: 0;
    transition: transform .22s;
}

.exv2-faq__item--open .exv2-faq__chevron { transform: rotate(180deg); }

.exv2-faq__a {
    padding: 4px 22px 18px;
    font-size: 13.5px;
    line-height: 1.8;
    color: var(--text-mid, #3D5A7A);
}
.exv2-faq__list {
    margin: 0;
    padding-inline-end: 20px;
    line-height: 2;
}

.exv2-faq__item--open .exv2-faq__q {
    background: var(--teal-bg, #EBF7F7);
    color: var(--teal, #0E7C7B);
    border-block-end: 1px solid var(--teal-border, #B8E0DF);
}

/* ── SIDEBAR ───────────────────────────────────────────────────── */
.exv2-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 80px;
}

.exv2-sidebar-card {
    background: var(--bg-card, #fff);
    border: 1px solid var(--border, #DDE5EF);
    border-radius: 14px;
    overflow: hidden;
}

.exv2-sidebar-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 800;
    color: var(--navy, #152D50);
    border-block-end: 1px solid var(--border-light, #EBF0F7);
    background: var(--bg-subtle, #F8FAFC);
}

.exv2-sidebar-card__body { padding: 12px 16px; }

/* Nav rows */
.exv2-nav-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-block-end: 1px solid var(--border-light, #EBF0F7);
    text-decoration: none;
    transition: transform .12s;
}

.exv2-nav-row:last-child { border-block-end: none; }
.exv2-nav-row:hover { transform: translateX(-3px); }

.exv2-nav-row__flag { font-size: 20px; line-height: 1; flex-shrink: 0; }

.exv2-nav-row__info { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.exv2-nav-row__name { font-size: 12.5px; font-weight: 700; color: var(--navy, #152D50); }
.exv2-nav-row__abbr { font-size: 10px; color: var(--text-muted, #5E7A95); font-weight: 600; }

.exv2-nav-row__arrow { color: var(--teal, #0E7C7B); font-size: 12px; opacity: .5; flex-shrink: 0; }
.exv2-nav-row:hover .exv2-nav-row__arrow { opacity: 1; }

/* Halal card */
.exv2-sidebar-card--halal {
    background: linear-gradient(160deg, var(--navy-deep, #071428) 0%, var(--navy, #152D50) 100%);
    border: 1px solid rgba(14,124,123,.3);
    padding: 22px;
    text-align: center;
}

.exv2-sidebar-halal__icon {
    font-size: 36px;
    display: block;
    margin-block-end: 10px;
    color: var(--teal, #0E7C7B);
    font-family: 'Arial', serif;
    line-height: 1;
}

.exv2-sidebar-halal__title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    margin-block-end: 8px;
}

.exv2-sidebar-halal__text {
    font-size: 12.5px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-block-end: 16px;
}

.exv2-sidebar-halal__btn {
    display: block;
    background: linear-gradient(135deg, var(--teal, #0E7C7B), #0a9a98);
    color: #fff;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: opacity .15s, transform .12s;
    box-shadow: 0 4px 14px rgba(14,124,123,.4);
}

.exv2-sidebar-halal__btn:hover {
    opacity: .9;
    transform: translateY(-1px);
    color: #fff;
}

/* Authorities card */
.exv2-sidebar-authorities__text {
    font-size: 12.5px;
    color: var(--text-mid, #3D5A7A);
    line-height: 1.65;
    margin-block-end: 12px;
}

.exv2-sidebar-authorities__link {
    font-size: 13px;
    font-weight: 700;
    color: var(--teal, #0E7C7B);
    text-decoration: none;
    transition: color .15s;
}

.exv2-sidebar-authorities__link:hover { color: var(--teal-light, #12A09E); }

/* Broker CTA card */
.exv2-sidebar-card--broker {
    background: linear-gradient(135deg, var(--navy, #152D50), var(--navy-light, #1A3456));
    border-color: transparent;
    padding: 20px;
}

.exv2-sidebar-broker__title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-block-end: 6px;
}

.exv2-sidebar-broker__text {
    font-size: 12px;
    color: rgba(255,255,255,.6);
    line-height: 1.65;
    margin-block-end: 14px;
}

.exv2-sidebar-broker__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--gold, #C08A2E), var(--gold-light, #E5A83A));
    color: var(--navy, #152D50);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: opacity .15s, transform .12s;
    box-shadow: 0 4px 12px rgba(192,138,46,.3);
}

.exv2-sidebar-broker__btn:hover {
    opacity: .92;
    transform: translateY(-1px);
    color: var(--navy, #152D50);
}

/* ── MARKET STATUS WIDGET ──────────────────────────────────────── */
.exv2-market-time {
    font-size: 10px;
    color: var(--text-muted, #5E7A95);
    font-weight: 500;
    margin-inline-start: auto;
    white-space: nowrap;
}

.exv2-market-status-body { padding: 0 !important; }

.exv2-market-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-block-end: 1px solid var(--border-light, #EBF0F7);
    text-decoration: none;
    transition: background .12s;
}

.exv2-market-row:last-child { border-block-end: none; }
.exv2-market-row:hover { background: var(--bg-subtle, #F8FAFC); }

.exv2-market-row__flag { font-size: 18px; line-height: 1; flex-shrink: 0; }

.exv2-market-row__abbr {
    flex: 1;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy, #152D50);
}

.exv2-market-row__status {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 20px;
    flex-shrink: 0;
}

.exv2-market-row__status--open {
    background: rgba(5,150,105,.1);
    color: #059669;
    border: 1px solid rgba(5,150,105,.2);
}

.exv2-market-row__status--closed {
    background: rgba(100,116,139,.08);
    color: var(--text-muted, #5E7A95);
    border: 1px solid rgba(100,116,139,.15);
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .exv2-page {
        grid-template-columns: 1fr;
    }

    .exv2-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* Market-status card (first child): full width — has 9 rows */
    .exv2-sidebar > .exv2-sidebar-card:first-child {
        grid-column: 1 / -1;
    }

    /* Broker CTA: full width at bottom */
    .exv2-sidebar-card--broker {
        grid-column: 1 / -1;
    }

    /* Halal card: auto-place (fills one of the 2 cols) */
    .exv2-sidebar-card--halal { grid-column: auto; }

    .exv2-stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .exv2-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .exv2-hero { padding-block: 48px 60px; }
    .exv2-hero__title { margin-block-end: 14px; }
    .exv2-hero__lead  { margin-block-end: 28px; }

    .exv2-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }

    .exv2-cards-grid { grid-template-columns: repeat(2, 1fr); }

    .exv2-about__highlights { grid-template-columns: 1fr; }

    .exv2-sidebar { grid-template-columns: 1fr; }

    .exv2-section__sub { display: none; }
}

@media (max-width: 560px) {
    .exv2-cards-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .exv2-hero { padding-block: 36px 48px; }
    .exv2-hero__badges { gap: 6px; }
    .exv2-badge { font-size: 11px; padding: 4px 10px; }
    .exv2-flag-chip { padding: 7px 12px; }
    .exv2-flag-chip__abbr { display: none; }

    .exv2-page { padding-block: 20px 40px; }

    .exv2-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .exv2-stat-item__value { font-size: 17px; }

    .exv2-about { padding: 18px; }
    .exv2-about__title { font-size: 17px; }

    .exv2-faq__q { padding: 15px 16px; font-size: 13px; }
    .exv2-faq__a { padding: 4px 16px 14px; font-size: 13px; }
}

@media (max-width: 375px) {
    .exv2-hero__title { font-size: 36px; }
    .exv2-hero__lead  { font-size: 13.5px; }
    .exv2-excard { padding: 15px; }
    .exv2-excard__desc { font-size: 12px; }
    .exv2-compare-table td { font-size: 12px; padding: 10px 12px; }
    .exv2-compare-table thead th { padding: 10px 12px; }
}

@media (min-width: 1440px) {
    .exv2-page { gap: 36px; }
    .exv2-sidebar { width: 320px; }
    .exv2-stats-bar__grid { gap: 2px; }
}
