body.bachelors-guess-paper-page .bachelors-hero {
    align-items: start;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: #dfe5ff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.breadcrumbs span:last-child {
    color: var(--accent-soft);
}

.highlight-panel {
    margin-top: 1.4rem;
}

.anchor-panel {
    margin: 1.5rem 0 0.5rem;
    padding: 1.2rem 1.25rem;
    border-radius: 1.35rem;
    background: linear-gradient(145deg, rgba(255, 188, 63, 0.12), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.anchor-panel__eyebrow {
    margin: 0 0 0.8rem;
    color: #fff4c6;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.anchor-panel__note {
    margin: 0.85rem 0 0;
    color: #d9def2;
    font-size: 0.95rem;
}

.anchor-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.anchor-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.anchor-links a:hover,
.anchor-links a:focus-visible {
    transform: translateY(-1px);
    background: rgba(255, 188, 63, 0.16);
    border-color: rgba(255, 188, 63, 0.35);
}

.level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.level-card {
    background: linear-gradient(145deg, rgba(18, 28, 64, 0.9), rgba(9, 14, 34, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.4rem;
    padding: 1.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.level-card h3 {
    color: #fff6dc;
    font-size: 1.08rem;
}

.level-card p {
    color: #d5dbf5;
    flex: 1;
}

.compact-table td a {
    color: var(--accent-soft);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.coverage-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 1.35rem;
    padding: 1.25rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.coverage-card h3 {
    color: var(--accent);
    margin-bottom: 0.7rem;
}

.coverage-card .tip-list {
    margin-top: 0;
}

.cta-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.4rem;
}

@media (max-width: 768px) {
    .anchor-panel {
        padding: 1rem;
    }

    .anchor-links a {
        width: 100%;
        justify-content: flex-start;
    }

    .level-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}
