:root {
    --primary: #1e40af;
    --primary-dark: #172554;
    --primary-light: #eff6ff;
    --primary-gradient: linear-gradient(135deg, #1e3a8a 0%, #2563eb 60%, #3b82f6 100%);
    
    --accent-gold: #f59e0b;
    --accent-gold-light: #fef3c7;
    --accent-gold-dark: #b45309;
    
    --accent-green: #10b981;
    --accent-green-light: #d1fae5;
    
    --accent-coral: #f43f5e;
    --accent-coral-light: #ffe4e6;
    
    --accent-purple: #8b5cf6;
    --accent-purple-light: #ede9fe;

    --white: #ffffff;
    --off-white: #f8fafc;
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --text-main: #0f172a;
    --text-muted: #64748b;

    --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-sm: 0 4px 12px rgba(30, 58, 138, 0.06);
    --shadow-md: 0 10px 25px -3px rgba(30, 58, 138, 0.1), 0 4px 6px -4px rgba(30, 58, 138, 0.05);
    --shadow-lg: 0 20px 35px -5px rgba(30, 58, 138, 0.15);
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    color: var(--text-main);
    background: var(--off-white);
    line-height: 1.6;
    padding-bottom: 70px; /* Space for fixed bottom navigation */
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, .brand-font {
    font-family: 'Fredoka', 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* ===== Top Notification Bar ===== */
.top-notification-bar {
    background: linear-gradient(90deg, #172554, #1e40af, #2563eb);
    color: var(--white);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.top-bar-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.pulse-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-gold);
    color: #78350f;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
}

.top-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.92;
    transition: opacity 0.2s;
}

.top-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* ===== Header & Navigation ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.school-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}

.logo-emblem {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #1e40af 0%, #f59e0b 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.25);
}

.logo-text-group {
    display: flex;
    flex-direction: column;
}

.school-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.school-title span {
    color: var(--accent-gold);
}

.school-tagline {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Section Navigation Tabs */
.section-nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    background: var(--off-white);
    padding: 4px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.nav-btn {
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13.5px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.nav-btn:hover {
    color: var(--primary);
}

.nav-btn.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(30, 64, 175, 0.3);
}

.btn-apply-direct {
    background: linear-gradient(135deg, var(--accent-coral) 0%, #e11d48 100%);
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 13.5px;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(244, 63, 94, 0.35);
    transition: all 0.25s;
    font-family: inherit;
}

.btn-apply-direct:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(244, 63, 94, 0.45);
}

/* ===== Main Section Views Controller ===== */
.section-view-container {
    flex: 1;
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    padding: 30px 20px;
}

.section-pane {
    display: none;
    animation: fadeInSection 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-pane.active {
    display: block;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Common Card & Layout Elements ===== */
.banner-card {
    background: var(--primary-gradient);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 45px 36px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.banner-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, rgba(255,255,255,0) 70%);
}

.banner-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 700;
    color: #fef08a;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.banner-title {
    font-size: 38px;
    line-height: 1.18;
    margin-bottom: 12px;
}

.banner-title span {
    color: var(--accent-gold);
}

.banner-subtitle {
    font-size: 16.5px;
    opacity: 0.95;
    max-width: 680px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.banner-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    font-family: inherit;
}

.btn-action.gold {
    background: var(--accent-gold);
    color: #78350f;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}

.btn-action.gold:hover {
    background: #fbbf24;
    transform: translateY(-2px);
}

.btn-action.outline-white {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-action.outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* ===== Stats Strip ===== */
.stats-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 32px;
}

.stat-card-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 18px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.stat-card-box .stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Fredoka', sans-serif;
}

.stat-card-box .stat-txt {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ===== Quick Navigation Cards (Home Section) ===== */
.quick-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.quick-nav-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quick-nav-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.quick-nav-icon {
    font-size: 34px;
    margin-bottom: 4px;
}

.quick-nav-card h4 {
    font-size: 17px;
    color: var(--primary-dark);
}

.quick-nav-card p {
    font-size: 12.5px;
    color: var(--text-muted);
}

/* ===== Section Titles & Cards ===== */
.section-head {
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid var(--border-light);
    padding-bottom: 12px;
}

.section-head h2 {
    font-size: 28px;
    color: var(--primary-dark);
}

.section-head p {
    font-size: 14.5px;
    color: var(--text-muted);
}

/* ===== 4 Stage Cards (Academics / About) ===== */
.stage-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stage-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.25s;
}

.stage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
}

.stage-card.ukg::before { background: var(--accent-coral); }
.stage-card.primary::before { background: var(--accent-gold); }
.stage-card.middle::before { background: var(--accent-green); }
.stage-card.secondary::before { background: var(--primary); }

.stage-card .badge-grade {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    color: var(--primary);
    margin-bottom: 10px;
}

.stage-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.stage-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===== Facilities 3-Column Grid ===== */
.facility-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}

