.scheduleList {
    position: relative;
    margin-bottom: 98px;
}

.scheduleList::before {
    content: "";
    position: absolute;
    bottom: -58px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    vertical-align: middle;
    color: var(--colorWhite);
    line-height: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 1rem 1.2rem;
    border-top-color: currentColor;
    border-bottom: 0;
}

.scheduleList__item {
    border-top: 1px solid var(--colorGray);
}

.scheduleList__item:nth-last-child(1) {
    border-bottom: 1px solid var(--colorGray);
}

.scheduleList__inner {
    padding: 25.5px 20px 22px;
    display: grid;
    grid-template-columns: 28.8% auto 280px;
    align-items: center;
}

.scheduleList__meta {
    text-align: center;
}

.scheduleList__round {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-family: var(--familyInter);
}

.scheduleList__city {
    font-size: 24px;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

.scheduleList__venue {
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1.8;
    position: relative;
    padding-left: 24px;
}

.scheduleList__venue::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16.32px;
    height: 16.32px;
    background-image: url(../../images/schedule/icon-map.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.scheduleList__date {
    font-size: 24px;
    font-family: var(--familyInter);
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    padding-left: 28px;
    margin-top: 8px;
}

.scheduleList__date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16.39px;
    height: 16.39px;
    background-image: url(../../images/schedule/icon-calendar.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

}

.scheduleList__day {
    font-size: 12px;
    line-height: 2;
}

.scheduleList__link {
    margin-top: 0;
}

.scheduleRed {
    background: #B00B22;
    padding: 24px 20px;
    display: grid;
    grid-template-columns: 28.8% auto 280px;
    align-items: center;
}

.scheduleRed__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.4;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .pageSection.schedule {
        padding-top: 20px;
    }

    .scheduleList__inner {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        width: fit-content;
        margin-inline: auto;
    }

    .scheduleList__meta {
        width: fit-content;
    }

    .scheduleList__info {
        margin-top: 17px;
    }

    .scheduleList__link {
        width: 295px;
        margin-top: 10px;
    }

    .scheduleRed {
        grid-template-columns: 1fr;
    }

    .scheduleRed__title {
        justify-content: flex-start;
    }

    .scheduleRed {
        width: fit-content;
        margin-inline: auto;
    }

    .scheduleRed .scheduleList__link {
        margin-top: 12px;
    }
}

@media screen and (max-width: 375px) {
    .scheduleList__inner {
        width: 335px;
    }
}