*, *::before, *::after { box-sizing: border-box; }

:focus-visible {
    outline: 3px solid var(--mid);
    outline-offset: 3px;
    border-radius: 4px;
}

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

.skip-link {
    position: absolute; top: -100px; left: 1rem;
    z-index: 9999; background: var(--blue); color: var(--white);
    padding: .6rem 1.2rem; border-radius: var(--r3);
    font-size: .84rem; font-weight: 600; text-decoration: none;
    transition: top .2s;
}
.skip-link:focus { top: 1rem; }

.subpage-layout {
    display: flex; align-items: flex-start;
    min-height: 80vh;
}

.content-area { flex: 1; min-width: 0; }
.content-body { padding: 2.5rem 2.5rem 5rem; }

.ham-btn {
    display: none;
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 52px; height: 52px; border-radius: 50%; border: none;
    background: var(--G); color: var(--white); font-size: 1.2rem;
    box-shadow: 0 8px 28px rgba(30,58,138,.4);
    z-index: 2001; cursor: pointer;
    align-items: center; justify-content: center; transition: var(--t);
}
.ham-btn:hover { transform: scale(1.1); }

.mob-ov {
    position: fixed; inset: 0;
    background: rgba(15,31,92,.48);
    backdrop-filter: blur(4px);
    z-index: 1500; opacity: 0; visibility: hidden; transition: var(--t);
}
.mob-ov.show { opacity: 1; visibility: visible; }

@media (max-width: 992px) {
    .ham-btn { display: flex; }
    .content-body { padding: 1.5rem 1.25rem 3.5rem; }
}

@media print {
    .sidebar, .ham-btn, .mob-ov { display: none !important; }
    body { font-size: 12pt; }
    .page-hero { background: none; color: #000; padding: 1rem; }
}