/* Pale orange: the brand palette has pale lavender and pale lime but no
   pale orange, so the card trio had to hardcode one. Declared here until
   it earns a place in style.css :root. */
:root { --brand-orange-pale: #FFD1B5; }

.curriculum-page {
    overflow-x: hidden;
}

.curriculum-page main {
    color: #005950;
}

.curriculum-hero {
    position: relative;
    padding: 138px 0 64px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.curriculum-hero::before {
    content: "";
    position: absolute;
    inset: 68px 0 0;
    background:
        linear-gradient(rgba(0, 89, 80, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 89, 80, 0.045) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.7), transparent 88%);
    pointer-events: none;
}

.curriculum-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    pointer-events: none;
}

.curriculum-orb-one {
    width: 420px;
    height: 420px;
    right: -180px;
    top: 80px;
    background: var(--brand-lavender);
    opacity: .34;
}

.curriculum-orb-two {
    width: 260px;
    height: 260px;
    left: -130px;
    bottom: -80px;
    background: var(--brand-lime);
    opacity: .7;
}

.curriculum-hero-grid {
    position: relative;
    z-index: 1;
    display: block;
}

.curriculum-hero-copy {
    max-width: 860px;
}

.curriculum-eyebrow {
    margin-bottom: 18px;
    color: var(--brand-teal);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.6px;
}

.curriculum-hero h1,
.curriculum-section h2,
.curriculum-final-cta h2 {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: -.5px;
    color: #005950;
}

.curriculum-hero h1 {
    max-width: 720px;
    margin-bottom: 26px;
    font-size: clamp(36px, 4.5vw, 60px);
    line-height: 1.01;
}

.curriculum-hero-lead {
    max-width: 660px;
    color: var(--gray-700);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.curriculum-section {
    padding: 82px 0;
}

.curriculum-section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}

.curriculum-section h2,
.curriculum-final-cta h2 {
    font-size: clamp(30px, 3.5vw, 50px);
    line-height: 1.08;
}

.curriculum-section-heading > p:last-child,
.curriculum-funding-grid > div > p:last-child {
    margin-top: 20px;
    color: var(--gray-700);
    font-size: 17px;
    line-height: 1.75;
}

.curriculum-catalog {
    background: var(--brand-cream);
}

.catalog-label-only {
    margin-bottom: 8px;
}

.catalog-disclaimer {
    max-width: 760px;
    margin-bottom: 24px;
    color: var(--gray-600);
    font-size: 12px;
    line-height: 1.55;
}

.catalog-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.catalog-column {
    min-height: 100%;
    padding: 26px;
    border: 1px solid rgba(0, 89, 80, .15);
    border-radius: var(--radius-lg);
    background: var(--white);
}

.catalog-available { border-top: 7px solid var(--brand-lime-dark); }
.catalog-beta { border-top: 7px solid var(--brand-lavender); }
.catalog-coming { border-top: 7px solid var(--brand-orange); }

.catalog-coming {
    grid-column: 1 / -1;
    margin-top: 4px;
}

.catalog-status-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 89, 80, .12);
}

.catalog-status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--brand-lime-dark);
    box-shadow: 0 0 0 5px rgba(200, 240, 112, .2);
}

.catalog-beta .catalog-status-dot {
    background: var(--brand-lavender);
    box-shadow: 0 0 0 5px rgba(162, 184, 255, .25);
}

.catalog-coming .catalog-status-dot {
    background: var(--brand-orange);
    box-shadow: 0 0 0 5px rgba(255, 140, 66, .17);
}

.catalog-status-row h3 {
    color: #005950;
    font-family: var(--font-display);
    font-size: 25px;
    font-weight: 400;
}

.catalog-count {
    margin-left: auto;
    color: var(--gray-500);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.catalog-subject {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 22px 0;
}

.catalog-subject + .catalog-subject {
    border-top: 1px solid rgba(0, 89, 80, .1);
}

.catalog-symbol {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--brand-lime);
    color: #005950;
    font-family: var(--font-display);
    font-size: 25px;
}

.catalog-beta .catalog-symbol {
    background: rgba(162, 184, 255, .52);
}

.catalog-subject h4,
.coming-group-title {
    color: #005950;
    font-size: 16px;
}

.catalog-subject p {
    margin-top: 6px;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.65;
}

.catalog-subject .standards-alignment {
    margin-top: 11px;
    padding: 10px 12px;
    border-left: 3px solid #005950;
    border-radius: 0 10px 10px 0;
    background: rgba(0, 89, 80, .055);
    color: var(--brand-teal);
    font-size: 11px;
    line-height: 1.55;
}

.standards-alignment strong,
.coming-subject p strong {
    color: #005950;
    font-weight: 800;
}

.catalog-modes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 13px;
}

.catalog-modes span {
    padding: 4px 8px;
    border-radius: var(--radius-md);
    background: rgba(0, 89, 80, .08);
    color: var(--brand-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.catalog-skill-list {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    list-style: none;
}

.catalog-skill-list li {
    position: relative;
    padding-left: 16px;
    color: var(--brand-teal);
    font-size: 12px;
    line-height: 1.5;
}

.catalog-skill-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-lavender);
}

