/* =======================================================
   Session Options Page
======================================================= */

.schedule-page{
    background:#f8fafc;
}

.schedule-hero{
    min-height:330px;
    background:
        linear-gradient(rgba(2,6,23,.78),rgba(2,6,23,.86)),
        url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?auto=format&fit=crop&w=1600&q=80");
    background-size:cover;
    background-position:center;
    color:white;
    display:grid;
    place-items:center;
    text-align:center;
    padding:60px 22px 110px;
}

.hero-kicker{
    color:#fbbf24;
    font-weight:900;
    letter-spacing:.16em;
    text-transform:uppercase;
    font-size:13px;
}

.schedule-hero h1{
    font-size:58px;
    line-height:1;
    margin:18px 0 16px;
    font-family:var(--font-heading);
    color:#bfdbfe;

}

.schedule-hero p{
    color:#e2e8f0;
    max-width:720px;
    font-size:18px;
    line-height:1.7;
    margin:auto;
}



.empty-state,
.trust-row{
    background:white;
    border:1px solid #e5e7eb;
    border-radius:18px;
    box-shadow:0 18px 50px rgba(15,23,42,.08);
}

.empty-state{
    padding:60px 24px;
    text-align:center;
}

.empty-icon{
    font-size:48px;
}

.trust-row{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    padding:24px;
    margin-top:18px;
}

.trust-row strong{
    display:block;
    color:#2563eb;
    margin-bottom:6px;
}

.trust-row span{
    color:#64748b;
    font-size:14px;
}


/* ======================================
   Section Heading
====================================== */

.section-heading{
    margin-bottom:50px;
}

.section-heading h2{
    margin:10px 0 16px;
    font-size:30px;
    line-height:1.15;
    font-family:var(--font-heading);
    color:#0f172a;
}

.section-heading p{
    max-width:720px;
    margin:0 0 42px;
    color:#64748b;
    font-size:15px;
    line-height:1.8;
}

/* -----------------------------
   Mobile
------------------------------ */

@media (max-width:768px){

    .section-heading{
        margin-bottom:34px;
        text-align:left;
    }

    .section-heading h2{
        font-size:30px;
        line-height:1.25;
        margin-bottom:12px;
    }

    .section-heading p{
        max-width:100%;
        font-size:15px;
        line-height:1.7;
        margin-bottom:28px;
    }

}