/* Venue Contact Details — scoped under .scm-mod-VenueContact
 *
 * Deliberately styled from the theme's CSS variables rather than fixed colors: this sits on the
 * Contact page alongside theme-styled content, and a card that ignores the venue's accent color
 * looks like it was pasted in from somewhere else. Falls back to neutral values so the module
 * still reads correctly on a theme that does not define them.
 */

.scm-mod-VenueContact {
    display: block;
}

.scm-mod-VenueContact .vc-contact {
    max-width: 600px;
    margin: 0 auto;
}

.scm-mod-VenueContact .vc-contact__heading {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--heading-color, inherit);
}

.scm-mod-VenueContact .vc-contact__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.scm-mod-VenueContact .vc-contact__card {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--surface-color, #f8fafc);
    border-radius: var(--border-radius, 1rem);
}

.scm-mod-VenueContact .vc-contact__card h3 {
    font-size: 1.05rem;
    margin: 0.5rem 0 0.35rem;
    color: var(--heading-color, inherit);
}

.scm-mod-VenueContact .vc-contact__card p {
    margin: 0;
    line-height: 1.5;
}

.scm-mod-VenueContact .vc-contact__icon {
    font-size: 1.6rem;
    color: var(--accent-color, #e10600);
}

.scm-mod-VenueContact .vc-contact__link {
    color: var(--accent-color, #e10600);
    text-decoration: none;
    word-break: break-word;
}

.scm-mod-VenueContact .vc-contact__link:hover,
.scm-mod-VenueContact .vc-contact__link:focus {
    text-decoration: underline;
}

.scm-mod-VenueContact .vc-contact__hours {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--surface-color, #f8fafc);
    border-radius: var(--border-radius, 1rem);
}

.scm-mod-VenueContact .vc-contact__hours h3 {
    text-align: center;
    margin: 0 0 1rem;
    font-size: 1.05rem;
    color: var(--heading-color, inherit);
}

.scm-mod-VenueContact .vc-contact__hours table {
    width: 100%;
    border-collapse: collapse;
}

.scm-mod-VenueContact .vc-contact__hours tr:not(:last-child) {
    border-bottom: 1px solid var(--border-color, #e2e8f0);
}

.scm-mod-VenueContact .vc-contact__day {
    padding: 0.7rem 0;
    font-weight: 600;
}

.scm-mod-VenueContact .vc-contact__time {
    padding: 0.7rem 0;
    text-align: right;
}

.scm-mod-VenueContact .vc-contact__closed {
    opacity: 0.65;
}

/* Reserve the space the cards will occupy so the page does not jump when they arrive. */
.scm-mod-VenueContact .vc-contact-skeleton {
    min-height: 180px;
}
