:root {
    --loc-gap: clamp(16px, 2.5vw, 28px);
}

#service-section-11 {
    padding: var(--section-pad-y) var(--section-pad-x);
    color: var(--s1-text);
}

#service-section-11 .container {
    max-width: var(--s1-max);
    margin: 0 auto;
}

.service-section-11__grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: var(--s1-gap);
    align-items: start;
}

.service-section-11__intro {
    color: var(--s1-text-dim);
    margin: 14px 0 22px;
}

.service-section-11__cta {
    display: inline-block;
    background: var(--cta-btn-bg);
    color: var(--cta-btn-color);
    padding: 12px 22px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
}

.service-section-11__cta:hover {
    background: var(--cta-btn-bg-h);
}

.service-section-11__map {
    height: 405px;
    margin-top: 28px;
    border-radius: 4px;
    overflow: hidden;
}

.service-section-11__map iframe {
    border-radius: 10px;
    width: 100%;
    height: min(82.5vh, 405px);
    display: block;
}

/* Locations list */
.locations-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.locations-list__item {
}

.locations-list__link {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 16px 18px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, transform .15s;
}

.locations-list__link:hover {
    border-color: #d1d5db;
    transform: translateY(-2px);
}

.locations-list__pin {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
}

.locations-list__pin::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, #e11d28 35%, transparent 36%),
    linear-gradient(#e11d28, #e11d28);
    -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M12 2C7.582 2 4 5.582 4 10c0 5.25 8 12 8 12s8-6.75 8-12c0-4.418-3.582-8-8-8zm0 10a2 2 0 110-4 2 2 0 010 4z\"/></svg>') center/contain no-repeat;
    mask: url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path d=\"M12 2C7.582 2 4 5.582 4 10c0 5.25 8 12 8 12s8-6.75 8-12c0-4.418-3.582-8-8-8zm0 10a2 2 0 110-4 2 2 0 010 4z\"/></svg>') center/contain no-repeat;
    background-color: #e11d28;
}

.locations-list__label {
    font-weight: 600;
}

.locations-list__arrow {
    opacity: .5;
}

.locations-list__link {
    padding: 27px 18px;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-section-11__grid {
        grid-template-columns: 1fr;
    }

    .service-section-11__col.service-section-11__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .service-section-11__map {
        width: 100%;
    }

    .service-section-11__cta {
        text-align: center;
    }

    #field_1_10 .g-recaptcha {
        transform: scale(0.86);
        transform-origin: left top;
    }
    /* Reserve vertical space roughly equal to scaled height */
    #field_1_10 { height: 86px; }
}
