/* MDCAT Guide Page Styles */

.mdcat-hero {
    background: linear-gradient(135deg, var(--medical-blue-dark) 0%, var(--medical-blue) 100%);
    padding: 80px 0;
    text-align: center;
}

.mdcat-hero .hero-title {
    color: white;
}

.mdcat-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.btn-outline-white {
    border-color: white !important;
    color: white !important;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}


.mdcat-content-block {
    padding: 32px;
}

.section-heading {
    margin-bottom: 16px;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 12px;
}

.passing-list {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.passing-list li {
    margin-bottom: 8px;
}

.table-total-row {
    background: var(--bg-section);
    font-weight: 700;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tip-item {
    display: flex;
    gap: 16px;
}

.tip-number {
    width: 40px;
    height: 40px;
    background: var(--success-light);
    color: var(--success-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    flex-shrink: 0;
}

.tip-content h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.tip-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.sidebar-nav-title {
    font-size: 1.1rem;
    margin-bottom: 16px;
    border-bottom: 1.5px solid var(--border);
    padding-bottom: 8px;
}

.sidebar-nav-list {
    list-style: none;
    padding: 0;
    font-size: 0.875rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-nav-list a {
    color: var(--medical-blue);
    text-decoration: none;
}

.aggregate-cta-box {
    background: linear-gradient(135deg, var(--warning-amber), #f59e0b);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    color: white;
    margin-bottom: 24px;
}

.aggregate-cta-box h3 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.aggregate-cta-box p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 16px;
}

.btn-white-text-warning {
    background: white !important;
    color: var(--warning-amber) !important;
    text-align: center;
    display: block;
    text-decoration: none;
}