/* [gh_class_schedule] — public class-schedule cards (Golden Heart palette). */
.gh-sched { max-width: 1040px; margin: 0 auto; }

.gh-sched-group { margin-bottom: 44px; }
.gh-sched-group-title {
    font-size: 24px;
    color: #1B2A4A;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #C5A55A;
}

.gh-sched-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 22px;
}

.gh-sched-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #ece7d8;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(27, 42, 74, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.gh-sched-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(27, 42, 74, 0.13);
}
.gh-sched-card.is-full { opacity: 0.72; }

.gh-sched-dates {
    background: linear-gradient(135deg, #1B2A4A 0%, #2a3c63 100%);
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    line-height: 1.3;
    padding: 16px 18px;
}

.gh-sched-body { padding: 16px 18px; flex: 1; }

.gh-sched-program {
    font-weight: 700;
    color: #1B2A4A;
    font-size: 15px;
    margin-bottom: 10px;
}

.gh-sched-facts { list-style: none; margin: 0; padding: 0; }
.gh-sched-facts li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid #f3f0e7;
    font-size: 14px;
}
.gh-sched-facts li:last-child { border-bottom: 0; }
.gh-sched-facts li span {
    color: #9b8b63;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.04em;
}
.gh-sched-facts li em { font-style: normal; color: #1f2937; font-weight: 600; }

.gh-sched-cta {
    display: block;
    text-align: center;
    margin: 4px 18px 18px;
    padding: 11px 16px;
    background: #C41E3A;
    color: #fff !important;
    font-weight: 700;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.15s ease;
}
.gh-sched-cta:hover { background: #a51930; }
.gh-sched-cta.is-disabled { background: #9ca3af; cursor: not-allowed; }

.gh-sched-empty {
    text-align: center;
    color: #6b7280;
    padding: 44px 20px;
    font-style: italic;
}

/* Per-area remaining-slots breakdown */
.gh-sched-areahead { padding-top: 10px !important; }
.gh-sched-area .gh-sched-area-name {
    text-transform: none;
    letter-spacing: 0;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
}
.gh-sched-area em { color: #1a7f37; font-style: normal; }
.gh-sched-area.is-full { opacity: 0.65; }
.gh-sched-area.is-full em { color: #C41E3A; }
