/*!
 * Theme Custom Stylesheet
 * Author: Wave Srl
 * Author URI: https://www.wave.example.com
 * Description: Foglio di stile personalizzato per il tema child WordPress.
 * Version: 1.0
 * Copyright: © 2025 Wave Srl. Tutti i diritti riservati.
 * License: Questo file è distribuito per uso interno. Non ridistribuire senza autorizzazione.
 */


/* STILI DESKTOP (default o min-width) */
@media (min-width: 1367px) {
  /* Es: font-size grande, layout in più colonne */
}

/* LAPTOP */
@media (max-width: 1366px) {
  /* Layout più compatto, colonne ridotte */
}

/* TABLET ORIZZONTALE */
@media (max-width: 1200px) {
  /* Layout tablet landscape */
}

/* TABLET VERTICALE */
@media (max-width: 1024px) {
  /* Layout più lineare, tocchi ottimizzati */
  .gallerymod .e-gallery-grid > a.e-gallery-item {
    transform: none !important;
  }
}

/* MOBILE LANDSCAPE */
@media (max-width: 880px) {
  .landscape-bottom::after {
    height: 50px; /* Puoi regolare l'altezza secondo le proporzioni */
  }
}

/* MOBILE PORTRAIT */
@media (max-width: 767px) {
  /* Layout mobile completo: testo grande, colonne in verticale */
}