.facility-card-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}

.facility-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: #bfdbfe;
}

.facility-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.facility-icon-circle.blue { background: var(--primary-light); }
.facility-icon-circle.gold { background: var(--accent-gold-light); }
.facility-icon-circle.green { background: var(--accent-green-light); }
.facility-icon-circle.coral { background: var(--accent-coral-light); }
.facility-icon-circle.purple { background: var(--accent-purple-light); }

.facility-card-item h3 {
    font-size: 19px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.facility-card-item p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== 4 School Houses ===== */
.houses-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}

.house-box-card {
    border-radius: var(--radius-md);
    padding: 22px 18px;
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.house-box-card.red { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }
.house-box-card.blue { background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%); }
.house-box-card.green { background: linear-gradient(135deg, #10b981 0%, #047857 100%); }
.house-box-card.gold { background: linear-gradient(135deg, #f59e0b 0%, #b45309 100%); }

.house-box-card .house-icon { font-size: 32px; margin-bottom: 6px; }
.house-box-card h4 { font-size: 18px; margin-bottom: 2px; }
.house-box-card p { font-size: 12.5px; opacity: 0.92; }

/* ===== Notice Board List ===== */
.notice-container-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    margin-bottom: 30px;
}

.notices-box-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.notice-item-row {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    align-items: flex-start;
}

.notice-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.date-chip {
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    min-width: 56px;
    text-align: center;
    padding: 8px 4px;
}

.date-chip .d { font-size: 20px; font-weight: 800; line-height: 1; }
.date-chip .m { font-size: 11px; text-transform: uppercase; font-weight: 700; }

.notice-desc-text h4 {
    font-size: 15.5px;
    color: var(--text-main);
    margin-bottom: 3px;
}

.notice-desc-text p {
    font-size: 13.5px;
    color: var(--text-muted);
}

/* ===== Admissions Section ===== */
.admission-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 32px;
    margin-bottom: 30px;
}

.admission-info-card {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.admission-info-card h3 {
    font-size: 22px;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.step-point {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.step-num-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: #78350f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.step-point h5 { font-size: 15px; margin-bottom: 2px; }
.step-point p { font-size: 13px; opacity: 0.88; }

.admission-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.admission-form-wrapper h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.admission-form-wrapper .sub {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.form-row-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group-item {
    margin-bottom: 14px;
}

.form-group-item.full {
    grid-column: span 2;
}

.form-group-item label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 5px;
}

.form-group-item input,
.form-group-item select,
.form-group-item textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    background: var(--off-white);
    transition: all 0.2s;
}

.form-group-item input:focus,
.form-group-item select:focus,
.form-group-item textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.12);
}

.form-success-banner {
    display: none;
    background: #ecfdf5;
    border: 1.5px solid #6ee7b7;
    color: #065f46;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    margin-bottom: 18px;
    font-size: 14px;
}

.form-error-banner {
    display: none;
    background: #fff1f2;
    border: 1.5px solid #fecaca;
    color: #991b1b;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    font-size: 14px;
}

.form-success-banner.show {
    display: block;
}
.form-error-banner.show {
    display: block;
}

.btn-submit-admission {
    width: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 13px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 15px;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(30, 64, 175, 0.3);
    transition: all 0.25s;
    font-family: inherit;
}

.btn-submit-admission:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(30, 64, 175, 0.4);
}

/* ===== Section Footer / Navigation Buttons ===== */
.section-footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0 6px;
    border-top: 1px solid var(--border);
    margin-top: 24px;
}

