/* ================================
   SHOWS GRID
   ================================ */

.shows-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.show-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.show-card-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

.show-card h2 {
    margin: 0;
    font-size: 1.25rem;
}

.show-card h2 a {
    text-decoration: none;
    color: inherit;
}

.show-card h2 a:hover {
    text-decoration: underline;
}

.show-card strong {
    display: block;
    margin-bottom: 0.25rem;
}

.show-card ul {
    margin: 0;
    padding-left: 1rem;
    list-style: disc;
}

.show-card li {
    margin-bottom: 0.25rem;
}

.show-card-tickets-btn {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    text-align: center;
}

.show-card-tickets-btn:hover {
    background: #555;
}

.show-card-link {
    display: inline-block;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-size: 0.95rem;
    border: 1px solid #333;
    padding: 0.6rem 1.25rem;
    border-radius: 4px;
    text-align: center;
}

.show-card-link:hover {
    background: #333;
    color: #fff;
}

/* ================================
   MOBILE - 1 column
   ================================ */

@media ( max-width: 768px ) {
    .shows-grid {
        grid-template-columns: 1fr;
    }
}
