.td-tour-dates { width: 100%; font-family: inherit; }

.td-row {
    display: grid;
    grid-template-columns: 2fr 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.2rem 0;
    border-bottom: 1px solid #333;
}

.td-row:first-child { border-top: 1px solid #333; }

.td-col1 {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.td-date { font-weight: 700; font-size: 0.95rem; }
.td-venue { font-size: 0.9rem; }
.td-support { font-size: 0.85rem; font-style: italic; }

.td-col2 {
    font-size: 0.9rem;
    color: #555;
}

.td-col3 { text-align: right; }

.td-ticket-btn {
    color: #000;
    display: inline-block;
    padding: 0.4rem 1rem;
    border: 2px solid #000;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.td-ticket-btn:hover {
    background-color: #000;
    color: #fff;
}
.td-ticket-tba { font-size: 0.8rem; color: #aaa; }
.td-no-dates { color: #888; }

@media (max-width: 600px) {
    .td-row { grid-template-columns: 1fr; gap: 0.4rem; }
    .td-col3 { text-align: left; }
}
