.sch-hero {
    background: linear-gradient(135deg, #fff8f0 0%, #fff2e6 100%);
    border-top: 6px solid #e67e3b;
    border-bottom: 1px solid #f5dcc8;
    padding: 36px 20px 32px 20px;
    text-align: center;
}
.sch-hero h1 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 auto 12px auto;
    max-width: 760px;
}
.sch-hero p {
    font-size: 1.05rem;
    color: #4a5568;
    max-width: 660px;
    margin: 0 auto;
    line-height: 1.6;
}
.sch-disclosure {
    background-color: #fffbeb;
    border: 1px solid #fcd34d;
    border-left: 5px solid #f59e0b;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 28px 0;
    font-size: 0.9rem;
    color: #78350f;
    line-height: 1.6;
}
.sch-disclosure strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #92400e;
}
.sch-section {
    padding: 40px 0 20px 0;
}
.sch-section-heading {
    font-size: 1.45rem;
    font-weight: 800;
    color: #1d1d1f;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sch-section-heading .sch-icon {
    font-size: 1.5rem;
    line-height: 1;
}
.sch-section-desc {
    font-size: 0.95rem;
    color: #636366;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 700px;
}
.sch-divider {
    border: none;
    border-top: 2px solid #f0f0f0;
    margin: 0 0 28px 0;
}
.sch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.sch-category-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 4px solid #e67e3b;
    border-radius: 12px;
    padding: 18px 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.sch-category-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}
.sch-category-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}
.sch-supply-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sch-supply-list li {
    padding: 4px 0;
    font-size: 0.88rem;
    border-bottom: 1px solid #f5f5f7;
}
.sch-supply-list li:last-child {
    border-bottom: none;
}
.sch-supply-list a {
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.sch-supply-list a::before {
    content: "→";
    font-size: 0.8rem;
    color: #e67e3b;
    flex-shrink: 0;
}
.sch-supply-list a:hover {
    color: #e67e3b;
    border-bottom: none;
}
.sch-cta-bar {
    background: linear-gradient(135deg, #4a6fa5 0%, #3a5a8a 100%);
    border-radius: 14px;
    padding: 32px 28px;
    text-align: center;
    margin: 40px 0 20px 0;
    color: #ffffff;
}
.sch-cta-bar h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.sch-cta-bar p {
    font-size: 1rem;
    opacity: 0.88;
    margin-bottom: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.sch-cta-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
.sch-cta-btn {
    display: inline-block;
    background-color: #e67e3b;
    color: #ffffff !important;
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none !important;
    border-bottom: none !important;
    transition: background-color 0.2s ease;
}
.sch-cta-btn:hover {
    background-color: #d46b2a;
    border-bottom: none !important;
}
.sch-cta-btn--secondary {
    background-color: rgba(255, 255, 255, 0.18);
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
}
.sch-cta-btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.28);
}
.sch-tip-box {
    background-color: #f0f7ff;
    border: 1px solid #bfdbfe;
    border-left: 5px solid #4a6fa5;
    border-radius: 8px;
    padding: 14px 18px;
    margin: 28px 0 0 0;
    font-size: 0.92rem;
    color: #1e3a5f;
    line-height: 1.6;
}
.sch-tip-box strong {
    color: #1a365d;
}
@media (max-width: 768px) {
    .sch-hero h1 {
        font-size: 1.6rem;
    }
    .sch-grid {
        grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    }
    .sch-cta-bar {
        padding: 24px 18px;
    }
}
.sch-lessons-ad {
    background: linear-gradient(135deg, #1a365d 0%, #2a4a7f 100%);
    border-radius: 16px;
    padding: 36px 28px 32px 28px;
    margin: 40px 0 24px 0;
    color: #ffffff;
}
.sch-lessons-ad-label {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #90cdf4;
    margin-bottom: 8px;
}
.sch-lessons-ad-heading {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
}
.sch-lessons-ad-desc {
    font-size: 1rem;
    color: #bee3f8;
    margin-bottom: 28px;
    max-width: 580px;
    line-height: 1.55;
}
.sch-lessons-ad-desc strong {
    color: #ffffff;
}
.sch-lessons-ad-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.sch-lesson-card {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px 18px;
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.sch-lesson-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    border-bottom: none;
    color: #ffffff;
}
.sch-lesson-card-icon {
    font-size: 1.8rem;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.sch-lesson-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    display: block;
}
.sch-lesson-card-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: #90cdf4;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
    display: block;
}
.sch-lesson-card-desc {
    font-size: 0.88rem;
    color: #bee3f8;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 14px;
    display: block;
}
.sch-lesson-card-cta {
    font-size: 0.85rem;
    font-weight: 800;
    color: #fbd38d;
    display: block;
}
@media (max-width: 700px) {
    .sch-lessons-ad-grid {
        grid-template-columns: 1fr;
    }
    .sch-lessons-ad {
        padding: 28px 20px 24px 20px;
    }
    .sch-lessons-ad-heading {
        font-size: 1.35rem;
    }
}
.sch-cat-nav {
    padding: 20px 0 4px 0;
}
.sch-cat-nav-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #636366;
    margin-bottom: 10px;
}
.sch-cat-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.sch-cat-nav-list li::after {
    display: none !important;
    content: none !important;
}
.sch-cat-pill {
    display: inline-block;
    padding: 8px 16px;
    background: #fff8f0;
    border: 1px solid #f5dcc8;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #c05621;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.15s ease, border-color 0.15s ease;
}
.sch-cat-pill:hover {
    background-color: #fde8d0;
    border-color: #e67e3b;
    color: #c05621;
    border-bottom: 1px solid #e67e3b;
}
@media (max-width: 480px) {
    .sch-cat-nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .sch-cat-pill {
        text-align: center;
    }
}
.sch-search-bar {
    background-color: #fff8f0;
    border: 1px solid #f5dcc8;
    border-radius: 12px;
    padding: 28px 24px;
    margin: 16px 0 24px 0;
}
.sch-search-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}
.sch-search-desc {
    font-size: 0.9rem;
    color: #636366;
    margin-bottom: 16px;
    line-height: 1.5;
}
.sch-search-form {
    display: flex;
    gap: 10px;
    max-width: 620px;
}
.sch-search-form input[type="text"] {
    flex-grow: 1;
    padding: 11px 14px;
    border: 1px solid #f5dcc8;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #1d1d1f;
    background-color: #ffffff;
    min-width: 0;
}
.sch-search-form input[type="text"]:focus {
    outline: 2px solid #e67e3b;
    outline-offset: 1px;
    border-color: #e67e3b;
}
.sch-search-form button {
    padding: 11px 22px;
    background-color: #c05621;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    transition: background-color 0.15s ease;
    flex-shrink: 0;
}
.sch-search-form button:hover {
    background-color: #9c3f18;
}
@media (max-width: 480px) {
    .sch-search-form {
        flex-direction: column;
    }
    .sch-search-form button {
        width: 100%;
    }
}
