/* ═══════════════════════════════════════════════════
   ACS Hyper-Local Block
   ═══════════════════════════════════════════════════ */

.acs-hl__container {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

/* ── Intro ────────────────────────────────────────── */
.acs-hl__intro {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ── Body: two columns ────────────────────────────── */
.acs-hl__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

/* ══════════════════════════════════════════════════
   Map Column
══════════════════════════════════════════════════ */
.acs-hl__map-col {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 32px;
}

.acs-hl__map-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8e4de;
    display: block;
}

.acs-hl__map-img picture, .acs-hl__map-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.3);
}

.acs-hl__map-footer {
    background: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid #ede9e3;
}

.acs-hl__map-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.acs-hl__map-pin {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.acs-hl__map-pin svg {
    width: 18px;
    height: 18px;
    display: block;
}

.acs-hl__map-address-text {
    font-size: 13px;
    line-height: 1.55;
    color: #5a5555;
}

.acs-hl__map-address-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #2c2828;
    margin-bottom: 2px;
}

/* ══════════════════════════════════════════════════
   Content Column
══════════════════════════════════════════════════ */
.acs-hl__content-col {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.acs-hl__content-intro-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acs-hl__content-headline {
    font-family: palatino-linotype, serif;
    font-size: 22px;
    font-weight: 400;
    color: #2c2828;
    line-height: 1.35;
    margin: 0;
}

/* ── Categories ───────────────────────────────────── */
.acs-hl__categories {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.acs-hl__category-name {
    color: #404075;
    margin-bottom: 1rem;
    font-weight: bold;
    display: flex;
     align-items: center;
     gap: 10px;
}

/* Hairline rule extending from label to right edge */
.acs-hl__category-name::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #ede9e3;
}

.acs-hl__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.acs-hl__item {
    font-size: 1rem;
    color: #2c2828;
    line-height: 1.5;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.acs-hl__item::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #404075;
    flex-shrink: 0;
    margin-top: 1px;
    align-self: center;
}

/* ── Links ────────────────────────────────────────── */
.acs-hl__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
}

/* ══════════════════════════════════════════════════
   Responsive
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .acs-hl__headline {
        font-size: 28px;
    }

    .acs-hl__body {
        gap: 36px;
    }
}

@media (max-width: 860px) {
    .acs-hl {
        padding: 56px 0;
    }

    .acs-hl__container {
        padding: 0 24px;
        gap: 36px;
    }

    .acs-hl__headline {
        font-size: 24px;
    }

    /* Stack map above content on mobile */
    .acs-hl__body {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Remove sticky on mobile */
    .acs-hl__map-col {
        position: static;
    }

    .acs-hl__map-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}
