/* ================================================================
   mLAC Examination Section — Shared Content Component Styles
   Applies to all Examination sub-pages.
   Layout classes (.about-layout, .about-sidebar, .about-content)
   come from inline <style> per page mirroring the About section.
================================================================ */

/* ── Page Title ──────────────────────────────────────────── */
.exam-page-title {
    margin-top: 0;
    color: #8b0007;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.3px;
    border-bottom: 2px solid #fce8e8;
    padding-bottom: 14px;
    margin-bottom: 28px;
    font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
}

/* ── Intro / Callout Card ────────────────────────────────── */
.exam-intro-card {
    background: linear-gradient(135deg, #fff5f5 0%, #fff9f9 100%);
    border-left: 4px solid #8b0007;
    border-radius: 0 10px 10px 0;
    padding: 22px 26px;
    margin-bottom: 24px;
}
.exam-intro-card p {
    margin: 0 0 12px;
    color: #3a3a3a;
    line-height: 1.8;
    font-size: 15px;
}
.exam-intro-card p:last-child { margin-bottom: 0; }

/* ── Info Card Grid ──────────────────────────────────────── */
.exam-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-top: 20px;
}
.exam-info-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    padding: 20px 22px;
    box-shadow: 0 2px 10px rgba(139,0,7,0.05);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.exam-info-card:hover {
    box-shadow: 0 6px 22px rgba(139,0,7,0.10);
    transform: translateY(-2px);
}
.exam-info-card-icon {
    font-size: 26px;
    margin-bottom: 10px;
    display: block;
}
.exam-info-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #8b0007;
    margin: 0 0 6px;
}
.exam-info-card p {
    font-size: 13.5px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* ── Section Sub-heading ─────────────────────────────────── */
.exam-section-heading {
    font-size: 16px;
    font-weight: 700;
    color: #8b0007;
    margin: 30px 0 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid #fce8e8;
    font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
}

/* ── Styled Checklist ────────────────────────────────────── */
.exam-styled-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}
.exam-styled-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 14.5px;
    color: #3a3a3a;
    line-height: 1.75;
}
.exam-styled-list li:last-child { border-bottom: none; }
.exam-styled-list li::before {
    content: '✦';
    color: #8b0007;
    font-size: 11px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ── Document / Download Link List ──────────────────────── */
.exam-doc-list {
    list-style: none;
    padding: 0;
    margin: 12px 0 20px;
}
.exam-doc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid #ececec;
    border-radius: 8px;
    margin-bottom: 8px;
    background: #fafafa;
    transition: background 0.18s ease, border-color 0.18s ease;
}
.exam-doc-list li:hover {
    background: #fff5f5;
    border-color: #f0c4c4;
}
.exam-doc-list li::before {
    content: '📄';
    font-size: 16px;
    flex-shrink: 0;
}
.exam-doc-list a {
    color: #8b0007;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.18s;
}
.exam-doc-list a:hover {
    color: #6b0005;
    text-decoration: underline;
}

/* ── CTA Button ──────────────────────────────────────────── */
.exam-cta-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 28px;
    background: #8b0007;
    color: #fff !important;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 600;
    text-decoration: none !important;
    letter-spacing: 0.02em;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(139,0,7,0.18);
}
.exam-cta-btn:hover {
    background: #6b0005;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139,0,7,0.25);
}

/* ── Data Table ──────────────────────────────────────────── */
.exam-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    margin: 18px 0 24px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.exam-table thead tr {
    background: #8b0007;
    color: #fff;
}
.exam-table th {
    padding: 13px 18px;
    text-align: left;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.exam-table td {
    padding: 12px 18px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
}
.exam-table tbody tr:nth-child(even) { background: #fff5f5; }
.exam-table tbody tr:hover { background: #fce8e8; transition: background 0.15s; }

/* ── Person Card ─────────────────────────────────────────── */
.exam-person-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff5f5;
    border: 1px solid #fce8e8;
    border-radius: 12px;
    padding: 22px 26px;
    margin-top: 16px;
    transition: box-shadow 0.22s ease;
}
.exam-person-card:hover {
    box-shadow: 0 4px 16px rgba(139,0,7,0.09);
}
.exam-person-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #8b0007;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}
.exam-person-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #2c2c2c;
    margin: 0 0 5px;
}
.exam-person-card p {
    font-size: 13.5px;
    color: #666;
    margin: 0;
}

/* ── Responsive Adjustments ──────────────────────────────── */
@media (max-width: 768px) {
    .exam-page-title { font-size: 22px; }
    .exam-info-grid { grid-template-columns: 1fr 1fr; }
    .exam-intro-card { padding: 18px 18px; }
    .exam-intro-card p { font-size: 14px; }
}
@media (max-width: 600px) {
    .exam-info-grid { grid-template-columns: 1fr; }
    .exam-person-card { flex-direction: column; align-items: flex-start; gap: 14px; }
    .exam-table { font-size: 13px; }
    .exam-table th, .exam-table td { padding: 10px 12px; }
}
@media (max-width: 480px) {
    .exam-page-title { font-size: 20px; }
    .exam-section-heading { font-size: 15px; }
    .exam-doc-list li { padding: 10px 12px; }
    .exam-cta-btn { padding: 10px 20px; font-size: 13.5px; }
}
