.yca-event-schedule {
    --yca-date-col: 34%;
    --yca-action-col: 22%;
    --yca-row-gap: 0px;
    display: block !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    margin-left: auto;
    margin-right: auto;
}

.yca-event-schedule,
.yca-event-schedule * {
    box-sizing: border-box;
}

.yca-event-schedule.has-top-border .yca-event-schedule__row:first-child {
    border-top: 1px solid #eeeeee;
}

.yca-event-schedule__row + .yca-event-schedule__row {
    margin-top: var(--yca-row-gap);
}

.yca-event-schedule__row {
    display: grid !important;
    grid-template-columns: minmax(0, var(--yca-date-col)) minmax(0, 1fr) minmax(0, var(--yca-action-col));
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    min-width: 0;
    height: auto !important;
    min-height: 0;
    align-content: center;
}

.yca-event-schedule__date,
.yca-event-schedule__title,
.yca-event-schedule__action {
    min-width: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.yca-event-schedule__date {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.yca-event-schedule__title {
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 400;
    line-height: 1.35;
}

.yca-event-schedule__action {
    display: flex;
    align-items: center;
}

.yca-event-schedule__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-style: solid;
    border-color: transparent;
    background-color: transparent;
    text-decoration: none !important;
    line-height: 1.1;
    white-space: nowrap;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
}

.yca-event-schedule__button:hover,
.yca-event-schedule__button:focus {
    text-decoration: none !important;
}

.yca-event-schedule__button--static {
    cursor: default;
}

@media (max-width: 767px) {
    .yca-event-schedule__row {
        grid-template-columns: 1fr !important;
        row-gap: 10px;
        align-items: start;
    }

    .yca-event-schedule__action {
        justify-content: flex-start !important;
    }

    .yca-event-schedule__button {
        white-space: normal;
        width: auto;
    }
}
