/*
 * Governance — Page-Specific Styles
 * Shared design system: srusti-design-system.css (loaded first)
 */

/* ══════════ HERO VISUAL ══════════ */
.gov-visual { position: relative; width: 420px; height: 420px; flex-shrink: 0; }
.gov-circle { width: 100%; height: 100%; background: url("https://orchid-tarsier-515153.hostingersite.com/public/img/srusti-building.png"); border: 1.5px solid rgba(255,255,255,0.07); border-radius: 50%; display: flex; align-items: center; justify-content: center; animation: gov-pulse 3s ease-in-out infinite;background-size: contain; }
@keyframes gov-pulse { 0%,100%{box-shadow:0 0 0 10px rgba(220,162,0,0.08),0 0 0 22px rgba(220,162,0,0.04);} 50%{box-shadow:0 0 0 18px rgba(220,162,0,0.12),0 0 0 36px rgba(220,162,0,0.06);} }
@media(prefers-reduced-motion:reduce){.gov-circle{animation:none;}}
.gov-circle svg { width: 120px; height: 120px; stroke: var(--gold); }

/* ══════════ ORG STRUCTURE IMAGE ══════════ */
.org-image { text-align: center; }
.org-image img { max-width: 800px; width: 100%; height: auto; margin: 0 auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ══════════ GOVERNANCE TABLE ══════════ */
.gov-table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--border); }
.gov-table { width: 100%; border-collapse: collapse; background: var(--white); font-family: "Poppins",sans-serif; font-size: 13.5px; }
.gov-table thead th { background: var(--navy); color: var(--white); font-family: "Antonio",sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 0.8px; text-transform: uppercase; padding: 14px 16px; text-align: left; white-space: nowrap; }
.gov-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); color: var(--charcoal); vertical-align: top; }
.gov-table td small { display: block; font-size: 11.5px; color: var(--body-gray); margin-top: 3px; }
.gov-table tbody tr:hover { background: var(--gold-pale); }
.gov-table tbody tr:last-child td { border-bottom: none; }

/* ══════════ HELPLINE CARD ══════════ */
.helpline-card { max-width: 600px; margin: 0 auto; background: var(--white); border: 1px solid var(--border); border-left: 5px solid var(--gold); border-radius: var(--radius-lg); padding: 32px; display: flex; gap: 24px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.helpline-icon { width: 52px; height: 52px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.helpline-icon svg { width: 24px; height: 24px; }
.helpline-body p { font-size: 14.5px; color: var(--charcoal); margin-bottom: 8px; line-height: 1.6; }
.helpline-body a { color: var(--blue); font-weight: 600; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 768px) {
    .helpline-card { flex-direction: column; align-items: center; text-align: center; }
    .gov-table { font-size: 12px; }
    .gov-table thead th { padding: 10px 12px; font-size: 11px; }
    .gov-table td { padding: 10px 12px; }
}
