.cooking-session-options {
    display: grid;
    gap: 20px;
}

.cooking-session-options .cooking-booking-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 24px;
    background: #966b54;
    color: #fff;
}

.cooking-session-options .cooking-booking-bar h3 {
    margin: 0;
    color: inherit;
    font-family: "Wix Madefor Text", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.cooking-session-options .cooking-booking-button {
    flex-shrink: 0;
    padding: 12px 24px;
    border: 1px solid #fff;
    border-radius: 30px;
    background: #fff;
    color: #966b54;
    font-family: "Wix Madefor Text", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    text-decoration: none;
    white-space: nowrap;
}

.cooking-session-options .cooking-booking-button:hover {
    background: transparent;
    color: #fff;
}

.cooking-session-options .cooking-booking-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.cooking-event-list {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #333;
    font-family: "Wix Madefor Text", sans-serif;
}

.cooking-event-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0;
    border-bottom: 1px solid #966b5438;
}

.cooking-event-row:first-child {
    padding-top: 10px;
}

.cooking-event-copy h3 {
    margin: 8px 0;
    font-family: "Frank Ruhl Libre", serif;
    font-size: 30px;
}

.cooking-event-date,
.cooking-event-venue {
    margin: 0;
    font-size: 15px;
}

.cooking-event-date {
    color: #966b54;
}

.cooking-event-book {
    flex-shrink: 0;
    border: 1px solid #966b54;
    border-radius: 30px;
    padding: 10px 24px;
    color: #966b54;
    font-size: 15px;
    text-decoration: none;
}

.cooking-event-book:hover,
.cooking-event-book:focus-visible {
    color: #fff;
    background: #966b54;
}

.cooking-events-empty a {
    color: #966b54;
    text-decoration: underline;
}

@media (max-width: 767px) {
    .cooking-event-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
        padding: 24px 0;
    }

    .cooking-event-copy h3 {
        font-size: 26px;
    }

    .cooking-session-options .cooking-booking-bar {
        gap: 14px;
        padding: 18px;
    }

    .cooking-session-options .cooking-booking-bar h3 {
        font-size: 17px;
    }

    .cooking-session-options .cooking-booking-button {
        padding: 10px 14px;
        font-size: 14px;
    }
}
