.custom-acf-galerie {
    width: 100%;
}

.custom-acf-galerie__section {
    margin-bottom: 50px;
}

.custom-acf-galerie__section.is-hidden {
    display: none;
}

.custom-acf-galerie__title {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 25px;
    font-weight: 700;
}

.custom-acf-galerie__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-acf-galerie__item {
    display: block;
    text-decoration: none;
    overflow: hidden;
    border-radius: 12px;
}

.custom-acf-galerie__item img {
    display: block;
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.custom-acf-galerie__item:hover img {
    transform: scale(1.05);
}

.custom-acf-galerie__more-wrap {
    text-align: center;
    margin-top: 10px;
}

.custom-acf-galerie__more-btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    background: #3b82e8;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.custom-acf-galerie__more-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .custom-acf-galerie__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .custom-acf-galerie__grid {
        grid-template-columns: 1fr;
    }

    .custom-acf-galerie__title {
        font-size: 26px;
    }

    .custom-acf-galerie__item img {
        height: 220px;
    }
}