.tour-dates {
    max-width: 800px;
    font-family: inherit;
}

.tour-dates__header {
    margin-bottom: 2rem;
}

.tour-dates__title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: #111;
}

.tour-dates__subtitle {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tour-dates__list {
    display: flex;
    flex-direction: column;
}

.tour-dates__item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.tour-dates__item:first-child {
    border-top: 1px solid #e5e5e5;
}

.tour-dates__date {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    flex-shrink: 0;
    min-width: 100px;
}

.tour-dates__day {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1;
    color: #111;
}

.tour-dates__month {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    text-transform: capitalize;
}

.tour-dates__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.tour-dates__venue {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
}

.tour-dates__location {
    font-size: 0.9rem;
    color: #666;
}

.tour-dates__empty {
    color: #888;
    font-style: italic;
    padding: 2rem 0;
}

.tour-dates-error {
    color: #b00;
    padding: 1rem;
    background: #fff0f0;
    border: 1px solid #fcc;
    border-radius: 4px;
}

@media (max-width: 480px) {
    .tour-dates__date {
        min-width: 75px;
    }

    .tour-dates__day {
        font-size: 1.75rem;
    }

    .tour-dates__item {
        gap: 1rem;
    }
}
