/* ── disclosures.css ── */

body {
    font-family: 'Poppins', sans-serif;
    background: var(--pg);
    margin: 0; padding-top: 0;
    color: var(--t1); font-size: 14px; line-height: 1.6;
}

/* header overrides */
/*.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header:not(.scrolled) .nav-link,
.ireda-header:not(.scrolled) .glass-btn { color: rgba(255,255,255,0.92) !important; text-shadow: 0 1px 4px rgba(0,0,0,0.25); }
.ireda-header:not(.scrolled) .utility-link    { color: rgba(255,255,255,0.75) !important; }
.ireda-header:not(.scrolled) .utility-divider { color: rgba(255,255,255,0.35) !important; }
.ireda-header:not(.scrolled) .col-lg-2 img    { filter: none !important; opacity: 1 !important; }
.ireda-header.scrolled .nav-link,
.ireda-header.scrolled .glass-btn             { color: var(--t2) !important; text-shadow: none !important; }
.ireda-header.scrolled .utility-link          { color: var(--t3) !important; }
.ireda-header.scrolled .col-lg-2 img          { filter: none !important; opacity: .92 !important; }*/

/* header overrides — subpage: always solid white, always dark text */
.ireda-header { background: var(--white) !important; box-shadow: 0 2px 20px rgba(30,58,138,.08) !important; }
.header-bg-overlay { background: var(--white) !important; backdrop-filter: none !important; opacity: 1 !important; }
.ireda-header .nav-link,
.ireda-header .glass-btn { color: var(--blue) !important; text-shadow: none !important; }
.ireda-header .utility-link,
.ireda-header .utility-lang-btn,
.ireda-header .utility-font-btn { color: var(--t3) !important; }
.ireda-header .utility-divider { color: var(--border) !important; }
.ireda-header .col-lg-2 img { filter: none !important; opacity: 1 !important; }

/* ══════════════════════════════════════
   TOP-LEVEL ACCORDION
══════════════════════════════════════ */
.dc-accordion {
    background: var(--white);
    border-radius: var(--r1);
    box-shadow: var(--s2);
    border: 1px solid rgba(37,99,235,.05);
    overflow: hidden;
    margin-bottom: 1rem;
}
.dc-accordion::before { content: ''; display: block; height: 4px; background: var(--G); }

.dc-acc-toggle {
    width: 100%; display: flex; align-items: center; gap: .85rem;
    padding: 1rem 1.5rem;
    background: var(--G); border: none; cursor: pointer;
    text-align: left;
    transition: opacity .2s;
}
.dc-acc-toggle:hover { opacity: .92; }
.dc-acc-toggle:focus-visible { outline: 3px solid var(--mid); outline-offset: -3px; }

.dc-acc-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    color: var(--white); font-size: .88rem; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.dc-acc-label {
    flex: 1; font-size: .88rem; font-weight: 700; color: var(--white);
    line-height: 1.35; text-align: left;
}
.dc-chevron {
    font-size: .78rem; color: rgba(255,255,255,.8); flex-shrink: 0;
    transition: transform .3s ease;
}
.dc-chevron.rotated { transform: rotate(180deg); }

/* body — collapsed by default */
.dc-acc-body {
    overflow: hidden;
    max-height: 9999px;
    transition: max-height .4s ease;
}
.dc-acc-body.collapsed { max-height: 0; }

/* ── sub-section label (inside accordion body) ── */
.dc-sub-section-label {
    font-size: .68rem; font-weight: 800; color: var(--blue);
    text-transform: uppercase; letter-spacing: 1.2px;
    padding: .9rem 1.5rem .4rem;
    border-bottom: 1px solid var(--pale);
    margin-bottom: 0;
}

/* ══════════════════════════════════════
   NESTED SUB-ACCORDION (inside accordion 3)
══════════════════════════════════════ */
.dc-sub-accordion {
    border-bottom: 1px solid #f1f5f9;
}
.dc-sub-accordion:last-child { border-bottom: none; }

