/* ==========================================================================
   GS Venue Blocks — facilities.css
   Facility icon grid rendered by acf/gs-facilities block. Card hover state
   flips to dark fill for visual feedback.
   ========================================================================== */

.gs-venue__facilities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
}

.gs-venue__facility {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 24px 12px;
    background: #fafafa;
    border: 1.5px solid #111;
    border-radius: 16px;
    text-align: center;
    color: #111;
    transition: all 0.2s ease;
}
.gs-venue__facility:hover { background: #111; color: #fff; }
.gs-venue__facility:hover svg { color: #fff; }

.gs-venue__facility svg {
    width: 28px;
    height: 28px;
    color: #111;
    display: block;
    transition: color 0.2s ease;
}

.gs-venue__facility-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

/* Description paragraph rendered below the icon grid */
.gs-venue__facilities-desc { margin-top: 28px; }

@media (max-width: 640px) {
    .gs-venue__facilities { grid-template-columns: repeat(3, 1fr); gap: 8px; }
    .gs-venue__facility { padding: 18px 8px; }
    .gs-venue__facility-name { font-size: 11px; }
}
