/* =========================================================
   AOO CTA Grid — "48/72 uur in…" component
   ========================================================= */

/* ---------------------------------------------------------
   Container
   --------------------------------------------------------- */

.aoo-cta-48h {
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    padding: 30px 24px;
    max-width: 1280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
}

.aoo-cta-48h__head {
    text-align: center;
    margin-bottom: 12px;
}

.aoo-cta-48h h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin: 0;
}

.aoo-cta-48h__sub {
    color: #6b7280;
    margin: 6px 0 0;
}

/* ---------------------------------------------------------
   Grid: 4 → 3 → 2 → 1 kolommen
   --------------------------------------------------------- */

.aoo-cta-48h__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(12px, 2vw, 22px);
}

@media (max-width: 1100px) {
    .aoo-cta-48h__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .aoo-cta-48h__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .aoo-cta-48h__grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   Cards
   --------------------------------------------------------- */

.aoo-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
    isolation: isolate;
    aspect-ratio: 4 / 3;
    background: #e5e7eb;
}

.aoo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.aoo-card:hover img {
    transform: scale(1.04);
}

/* Donkere gradient onderin voor leesbaarheid */
.aoo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .55) 0%,
        rgba(0, 0, 0, .15) 55%,
        rgba(0, 0, 0, 0)   75%
    );
}

/* Pill rechtsboven */
.aoo-card__pill {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    background: #6b7c3d;
    color: #fff;
    font-size: .78rem;
    letter-spacing: .03em;
    padding: .36rem .6rem;
    border-radius: 999px;
    font-weight: 600;
}

/* Overlay tekst onderin */
.aoo-card__text {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 2;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .55);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.aoo-card__line1 {
    font-size: clamp(.9rem, 1.6vw, 1rem);
    font-weight: 700;
    opacity: .95;
}

.aoo-card__line2 {
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
    font-weight: 800;
    line-height: 1.1;
}

/* ---------------------------------------------------------
   Leaflet embed wrapper (optioneel)
   --------------------------------------------------------- */

.aoo-leaflet {
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    overflow: hidden;
}
