.acf-icon-tiles {
    margin: var(--space-3xl) 0;
}

.icon-tiles-row {
    justify-content: center;
    row-gap: var(--space-2xl);
}

.icon-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    aspect-ratio: 1;
    border-radius: 50%;
    background-color: #fff;
    color: var(--color-primary);
    text-decoration: none;
    padding: var(--space-md);
    gap: var(--space-xl);
    transition: var(--transition);
    box-shadow: var(--box-shadow);
    text-align: center;
    overflow: hidden;
    flex-shrink: 0;
}

.icon-tile:hover {
    transform: translateY(-5px);
}

.icon-tile-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.icon-tile-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.icon-tile-text {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.2;
    font-family: 'Khand', sans-serif;
}

/* --- Tablette 992px --- */
@media screen and (max-width: 992px) {
    .icon-tile {
        width: 200px;
        height: 200px;
        gap: var(--space-md);
    }

    .icon-tile-icon {
        width: 78px;
        height: 78px;
    }

    .icon-tile-text {
        font-size: 20px;
    }
}

/* --- Mobile 768px --- */
@media screen and (max-width: 768px) {
    .icon-tile {
        width: 155px;
        height: 155px;
        gap: var(--space-sm);
        padding: var(--space-sm);
    }

    .icon-tile-icon {
        width: 58px;
        height: 58px;
    }

    .icon-tile-text {
        font-size: 16px;
    }
}

/* --- Petits mobiles 576px --- */
@media screen and (max-width: 576px) {
    .icon-tile {
        width: 130px;
        height: 130px;
        gap: var(--space-xs);
        padding: var(--space-xs);
    }

    .icon-tile-icon {
        width: 46px;
        height: 46px;
    }

    .icon-tile-text {
        font-size: 13px;
    }
}

