/* ============================================
   BVK Mandatory Public Disclosure — CBSE Appendix-IX
   ============================================ */

.disclosure-main {
    padding: 56px 0 80px;
    background: var(--gray-50);
}

.disclosure-section {
    margin-bottom: 40px;
}

.disclosure-section:last-child { margin-bottom: 0; }

/* ---- Section title ---- */
.disclosure-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 0 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: 0.3px;
}

.disclosure-tag {
    font-size: 20px;
    font-weight: 800;
    color: var(--blue-700);
}

.disclosure-title-text {
    text-decoration: underline;
    text-decoration-color: var(--gold-400);
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
    text-transform: uppercase;
}

.disclosure-subheading {
    margin: 24px 0 12px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--blue-800);
}

/* ---- Table shell ---- */
.disclosure-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--blue-200);
    border-radius: var(--radius-md);
    background: var(--white);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
}

.disclosure-table-wrap:last-child { margin-bottom: 0; }

.disclosure-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 1.55;
}

/* ---- Header row ---- */
.disclosure-table thead th {
    background: var(--blue-100);
    color: var(--blue-900);
    font-weight: 700;
    font-size: 12px;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.45px;
    padding: 12px 14px;
    border-bottom: 2px solid var(--blue-300);
    vertical-align: middle;
    white-space: nowrap;
}

.disclosure-table thead th:not(:last-child),
.disclosure-table tbody td:not(:last-child) {
    border-right: 1px solid var(--gray-200);
}

/* ---- Body cells ---- */
.disclosure-table tbody td {
    padding: 12px 14px;
    border-top: 1px solid var(--gray-100);
    vertical-align: top;
    color: var(--gray-700);
    word-break: break-word;
}

.disclosure-table tbody tr:nth-child(even) td { background: var(--gray-50); }
.disclosure-table tbody tr:hover td           { background: var(--blue-50); }

/* ---- S.No. column ---- */
.disclosure-table .disclosure-sno,
.disclosure-table thead th.disclosure-sno-head {
    width: 5%;
    min-width: 48px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

/* ---- Sub-rows (PGT / TGT / PRT under "Total No. of Teachers") ---- */
.disclosure-table .disclosure-subrow td {
    background: var(--blue-50) !important;
    font-style: italic;
}

.disclosure-table .disclosure-subrow td:nth-child(2) { padding-left: 32px; }

/* ---- Empty state ---- */
.disclosure-table .disclosure-empty {
    text-align: center;
    color: var(--gray-500);
    font-style: italic;
    padding: 20px;
}

/* ---- Links inside cells ---- */
.disclosure-table .disclosure-link {
    color: var(--blue-700);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}

.disclosure-table .disclosure-link:hover {
    color: var(--blue-900);
}

.disclosure-table .muted { color: var(--gray-400); }

/* ---- CMS-authored rich-text inside cells ---- */
.disclosure-table tbody td ul,
.disclosure-table tbody td ol {
    margin: 0;
    padding-left: 20px;
}

.disclosure-table tbody td ul { list-style: disc; }
.disclosure-table tbody td ol { list-style: decimal; }

.disclosure-table tbody td li {
    margin: 0 0 4px;
    line-height: 1.55;
}

.disclosure-table tbody td li:last-child { margin-bottom: 0; }

.disclosure-table tbody td p { margin: 0 0 6px; }
.disclosure-table tbody td p:last-child { margin-bottom: 0; }

.disclosure-table tbody td a:not(.disclosure-link) {
    color: var(--blue-700);
    text-decoration: underline;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .disclosure-main { padding: 40px 0 60px; }
    .disclosure-title { font-size: 17px; }
    .disclosure-tag   { font-size: 17px; }
    .disclosure-table { font-size: 12px; }
    .disclosure-table thead th,
    .disclosure-table tbody td { padding: 9px 10px; }
    .disclosure-table .disclosure-subrow td:nth-child(2) { padding-left: 24px; }
}
