/**
 * Contact Page - Locations
 */

.contact-locations {
    padding: 75px 0;
    background: #f7f7f7;
}

.contact-locations__header {
    margin-bottom: 2rem;
}

.contact-locations__label {
    display: block;
    font-family: var(--font-aeonik);
    font-size: 14px;
    letter-spacing: 0.56px;
    text-transform: uppercase;
    color: #27272c;
    margin-bottom: 0.75rem;
}

.contact-locations__title {
    font-family: var(--font-aeonik);
    font-size: 60px;
    font-weight: 400;
    line-height: 66px;
    color: #27272c;
    margin: 0;
}

.contact-locations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.contact-locations__card {
    background: #fafafa;
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    transition: border-color 0.2s ease;
}

.contact-locations__card:hover {
    border-color: #d4d4d4;
}

.contact-locations__card-map {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1.75rem;
    height: 280px;
}

.contact-locations__card-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-locations__card-title {
    font-family: var(--font-aeonik);
    font-size: 1.4rem;
    font-weight: 500;
    color: #25282a;
    margin-bottom: 0.75rem;
}

.contact-locations__card-text {
    font-family: var(--font-inter);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(13, 9, 10, 0.7);
    margin-bottom: 0.5rem;
}

.contact-locations__link {
    color: #f25d21;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-locations__link:hover {
    color: #d64f1c;
}

@media (max-width: 768px) {
    .contact-locations {
        padding: 60px 0;
    }

    .contact-locations__title {
        font-size: 36px;
        line-height: 1.2;
    }
}
