.section__levering-op-locatie {
    margin-top: 64px;
    padding: 64px 0;
    background: #f7f7f7;
    position: relative;
}

.truck_wrapper {
    position: absolute;
    pointer-events: none;
    z-index: -1;
    max-width: 70%;
    width: 100%;
    margin: 0 auto;
    top: -80px;
    display: flex;
    justify-content: flex-end;
}

.truck_wrapper img { 
    max-width: 200px;
    width: 100%;
}

.inner__levering-op-locatie {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

.title__levering-op-locatie {
    font-family: 'Open Sans', sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    color: #111;
    margin: 0 0 22px;
}

.title__levering-op-locatie strong,
.green-word__levering-op-locatie {
    font-weight: 700;
    color: #3A528B;
}

.intro__levering-op-locatie {
    max-width: 580px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.45;
    color: #111;
    margin: 0 0 44px;
}

.cards__levering-op-locatie {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px;
}

.card__levering-op-locatie {
    margin: 0;
}

.image__levering-op-locatie {
    display: block;
    width: 100%;
    aspect-ratio: 395 / 225;
    object-fit: cover;
    border-radius: 8px;
    height: 380px;
}

.card-title__levering-op-locatie {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    margin: 20px 0 0;
}

@media (max-width: 1024px) {
    .cards__levering-op-locatie {
        gap: 32px;
    }

    .inner__levering-op-locatie::before {
        left: 120px;
        right: 80px;
        top: 180px;
    }

    .image__levering-op-locatie {
        aspect-ratio: unset;
    }
}

@media (max-width: 760px) {
    .section__levering-op-locatie {
        padding: 48px 0;
        margin-top: 48px;
    }

    .inner__levering-op-locatie {
        padding: 0 30px;
    }

    .title__levering-op-locatie {
        font-size: 26px;
    }

    .intro__levering-op-locatie {
        margin-bottom: 32px;
    }

    .cards__levering-op-locatie {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .inner__levering-op-locatie::before {
        display: none;
    }

    .card-title__levering-op-locatie {
        margin-top: 14px;
    }

    .image__levering-op-locatie {
        aspect-ratio: unset;
        height: 200px;
    }

    .cursor-icon__levering-op-locatie {
        display: none !important;
    }
}

.image-wrapper__levering-op-locatie {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: 100%;
}

.cursor-icon__levering-op-locatie {
    position: absolute;
    width: 48px;
    height: 48px;
    background: #FFEF12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.cursor-icon__levering-op-locatie svg {
    width: 24px;
    height: 24px;
}

.cursor-icon__levering-op-locatie svg path {
    fill: black;
}

.image-wrapper__levering-op-locatie:hover .cursor-icon__levering-op-locatie {
    opacity: 1;
}

a.card-link__levering-op-locatie:hover .image__levering-op-locatie {
    transform: scale(1.1);
    transition: 0.3s all;
}

a.card-link__levering-op-locatie .image__levering-op-locatie {
    transition: 0.3s all;
}

a.card-link__levering-op-locatie {
    text-decoration: unset;
}

.image-wrapper__levering-op-locatie {
    border-radius: 8px;
}