/* ============================================================
   Arthavrksh — Shared Stylesheet
   Loaded by every page. Page-specific overrides live in
   individual <style> blocks within each HTML file.
   ============================================================ */

/* Google Material Symbols */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* WCAG 2.4.7 — Visible focus indicators for keyboard users */
*:focus-visible {
    outline: 2px solid #1F8F4E;
    outline-offset: 2px;
}

/* Screen reader only utility (used by skip link) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.sr-only.focus\:not-sr-only:focus,
.focus\:not-sr-only:focus {
    position: absolute;
    width: auto;
    height: auto;
    padding: 8px 16px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

html {
    scroll-behavior: smooth;
}

/* ── Header & Footer shared styles ────────────────────────── */
#header-placeholder,
#footer-placeholder {
    display: contents;
}

/* Regulatory bar */
.regulatory-bar {
    width: 100%;
    background-color: #1A1A2E;
    padding: 0.5rem 1rem;
    text-align: center;
}

.regulatory-bar p {
    font-size: 0.625rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
