/*
Theme Name: Aliaz
Theme URI: https://example.com/aliaz
Author: Ton Agence
Author URI: https://example.com
Description: Child theme for Divi. Lightweight starter child theme created for the "Aliaz" one-page workflow. Uses Divi + ACF.
Version: 1.0.0
Template: Divi
Tags: one-page, child-theme, divi, aliaz
Text Domain: aliaz
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

/* =Theme custom CSS
-------------------------------------------------------------- */

/* Add your custom CSS below this line */

.acf-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.acf-gallery-item {
    width: calc(25% - 15px);
    cursor: pointer;
    display: block;
}

.acf-gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.2s ease;
}

.acf-gallery-item:hover img {
    transform: scale(1.03);
}