.coming-intro {
    max-width: 760px;
    margin-top: 20px;
    color: var(--gray-600);
    font-size: 13px;
    line-height: 1.7;
}

.coming-subject-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 24px;
}

.coming-subject {
    min-height: 150px;
    padding: 18px;
    border: 1px solid rgba(0, 89, 80, .1);
    border-radius: 16px;
    background: var(--brand-cream);
}

.coming-subject-wide {
    grid-column: span 2;
}

.coming-subject h4 {
    color: #005950;
    font-size: 14px;
}

.coming-subject p {
    margin-top: 8px;
    color: var(--gray-600);
    font-size: 11px;
    line-height: 1.65;
}

.coming-subject p strong {
    display: inline-block;
    margin-bottom: 3px;
    font-size: 12px;
    letter-spacing: .15px;
}

.curriculum-funding {
    background: #005950;
    color: var(--white);
}

.curriculum-funding-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
}

.curriculum-funding .curriculum-eyebrow {
    color: var(--brand-lime);
}

.curriculum-funding h2 {
    color: var(--white);
}

.curriculum-funding-grid > div > p:last-child {
    color: rgba(255,255,255,.72);
}

.funding-list {
    display: grid;
    gap: 10px;
    list-style: none;
}

.funding-list li {
    position: relative;
    padding: 18px 20px 18px 54px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 16px;
    background: rgba(255,255,255,.07);
    font-size: 14px;
    font-weight: 700;
}

.funding-list li::before {
    content: "\2713";
    position: absolute;
    left: 18px;
    color: var(--brand-lime);
}

.funding-disclaimer {
    grid-column: 1 / -1;
    margin-top: 10px;
    color: rgba(255,255,255,.55);
    font-size: 12px;
    text-align: center;
}

.curriculum-final-cta {
    padding: 32px 0 96px;
}

.curriculum-final-inner {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 38px;
    align-items: center;
    padding: 54px 60px;
    border-radius: 40px;
    background: var(--brand-orange-pale);
}

.curriculum-final-inner .curriculum-eyebrow {
    margin-bottom: 8px;
}

.curriculum-final-cta h2 {
    font-size: clamp(30px, 3.4vw, 46px);
}

.curriculum-mascot {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .curriculum-hero-grid {
        gap: 48px;
    }

    .coming-subject-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .curriculum-final-inner {
        grid-template-columns: 110px 1fr;
    }

    .curriculum-final-inner .btn {
        grid-column: 2;
        justify-self: start;
    }

    .curriculum-mascot {
        width: 105px;
        height: 105px;
    }
}

@media (max-width: 768px) {
    .curriculum-hero {
        min-height: auto;
        padding: 112px 0 54px;
    }

    .curriculum-hero-grid,
    .curriculum-funding-grid {
        grid-template-columns: 1fr;
    }

    .catalog-columns {
        grid-template-columns: 1fr;
    }

    .catalog-coming {
        grid-column: auto;
    }

    .coming-subject-grid {
        grid-template-columns: 1fr 1fr;
    }

    .coming-subject-wide {
        grid-column: span 2;
    }

    .curriculum-hero-grid {
        gap: 56px;
    }

    .curriculum-hero h1 {
        font-size: clamp(34px, 6vw, 52px);
    }

    .curriculum-section {
        padding: 64px 0;
    }

    .curriculum-funding-grid {
        gap: 36px;
    }

    .funding-disclaimer {
        grid-column: auto;
    }

    .curriculum-final-inner {
        grid-template-columns: 1fr;
        padding: 40px 30px;
        text-align: center;
    }

    .curriculum-final-inner .btn {
        grid-column: auto;
        justify-self: center;
    }

    .curriculum-mascot {
        margin: 0 auto;
    }
}

@media (max-width: 520px) {
    .coming-subject-grid {
        grid-template-columns: 1fr;
    }

    .coming-subject-wide {
        grid-column: auto;
    }

}

/* Effective Curriculum Practice + Measure and Improve */
.curriculum-practice {
    padding: 56px 24px;
}

.curriculum-practice .section-title {
    font-size: clamp(28px, 2.6vw, 38px);
    margin-bottom: 20px;
    text-wrap: balance;
}

.curriculum-practice-narrow {
    max-width: 820px;
    margin: 0 auto;
}

.curriculum-practice-narrow p {
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

.curriculum-practice-row {
    max-width: 820px;
    margin-top: 72px;
    padding: 0;
}

.curriculum-practice-row .feature-row {
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    margin-bottom: 0;
}

.curriculum-practice-row .feature-title {
    font-size: clamp(24px, 2.2vw, 30px);
    margin-bottom: 14px;
    text-wrap: balance;
}

.curriculum-practice-row .feature-desc {
    max-width: 100%;
    font-size: 1.02rem;
    margin-bottom: 14px;
}

.curriculum-practice-row .feature-desc:last-of-type {
    margin-bottom: 0;
}

.curriculum-practice-row .feature-mockup img {
    max-width: 300px;
    border-radius: 16px;
    border: 1px solid rgba(0, 89, 80, 0.12);
    box-shadow: 0 8px 28px rgba(0, 89, 80, 0.10);
}

@media (max-width: 900px) {
    .curriculum-practice-row .feature-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .curriculum-practice-row .feature-desc {
        max-width: 100%;
    }
}
