.cme-schedules {
    margin: 0 0 42px;
    padding: 32px;
    border: 1px solid #dcebd5;
    border-radius: 18px;
    background: linear-gradient(180deg, #f8fcf6 0%, #ffffff 100%);
    box-shadow: 0 12px 32px rgba(31, 92, 15, 0.08);
}

.cme-schedules__heading {
    max-width: 760px;
    margin: 0 auto 24px;
    text-align: center;
}

.cme-schedules__eyebrow {
    display: block;
    margin-bottom: 7px;
    color: #2f7f19;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.cme-schedules__heading h2 {
    margin: 0 0 8px;
    color: #1d4912;
    font-size: 32px;
    font-weight: 700;
}

.cme-schedules__heading p {
    margin: 0;
    color: #52614e;
    font-size: 16px;
}

.cme-schedules__filters {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 0 0 24px;
}

.cme-filter-btn {
    padding: 9px 18px;
    border: 1px solid #83b873;
    border-radius: 999px;
    background: #fff;
    color: #2f6f1d;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.cme-filter-btn:hover,
.cme-filter-btn:focus,
.cme-filter-btn.is-active {
    background: #2ea001;
    color: #fff;
    outline: none;
    transform: translateY(-1px);
}

.cme-schedules__grid {
    margin-bottom: -20px;
}

.cme-schedule-column {
    display: flex;
    margin-bottom: 20px;
}

.cme-schedule-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    border: 1px solid #d7e4d2;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(27, 68, 17, 0.08);
}

.cme-schedule-card__header {
    padding: 20px 22px 16px;
    border-top: 5px solid #2ea001;
}

.cme-schedule-card--virtual .cme-schedule-card__header {
    border-top-color: #2679b8;
}

.cme-schedule-card__badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: #eaf6e6;
    color: #276b16;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.cme-schedule-card--virtual .cme-schedule-card__badge {
    background: #e8f2fa;
    color: #1f6599;
}

.cme-schedule-card__header h3 {
    margin: 0;
    color: #253321;
    font-size: 19px;
    line-height: 1.35;
}

.cme-schedule-card__body {
    flex: 1;
    padding: 0 22px 12px;
}

.cme-schedule-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.cme-schedule-list li {
    display: flex;
    gap: 10px;
    padding: 13px 0;
    border-top: 1px solid #edf1eb;
}

.cme-schedule-list__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border-radius: 50%;
    background: #2ea001;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.cme-schedule-list strong,
.cme-schedule-list span,
.cme-schedule-list small {
    display: block;
}

.cme-schedule-list strong {
    color: #263823;
    font-size: 15px;
}

.cme-schedule-list__start {
    margin-top: 4px;
    color: #2f7f19;
    font-weight: 700;
}

.cme-schedule-list__second-day {
    margin-top: 4px;
    color: #4d5c49;
}

.cme-schedule-list small {
    margin-top: 4px;
    color: #6e786b;
}

.cme-schedule-card__empty,
.cme-schedules__unavailable {
    padding: 20px;
    border-radius: 10px;
    background: #f4f7f2;
    color: #4f5c4b;
    text-align: center;
}

.cme-schedule-card__empty strong,
.cme-schedule-card__empty span {
    display: block;
}

.cme-schedule-card__empty strong {
    margin-bottom: 5px;
    color: #2d4727;
}

.cme-schedule-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 17px 22px;
    border-top: 1px solid #e8eee5;
    background: #fbfdf9;
}

.cme-schedule-card__price span,
.cme-schedule-card__price strong {
    display: block;
}

.cme-schedule-card__price span {
    color: #687364;
    font-size: 12px;
    text-transform: uppercase;
}

.cme-schedule-card__price strong {
    color: #236d11;
    font-size: 22px;
}

.cme-schedule-card__cta {
    display: inline-block;
    padding: 11px 16px;
    border-radius: 8px;
    background: #2ea001;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none !important;
}

.cme-schedule-card__cta:hover,
.cme-schedule-card__cta:focus {
    background: #247f01;
}

.cme-schedules__unavailable p {
    margin: 6px 0 0;
}

@media (max-width: 767px) {
    .cme-schedules {
        margin-bottom: 30px;
        padding: 22px 15px;
        border-radius: 13px;
    }

    .cme-schedules__heading h2 {
        font-size: 25px;
    }

    .cme-schedules__filters {
        flex-wrap: wrap;
    }

    .cme-filter-btn {
        flex: 1 1 auto;
        min-width: 92px;
    }

    .cme-schedule-card__header,
    .cme-schedule-card__body,
    .cme-schedule-card__footer {
        padding-left: 16px;
        padding-right: 16px;
    }

    .cme-schedule-card__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .cme-schedule-card__cta {
        width: 100%;
    }
}