.dc-sub-toggle {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    gap: .75rem; padding: .85rem 1.5rem;
    background: var(--xpale); border: none; cursor: pointer;
    text-align: left; font-family: 'Poppins', sans-serif;
    font-size: .82rem; font-weight: 600; color: var(--t1);
    transition: background .18s;
}
.dc-sub-toggle:hover { background: #e8eef8; }
.dc-sub-toggle:focus-visible { outline: 3px solid var(--mid); outline-offset: -3px; }
.dc-sub-toggle .dc-chevron { color: var(--mid); }

/* ══════════════════════════════════════
   TABLES
══════════════════════════════════════ */
.dc-table-wrap { overflow-x: auto; }
.dc-table {
    width: 100%; border-collapse: collapse;
    font-size: .84rem;
}
.dc-table thead th {
    background: #f1f5f9; color: var(--t1);
    padding: .55rem 1rem; font-size: .65rem; font-weight: 700;
    letter-spacing: .8px; text-transform: uppercase;
    text-align: left; border-bottom: 2px solid var(--pale);
    white-space: nowrap;
}
.dc-q-table thead th { text-align: center; }
.dc-table tbody tr { border-bottom: 1px solid #f1f5f9; transition: background .15s; }
.dc-table tbody tr:last-child { border-bottom: none; }
.dc-table tbody tr:hover { background: var(--xpale); }
.dc-table tbody td { padding: .6rem 1rem; vertical-align: middle; text-align: left; }
.dc-table tbody td:first-child { text-align: left; }
.dc-sno { width: 65px; text-align: center !important; color: var(--t3); font-weight: 600; font-size: .8rem; }
.dc-year-col { width: 100px; text-align: left !important; }
.dc-dl { width: 120px; }
.dc-nil { color: var(--pale); font-size: .8rem; }

/* year pill */
.dc-year-pill {
    display: inline-block;
    background: var(--xpale); border: 1px solid var(--pale);
    color: var(--t1); border-radius: 6px;
    font-size: .74rem; font-weight: 700;
    padding: .15rem .6rem; white-space: nowrap;
}
.dc-year-pill--new {
    background: var(--G); color: var(--white); border-color: transparent;
}

/* NA tag */
.dc-na-tag {
    display: inline-block; font-size: .68rem; font-weight: 700;
    background: var(--xpale); border: 1px solid var(--pale);
    color: var(--t3); border-radius: 4px; padding: .1rem .45rem;
}

/* download button */
.dc-dl-btn {
    display: inline-flex; align-items: center; gap: .35rem;
    background: var(--G); color: var(--white);
    border-radius: 6px; padding: .28rem .7rem;
    font-size: .7rem; font-weight: 700;
    text-decoration: none; transition: var(--t);
    box-shadow: 0 2px 6px rgba(30,58,138,.15); white-space: nowrap;
}
.dc-dl-btn:hover { opacity: .88; transform: translateY(-1px); color: var(--white); }
.dc-dl-btn:focus-visible { outline: 3px solid var(--mid); outline-offset: 2px; }
.dc-dl-btn i { font-size: .66rem; }

/* multiple download buttons stacked */
.dc-multi-dl { display: flex; flex-direction: column; gap: .3rem; align-items: flex-start; }

/* meeting type tags */
.dc-meeting-tag {
    display: inline-block; font-size: .67rem; font-weight: 800;
    border-radius: 5px; padding: .12rem .55rem; letter-spacing: .3px;
}
.dc-agm { background: #dcfce7; color: #166534; border: 1px solid #86efac; }
.dc-egm { background: #dbeafe; color: #1e40af; border: 1px solid #93c5fd; }

/* ── GREEN BOND LINK ── */
.dc-green-bond-link {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--pale);
    background: var(--xpale);
}
.dc-green-bond-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    background: var(--G); color: var(--white);
    border-radius: 8px; padding: .6rem 1.3rem;
    font-size: .82rem; font-weight: 700;
    text-decoration: none; transition: var(--t);
    box-shadow: 0 3px 10px rgba(30,58,138,.2);
}
.dc-green-bond-btn:hover { opacity: .88; transform: translateY(-1px); color: var(--white); }
.dc-green-bond-btn i:first-child { color: #6ee7b7; }

.dc-internal-link {
    color: var(--blue); text-decoration: none; font-weight: 500;
    display: inline-flex; align-items: center; gap: .3rem;
    transition: color .2s;
}
.dc-internal-link:hover { color: var(--mid); text-decoration: underline; }
.dc-internal-link i { font-size: .72rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .dc-acc-toggle, .dc-sub-toggle { padding: .8rem 1rem; }
    .dc-table tbody td, .dc-table thead th { padding: .5rem .7rem; }
    .dc-acc-label { font-size: .8rem; }
    .dc-sub-toggle { font-size: .76rem; }
}
@media (max-width: 576px) {
    .dc-table { font-size: .74rem; }
    .dc-dl-btn { font-size: .64rem; padding: .24rem .55rem; }
}
@media print {
    .dc-accordion { box-shadow: none; border: 1px solid #ccc; }
    .dc-acc-body.collapsed { max-height: 9999px !important; }
    .dc-dl-btn { background: none; color: var(--blue); box-shadow: none; }
}