/**
 * contact_info.css â€” phone / address / hours panel.
 */
.gh-contact-info {
    background-color: var(--gh-color-bg-alt);
    padding-top: var(--gh-space-16);
    padding-bottom: var(--gh-space-16);
}
@media (min-width: 64rem) {
    .gh-contact-info { padding-top: var(--gh-space-24); padding-bottom: var(--gh-space-24); }
}

.gh-contact-info__eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: var(--gh-font-size-sm);
    font-weight: var(--gh-font-weight-semibold);
    color: var(--gh-color-accent);
    margin-bottom: var(--gh-space-2);
}
.gh-contact-info__heading {
    text-align: center;
    color: var(--gh-color-primary-dark);
    margin-bottom: var(--gh-space-12);
}

/* â”€â”€ Card grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gh-contact-info__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gh-space-8);
    max-width: 920px;
    margin: 0 auto;
}
@media (min-width: 40rem) {
    .gh-contact-info__cards { grid-template-columns: repeat(3, 1fr); }
}

.gh-contact-card {
    background: var(--gh-color-bg);
    border-radius: var(--gh-radius-lg);
    padding: var(--gh-space-10) var(--gh-space-6) var(--gh-space-8);
    box-shadow: var(--gh-shadow-sm);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition:
        transform var(--gh-transition),
        box-shadow var(--gh-transition);
}
.gh-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--gh-shadow-md);
}

/* â”€â”€ Icon circle â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gh-contact-card__icon-wrap {
    width: 72px;
    height: 72px;
    margin-bottom: var(--gh-space-5);
    background: var(--gh-color-primary-pale);
    border-radius: var(--gh-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gh-color-primary);
    transition:
        background-color var(--gh-transition),
        color var(--gh-transition);
}
.gh-contact-card:hover .gh-contact-card__icon-wrap {
    background: var(--gh-color-primary);
    color: var(--gh-color-white);
}
.gh-contact-card__svg {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* â”€â”€ Text â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gh-contact-card__label {
    font-size: var(--gh-font-size-sm);
    font-weight: var(--gh-font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gh-color-text-muted);
    margin-bottom: var(--gh-space-2);
}
.gh-contact-card__value {
    font-size: var(--gh-font-size-lg);
    font-weight: var(--gh-font-weight-semibold);
    color: var(--gh-color-primary-dark);
    margin-bottom: 0;
    line-height: var(--gh-line-height-snug);
}
.gh-contact-card__value--static {
    font-weight: var(--gh-font-weight-medium);
    color: var(--gh-color-text);
    font-size: var(--gh-font-size-base);
}
.gh-contact-card__link {
    color: var(--gh-color-primary-dark);
    text-decoration: none;
}
.gh-contact-card__link:hover,
.gh-contact-card__link:focus {
    color: var(--gh-color-primary);
    text-decoration: underline;
}

