/* ========================================================================
   YEAR 11 PRACTICE TASK
   Styles for /exploration/y11-practice/
   House style (2026-07): cream/mint/teal/tangerine/gold tokens.
   ======================================================================== */

/* ====================================================================
   PAGE-SCOPED BODY BACKGROUND
   body.y11-practice-page is set via {% block body_class %} — scoped to
   this template only, doesn't touch the site-wide body background.
   ==================================================================== */
body.y11-practice-page {
    background-color: var(--cream);
}

/* ====================================================================
   PAGE TITLE
   ==================================================================== */
.y11-practice-title {
    color: var(--teal-deep);
    font-family: var(--jm-font-display);
    font-weight: 800;
    font-size: 2.25rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

@media (max-width: 767.98px) {
    .y11-practice-title {
        font-size: 1.75rem;
    }
}

/* ====================================================================
   SCENARIO CARDS
   ==================================================================== */
.scenario-card {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
}

.scenario-card .scenario-header {
    background: var(--mint);
    padding: 0.6rem 1rem;
    font-weight: 600;
    color: var(--teal-deep);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--line);
}

.scenario-card .scenario-body {
    padding: 0.75rem 1rem;
    font-size: 0.88rem;
}

.scenario-card .scenario-links a {
    font-size: 0.85rem;
}

/* ====================================================================
   UTILITIES
   ==================================================================== */
.placeholder-link {
    cursor: default;
}
.placeholder-link:hover {
    text-decoration: none !important;
}
