/* ========================================
   SCHEDULE PAGE HEADER
======================================== */

.schedule-header {
    position: absolute;
}


/* ========================================
   SCHEDULE HERO
======================================== */

.schedule-hero {
    min-height: 620px;

    display: flex;
    align-items: flex-end;

    background: #000;

    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-hero-content {
    width: min(1400px, 92%);
    margin: 0 auto;

    padding: 190px 0 80px;
}

.page-eyebrow {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 4px;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.6);
}

.schedule-hero h1 {
    font-size: clamp(70px, 11vw, 160px);

    line-height: 0.77;

    letter-spacing: -5px;
    text-transform: uppercase;
}

.schedule-hero h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 2px #fff;
}

.schedule-hero-content > p:last-child {
    margin-top: 35px;

    font-size: 18px;

    color: rgba(255, 255, 255, 0.7);
}


/* ========================================
   SCHEDULE SECTION
======================================== */

.schedule-section {
    padding: 120px 0;

    background: #fff;
    color: #000;
}

.schedule-container {
    width: min(1400px, 92%);
    margin: 0 auto;
}


/* ========================================
   HEADING
======================================== */

.schedule-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 50px;

    margin-bottom: 70px;
}

.section-label {
    margin-bottom: 12px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.schedule-heading h2 {
    font-size: clamp(45px, 6vw, 90px);

    line-height: 0.9;

    letter-spacing: -3px;
    text-transform: uppercase;
}

.schedule-description {
    max-width: 460px;

    font-size: 15px;
    line-height: 1.7;

    color: #555;
}


/* ========================================
   GRID
======================================== */

.schedule-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    border-top: 2px solid #000;
    border-left: 2px solid #000;
}


/* ========================================
   DAY
======================================== */

.schedule-day {
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;

    min-height: 320px;
}

.day-header {
    min-height: 90px;

    padding: 20px 25px;

    display: flex;
    align-items: center;

    gap: 20px;

    background: #000;
    color: #fff;
}

.day-header span {
    font-size: 11px;

    color: rgba(255, 255, 255, 0.45);

    letter-spacing: 2px;
}

.day-header h3 {
    font-size: 27px;
    font-weight: 900;

    letter-spacing: -1px;
}


/* ========================================
   CLASS ITEMS
======================================== */

.class-item {
    min-height: 105px;

    padding: 22px 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-bottom: 1px solid #ccc;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.class-item:last-child {
    border-bottom: 0;
}

.class-item:hover {
    background: #000;
    color: #fff;
}

.class-type {
    display: block;

    margin-bottom: 6px;

    font-size: 9px;
    font-weight: 900;

    letter-spacing: 2px;
    text-transform: uppercase;

    opacity: 0.5;
}

.class-item h4 {
    font-size: 21px;
    text-transform: uppercase;
}

.class-item time {
    font-size: 15px;
    font-weight: 900;

    white-space: nowrap;
}


/* ========================================
   CTA
======================================== */

.schedule-cta {
    min-height: 600px;

    padding: 100px 4%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    background: #000;
}

.schedule-cta > p {
    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 900;

    letter-spacing: 4px;
}

.schedule-cta h2 {
    margin-bottom: 40px;

    font-size: clamp(55px, 8vw, 120px);

    line-height: 0.83;

    letter-spacing: -4px;
}

.schedule-cta h2 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 2px #fff;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .schedule-hero {
        min-height: 520px;
    }

    .schedule-hero h1 {
        letter-spacing: -3px;
    }

    .schedule-heading {
        flex-direction: column;
        align-items: flex-start;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .schedule-section {
        padding: 80px 0;
    }

    .schedule-hero-content {
        padding-bottom: 60px;
    }

    .schedule-hero h1 {
        font-size: 62px;
        letter-spacing: -2px;
    }

    .schedule-heading {
        margin-bottom: 45px;
    }

    .schedule-heading h2 {
        font-size: 48px;
    }

    .day-header {
        min-height: 75px;
    }

    .class-item {
        padding: 20px;
    }

    .class-item h4 {
        font-size: 17px;
    }

    .schedule-cta {
        min-height: 500px;
    }

    .schedule-cta h2 {
        font-size: 53px;
        letter-spacing: -2px;
    }

    .no-class {
    opacity: 0.4;
    cursor: default;
    }

    .no-class:hover {
    background: #fff;
    color: #000;
    }
}
