/* ── right-to-information-act.css → css/rti/right-to-information-act.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 — 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; }

/* ── SECTION CARD ── */
.rti-section-card {
    background: var(--white); border-radius: var(--r1);
    box-shadow: var(--s2); border: 1px solid rgba(37,99,235,.05);
    overflow: hidden; margin-bottom: 1.2rem;
}
.rti-section-card::before { content: ''; display: block; height: 4px; background: var(--G); }

.rti-section-header {
    display: flex; align-items: center; gap: .85rem;
    padding: .9rem 1.6rem;
    background: var(--xpale);
    border-bottom: 1px solid var(--pale);
}
.rti-section-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: var(--G); color: var(--white); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; box-shadow: 0 3px 8px rgba(30,58,138,.18);
}
.rti-section-icon--warn { background: #d97706; box-shadow: 0 3px 8px rgba(217,119,6,.22); }

.rti-section-title {
    font-size: .92rem; font-weight: 800; color: var(--t1);
    margin: 0; line-height: 1.3;
}

.rti-section-body { padding: 1.3rem 1.6rem; }
.rti-section-body p {
    font-size: .88rem; color: var(--t2); line-height: 1.8;
    margin-bottom: .9rem;
}
.rti-section-body p:last-child { margin-bottom: 0; }
.rti-section-body strong { color: var(--t1); font-weight: 700; }

/* ── BULLET LIST ── */
.rti-list {
    list-style: none; margin: .5rem 0 .9rem; padding: 0;
    display: flex; flex-direction: column; gap: .4rem;
}
.rti-list li {
    display: flex; align-items: flex-start; gap: .6rem;
    font-size: .88rem; color: var(--t2); line-height: 1.6;
}
.rti-list li::before {
    content: ''; width: 7px; height: 7px; border-radius: 50%;
    background: var(--G); flex-shrink: 0; margin-top: .45rem;
}

/* ── INFO BOX ── */
.rti-info-box {
    display: flex; align-items: flex-start; gap: .6rem;
    background: #eff6ff; border: 1px solid #bfdbfe;
    border-radius: var(--r2); padding: .85rem 1rem;
    font-size: .84rem; color: #1e40af; line-height: 1.6;
    margin-top: .9rem;
}
.rti-info-box i { font-size: .85rem; flex-shrink: 0; margin-top: .15rem; }
.rti-info-box strong { color: #1e3a8a; }

/* ── ROLE CARDS ── */
.rti-role-card {
    display: flex; align-items: flex-start; gap: 1rem;
    padding: 1rem 0; border-bottom: 1px solid var(--pale);
}
.rti-role-card:last-child { border-bottom: none; padding-bottom: 0; }
.rti-role-num {
    width: 32px; height: 32px; border-radius: 50%;
    background: var(--G); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem; font-weight: 800; flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(30,58,138,.2);
}
.rti-role-title {
    font-size: .88rem; font-weight: 700; color: var(--blue); margin-bottom: .35rem;
}
.rti-role-content p { margin-bottom: 0 !important; }

/* ── LINK BUTTON ── */
.rti-link-btn {
    display: inline-flex; align-items: center; gap: .45rem;
    background: var(--G); color: var(--white);
    border-radius: 8px; padding: .5rem 1.2rem;
    font-size: .8rem; font-weight: 700;
    text-decoration: none; transition: var(--t);
    box-shadow: 0 3px 10px rgba(30,58,138,.2);
    margin-top: .75rem;
}
.rti-link-btn:hover { opacity: .88; transform: translateY(-1px); color: var(--white); }
.rti-link-btn:focus-visible { outline: 3px solid var(--mid); outline-offset: 2px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .rti-section-header { padding: .75rem 1rem; }
    .rti-section-body   { padding: 1rem; }
    .rti-section-title  { font-size: .85rem; }
}
@media print {
    .rti-section-card { box-shadow: none; border: 1px solid #ccc; page-break-inside: avoid; }
}