/* ==================================================
   EXAM POLICY PAGE – page-level overrides
   Base tokens & shared components live in base.css + components.css
   ================================================== */

/* ---- dark navbar override (same as privacy / terms) ---- */
.navbar--dark {
    background-color: #000 !important;
}

.navbar--dark .navbar__link,
.navbar--dark .navbar__logo-text,
.navbar--dark .navbar__login {
    color: #fff !important;
}

.navbar--dark .navbar__dropdown-menu {
    background: #111;
}

.navbar--dark .navbar__dropdown-item {
    color: #ddd;
}

.navbar--dark .navbar__dropdown-item:hover {
    color: #fff;
    background: #222;
}

/* ---- hero section ---- */
.exam-hero {
    background: #000;
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
}

.exam-hero__title {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.exam-hero__date {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
}

/* ---- content wrapper ---- */
.exam-content {
    padding: 60px 0 80px;
    background: #f5f5f5;
}

.exam-block {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 48px 56px;
}

.exam-block h2 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.exam-section {
    margin-bottom: 36px;
}

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

.exam-section h3 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.exam-section h4 {
    font-family: 'Bricolage Grotesque', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px;
}

.exam-section p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 14px;
}

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

.exam-section ul,
.exam-section ol {
    padding-left: 24px;
    margin-bottom: 14px;
}

.exam-section li {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 6px;
}

.exam-section a {
    color: #e53935;
    text-decoration: underline;
}

.exam-section a:hover {
    color: #c62828;
}

/* ---- narrow container for content card ---- */
.container-narrow {
    max-width: 880px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- responsive ---- */
@media (max-width: 768px) {
    .exam-hero {
        padding: 100px 0 40px;
    }

    .exam-hero__title {
        font-size: 2rem;
    }

    .exam-block {
        padding: 32px 24px;
    }

    .exam-block h2 {
        font-size: 1.35rem;
    }
}

@media (max-width: 480px) {
    .exam-hero__title {
        font-size: 1.6rem;
    }

    .exam-block {
        padding: 24px 16px;
    }
}