.btn-page-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--text-main);
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-page-nav:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ===== Site Bottom Footer ===== */
.site-footer {
    background: #091a2b;
    color: #94a3b8;
    padding: 24px 20px;
    font-size: 13px;
    text-align: center;
    margin-top: auto;
}

/* ===== Fixed Bottom Navigation (Standard CSS: left: 0; right: 0;) ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 200;
    box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.08);
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.bottom-nav-item .nav-icon {
    font-size: 18px;
    line-height: 1;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
    color: var(--primary);
}

.bottom-nav-item.active {
    background: var(--primary-light);
}

/* ===== Responsive Media Queries ===== */
@media (max-width: 1024px) {
    .quick-nav-grid,
    .stats-grid-4col,
    .stage-grid-4,
    .houses-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    .facility-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .notice-container-grid,
    .admission-page-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-nav-menu {
        display: none;
    }
    .top-links {
        display: none;
    }
    .top-bar-container {
        justify-content: center;
    }
    .banner-card {
        padding: 30px 22px;
    }
    .banner-title {
        font-size: 28px;
    }
    .quick-nav-grid,
    .stats-grid-4col,
    .stage-grid-4,
    .facility-grid-3col,
    .houses-grid-4col {
        grid-template-columns: 1fr;
    }
    .form-row-grid {
        grid-template-columns: 1fr;
    }
    .form-group-item.full {
        grid-column: span 1;
    }
}
/* Skip link visible on focus */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 1000;
}
.skip-link:focus {
    left: 12px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 8px 12px;
    background: var(--primary);
    color: var(--white);
    border-radius: 6px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

/* Clear focus-visible styles for interactive elements */
.nav-btn:focus-visible,
.bottom-nav-item:focus-visible,
.quick-nav-card:focus-visible,
.btn-action:focus-visible,
.btn-page-nav:focus-visible,
.btn-submit-admission:focus-visible {
    outline: 3px solid rgba(37,99,235,0.35);
    outline-offset: 2px;
}

/* Small utility classes to replace a few inline styles */
.muted-small { font-size: 13px; color: var(--text-muted); }
.panel-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; margin-bottom: 26px; box-shadow: var(--shadow-sm); }
.panel-title { color: var(--primary-dark); font-size: 22px; margin-bottom: 10px; }
.lead-text { font-size: 15px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; }
.chip-row { display: flex; gap: 14px; flex-wrap: wrap; }
.badge-chip { padding: 5px 14px; border-radius: var(--radius-full); font-size: 12.5px; font-weight: 700; }
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-green { background: var(--accent-green-light); color: #065f46; }
.badge-gold { background: var(--accent-gold-light); color: #78350f; }
.info-strip { background: var(--primary-light); border: 1.5px solid #bfdbfe; border-radius: var(--radius-md); padding: 22px; margin-bottom: 24px; }
.small-heading { color: var(--primary-dark); margin-bottom: 6px; font-size: 16px; }
.small-text { font-size: 14px; color: var(--text-main); }
.testimonial-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; justify-content: space-between; }
.rating { color: var(--accent-gold); font-size: 16px; margin-bottom: 8px; }
.testimonial-text { font-size: 14px; color: var(--text-main); font-style: italic; line-height: 1.6; margin-bottom: 16px; }
.avatar-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 800; }
.person-name { font-weight: 700; font-size: 14px; }
.person-meta { font-size: 12px; color: var(--text-muted); }
.admission-subtext { font-size: 13.5px; opacity: 0.9; margin-bottom: 22px; }
.contact-row { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; margin-top: 20px; font-size: 13px; }

.panel-title--sm { font-size: 20px; margin-bottom: 16px; }
.panel-title--md { font-size: 17px; margin-bottom: 8px; }
.author-row { display:flex; align-items:center; gap:10px; }
.mb-04 { margin-bottom: 4px; }
