/* ==========================================================================
   GS Venue Blocks — pills.css
   Generic pill styling (.gs-venue__pill). Shared by hero quick-facts,
   Contact & Socials row, and any future pill-based UI.
   ========================================================================== */

.gs-venue__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #111;
    background: #fff;
    border: 1.5px solid #111;
    border-radius: 100px;
    padding: 10px 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: default;
}
.gs-venue__pill:hover { background: #f5f5f5; }

a.gs-venue__pill { cursor: pointer; }
a.gs-venue__pill:hover {
    background: #111;
    color: #fff;
    border-color: #111;
    text-decoration: none;
}
a.gs-venue__pill:hover svg { color: #fff; }

.gs-venue__pill svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Dark variant (primary CTA — e.g. Get directions) */
.gs-venue__pill--dark {
    background: #111;
    color: #fff;
    border-color: #111;
}
.gs-venue__pill--dark:hover { background: #333; border-color: #333; }
a.gs-venue__pill--dark:hover { background: #333; color: #fff; border-color: #333; }
a.gs-venue__pill--dark:hover svg { color: #fff; }

/* Inline icon character (for £, ✓ etc. in place of an SVG) */
.gs-venue__pill-icon {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 640px) {
    .gs-venue__pill { font-size: 12px; padding: 8px 14px; }
}
