/* ==========================
   STYLES GLOBAUX
   ========================== */
   html { scroll-behavior: smooth; }
   body { font-family: 'Quicksand', sans-serif; font-weight: 500; color: #4a4a4a; }
   h1, h2, h3, h4, .font-bold { font-weight: 800; }
   .font-medium { font-weight: 700; }
   .font-regular { font-weight: 600; }

   /* Effet Parallaxe pour la bannière vidéo */
   .hero-section {
      height: 100vh;
      position: relative;
      overflow: hidden;
   }
   #hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -100;
      transform: translateX(-50%) translateY(-50%);
      background-size: cover;
   }
   .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.4);
      z-index: 1;
   }
   .hero-content { z-index: 2; }

   /* Animation au défilement */
   .reveal-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
   }
   .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
   }

/* ==========================
   STYLES SECTION SERVICES
   ========================== */
   .service-card-photo {
       /* Crée le cercle */
       height: 6rem; /* 96px */
       width: 6rem;  /* 96px */
       border-radius: 9999px; /* équivaut à rounded-full */

       /* Gère l'image de fond pour un recadrage parfait */
       background-size: cover;
       background-position: center;

       /* Esthétique */
       margin-left: auto;
       margin-right: auto;
       box-shadow: 0 4px 10px rgba(0,0,0,0.1);
       transition: transform 0.3s ease-in-out;
   }
   /* Applique un zoom au survol de la carte parente */
   .service-card:hover .service-card-photo {
       transform: scale(1.1);
   }

   /* --- Transition pour l'apparition des services cachés --- */
   .hidden-service {
       opacity: 0;
       transform: translateY(20px);
       transition: opacity 0.5s ease, transform 0.5s ease;
       display: none; /* Cache complètement l'élément au départ */
   }

/* ==========================
   STYLES WIDGET CTOUVERT
   ========================== */
   ctv-searchbar { width: 100%; }

/* ===============================
   STYLES CARROUSSEL A DECOUVRIR
   =============================== */
   
   /* Masque la barre de scroll pour le carrousel */
   .scrollbar-hide::-webkit-scrollbar { display: none; }
   .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

   /* Styles pour le carrousel Material 3 */
   .carousel-item {
      position: relative;
      height: 400px; /* Hauteur des tuiles en format portrait */
      transform: scale(0.85); /* Taille par défaut (réduite) */
      opacity: 0.7;
      transition: transform 0.4s ease, opacity 0.4s ease;
      cursor: pointer;
   }
   .carousel-item.is-active {
      transform: scale(1); /* Taille de l'élément au centre */
      opacity: 1;
   }

/* =================================
   STYLES GALERIE PHOTO LE CAMPING
   ================================= */
   
   /* Styles pour la grille Masonry */
   #gallery-masonry-grid {
      width: 100%;
   }
   .grid-item {
      padding: 4px; /* Crée un léger espacement */
      overflow: hidden;
      border-radius: 12px;
      transition: transform 0.3s ease-in-out;
   }
   .grid-item:hover {
      transform: scale(1.05);
      z-index: 10; /* Assure que la tuile passe au-dessus de ses voisines lors du zoom */
   }   

   .grid-item img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
   }

   /* Tailles des éléments pour la mosaïque */
   .grid-item--width2 { width: 66.666%; }
   .grid-item--width1 { width: 33.333%; }

   /* --- Styles pour la tuile spéciale "Voir plus" --- */
   /* Conteneur pour l'overlay et l'icône '+' */
   .gallery-item-more {
       position: absolute;
       top: 4px;
       left: 4px;
       right: 4px;
       bottom: 4px;
       display: flex;
       align-items: center;
       justify-content: center;
       border-radius: 8px; /* Doit correspondre au radius de l'image */
       transition: background-color 0.3s ease;
   }

   /* L'overlay sombre qui recouvre la 6ème image */
   .gallery-item-overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0, 0, 0, 0.6); /* Fond noir semi-transparent */
       opacity: 1; /* Toujours visible */
       border-radius: 8px;
   }

   /* Le signe '+' au centre */
   .gallery-item-plus {
       position: relative; /* Pour s'assurer qu'il est au-dessus de l'overlay */
       font-size: 4rem;    /* 64px */
       color: white;
       font-weight: 200;   /* Un plus fin et élégant */
       line-height: 1;
       /*transition: transform 0.3s ease;*/
   }

   /* Effet de grossissement du '+' au survol de la tuile parente */
   /*
   .grid-item:hover .gallery-item-plus {
       transform: scale(1.2);
       
   }*/

/* ==========================
   STYLES BOUTON WHATSAPP
   ========================== */
   /* Positionnement bouton whatsapp */
  .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 100;
      transition: transform 0.3s ease-in-out; 
   }
  .whatsapp-float:hover {
      transform: scale(1.1);
  }
   #cookie-consent-banner { z-index: 10000; } /* indique que la bannière cookies est plus importante que whatsapp*/

/* =================================================================
// STYLES POUR LA PAGE "HEBERGEMENTS" (hebergements.html)
// ================================================================= */

   /* --- Onglets des Catégories Principales --- */
   .category-tab {
       position: relative;
       border-radius: 0.5rem; /* rounded-lg */
       overflow: hidden;
       box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* shadow-md */
       cursor: pointer;
       height: 6rem; /* h-24 */
       transition: all 0.3s ease-in-out;
       transform: translateY(0);
   }
   @media (min-width: 1024px) { /* lg: */
       .category-tab {
           height: 8rem; /* h-32 */
       }
   }
   .category-tab:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 20px rgba(0,0,0,0.15);
   }
   /* Style de l'onglet actif */
   .category-tab.is-active {
       box-shadow: 0 0 0 4px #FFD000; /* Bordure avec la couleur primaire */
       transform: translateY(-5px);
   }
   .category-tab-overlay {
       position: absolute;
       inset: 0;
       background-image: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
   }
   .category-tab-content {
       position: absolute;
       bottom: 0;
       left: 0;
       padding: 0.75rem 1rem; /* p-3 md:p-4 */
       color: white;
   }

   /* --- Filtres Secondaires --- */

   /* Style pour les jauges glissantes (range sliders) */
   .range-slider {
       -webkit-appearance: none;
       appearance: none;
       width: 100%;
       height: 6px;
       background: #e5e7eb; /* gray-200 */
       border-radius: 9999px;
       outline: none;
       transition: background 0.2s ease;
   }
   .range-slider::-webkit-slider-thumb {
       -webkit-appearance: none;
       appearance: none;
       width: 20px;
       height: 20px;
       background: #FF6B6B; /* secondary */
       cursor: pointer;
       border-radius: 50%;
   }
   .range-slider::-moz-range-thumb {
       width: 20px;
       height: 20px;
       background: #FF6B6B; /* secondary */
       cursor: pointer;
       border-radius: 50%;
       border: none;
   }

   /* Style pour les cases à cocher personnalisées */
   .custom-checkbox-label {
       display: inline-block;
       background-color: white;
       border: 1px solid #d1d5db; /* gray-300 */
       border-radius: 9999px;
       padding: 0.5rem 1rem; /* px-4 py-2 */
       font-size: 0.875rem; /* text-sm */
       cursor: pointer;
       transition: all 0.2s ease-in-out;
   }
   /* Style quand la checkbox est cochée */
   .custom-checkbox:checked + .custom-checkbox-label {
       background-color: #FFD000; /* primary */
       border-color: #FFD000; /* primary */
       color: #4a4a4a; /* text-dark */
       font-weight: 600; /* semibold */
   }

   /* --- Cartes d'Hébergement --- */

   /* Carrousel interne aux cartes */
   .card-carousel-container {
       position: relative;
       height: 16rem; /* h-56 */
       overflow: hidden;
   }
   .card-carousel-slide {
       display: flex;
       height: 100%;
       transition: transform 0.3s ease-in-out;
   }
   .card-carousel-slide img {
       width: 100%;
       height: 100%;
       object-fit: cover;
       flex-shrink: 0;
   }
.card-carousel-nav {
    /* Positionnement */
    position: absolute;
    top: 50%;
    z-index: 10;

    /* Style visuel */
    background-color: rgba(255, 255, 255, 0.7);
    color: #4a4a4a; /* text-text-dark */
    border-radius: 9999px; /* rounded-full */
    padding: 0.5rem; /* p-2 */
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); /* shadow-md */

    /* Animation et état initial */
    transition: all 200ms ease-in-out;
    opacity: 0;
    transform: translateY(-50%) scale(0.8);
}

/* Effet au survol du bouton */
.card-carousel-nav:hover {
    background-color: rgb(255, 255, 255);
}

/* Affichage des flèches au survol de la carte */
.card-carousel-container:hover .card-carousel-nav {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Styles pour les points de pagination du carrousel */
.card-carousel-dots {
    position: absolute;
    bottom: 0.75rem; /* 12px */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem; /* 8px */
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.5); /* Blanc semi-transparent */
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.carousel-dot.is-active {
    background-color: white; /* Blanc opaque pour le point actif */
}

/* ==== STYLES POUR LA MODALE ==== */

    /* État par défaut : modale invisible mais avec display: flex actif */
    #accommodation-modal {
        /* Le flex reste actif pour que items-center et justify-center fonctionnent */
        display: flex;
        opacity: 0;
        visibility: hidden;
        pointer-events: none; /* Empêche les clics quand invisible */
        transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    }

    /* État actif : modale visible */
    #accommodation-modal.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto; /* Réactive les clics */
        
    }

    #accommodation-modal.is-open ~ ctv-search[data-float="true"] {
      display: none !important;
    }

    /* Animation du contenu de la modale */
    #modal-content {
        transform: scale(0.95);
        transition: transform 0.3s ease-in-out;
    }

    #accommodation-modal.is-open #modal-content {
        transform: scale(1);
    }

    /* Assure le centrage parfait sur tous les écrans */
    #accommodation-modal {
        align-items: center;
        justify-content: center;
    }

    /* Responsive : ajuste la hauteur sur mobile */
    @media (max-width: 768px) {
        #modal-content {
            max-height: 95vh;
            margin: auto;
        }
    }

    /* (Optional) Ensure smooth rotation for toggle icon */
    #toggle-amenities-btn .material-icons {
      transition: transform 0.3s ease;
    }

   /* Galerie à l'intérieur de la modale */
   /*#modal-gallery-main {
       height: 75%;
   }*/
   #modal-gallery-thumbnails {
       height: auto; /* au lieu de 25% */
       padding: 0.5rem; /* p-2 */
   }
   .modal-thumbnail {
       height: 100%;
       aspect-ratio: 4 / 3;
       border-radius: 0.375rem; /* rounded-md */
       cursor: pointer;
       opacity: 0.6;
       transition: all 0.2s;
       border: 2px solid transparent;
   }
   /* Miniature active */
   .modal-thumbnail.is-active {
       opacity: 1;
       border-color: #FFD000; /* primary */
       transform: scale(1.05);
   }

/* ==== VIEWER PANORAMIQUE ==== */

    .panorama-viewer {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        cursor: grab;
        background: transparent;
        border-radius: 8px;
        user-select: none;
    }

    .panorama-viewer:active {
        cursor: grabbing;
    }

    /* Image panoramique */
    .panorama-image {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;  /* Hauteur forcée */
        width: auto;   /* Largeur automatique selon ratio */
        max-width: none !important;
        pointer-events: none;
        display: block;
    }

    /* Badge discret "Vue panoramique" */
    .panorama-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(8px);
        color: white;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        z-index: 10;
        pointer-events: none;
    }

    .panorama-badge .material-icons {
        font-size: 16px;
        color: #FFD000;
    }

    /* Chargement */
    .panorama-loading {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        font-size: 14px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .panorama-loading .spinner {
        width: 40px;
        height: 40px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-top-color: #FFD000;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        to { transform: rotate(360deg); }
    }

/* ==== GALERIE DE LA MODALE ==== */

    /* Zone principale 4:3 */
    #modal-gallery-main {
        aspect-ratio: 4 / 3;
        background: #f5f5f5;
        position: relative;
        overflow: hidden;
    }

    #modal-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Bandeau de miniatures avec scroll horizontal */
    #modal-gallery-thumbnails {
        margin-top: 12px;
        position: relative;
    }

    .thumbnails-scroll {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 4px 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    /* Style des miniatures */
    .modal-thumbnail {
        flex-shrink: 0;
        width: 80px;
        height: 60px;
        object-fit: cover;
        border-radius: 6px;
        cursor: pointer;
        border: 3px solid transparent;
        transition: all 0.2s ease;
        opacity: 0.7;
    }

    .thumbnails-scroll::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Edge */
    }

    .modal-thumbnail:hover {
        opacity: 1;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .modal-thumbnail.is-active {
        border-color: #FFD000;
        opacity: 1;
        box-shadow: 0 0 0 1px #FFD000, 0 4px 12px rgba(255, 208, 0, 0.4);
    }

    /* Indicateur de position (optionnel) */
    .gallery-indicator {
        position: absolute;
        bottom: 8px;
        right: 8px;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        pointer-events: none;
    }

/* =================================================================
// STYLES POUR LA PAGE "LE CAMPING" (camping.html)
// ================================================================= */

.hero-keywords {
  letter-spacing: 0.04em;
}

.page-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #FFD000;
  z-index: 9999;
}

.quick-nav-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 9999px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.quick-nav-chip:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(0,0,0,0.12); }

.persona-card {
  position: relative;
  border-radius: 16px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.persona-card:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.12); }
.persona-card.is-active { border-color: #FFD000; box-shadow: 0 0 0 3px rgba(255,208,0,0.45), 0 16px 32px rgba(0,0,0,0.12); }

.persona-icon{
  font-size: 26px;
  line-height: 1;
  color: #FF6B6B; /* secondary */
}

/* ===============================
   PERSONA RESULT (Premium layout)
   =============================== */
.persona-result-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px){
  .persona-result-grid{
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }
}

.persona-figure{
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.persona-image{
  width:100%;
  height: 220px;
  object-fit: cover;
  display:block;
}

@media (min-width: 768px){
  .persona-image{ height: 360px; }
}

.persona-blocks{
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.persona-block{
  background:#f9fafb;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 14px 14px;
}

.persona-block-title{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight: 800;
  color:#4a4a4a;
}

.persona-block-title .material-icons{
  font-size: 20px;
}

.persona-block-text{
  margin-top: 8px;
  color:#6b7280;
  font-size: 0.95rem;
  line-height: 1.45;
}

.persona-list{
  margin-top: 10px;
  display:flex;
  flex-direction: column;
  gap: 8px;
  color:#6b7280;
  font-size: 0.95rem;
}

.persona-list li{
  position: relative;
  padding-left: 18px;
}

.persona-list li::before{
  content:"";
  position:absolute;
  left:0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #FF6B6B; /* secondary */
  transform: translateY(-50%);
}

/* Persona card active state */
.persona-card.is-active{
  outline: 2px solid rgba(255, 208, 0, 0.85); /* primary */
  box-shadow: 0 16px 38px rgba(0,0,0,0.10);
  transform: translateY(-1px);
}

        /* ===============================
           PERSONA CARDS: mobile lighter
           =============================== */
        @media (max-width: 767px){
          .persona-card{
            padding: 14px !important;
          }
          .persona-card .persona-icon{
            font-size: 26px;
          }
          .persona-card .text-lg{
            font-size: 1rem; /* titres un poil plus compacts */
          }
          .persona-card-desc{
            display:none !important; /* pas de descriptif sur mobile */
          }
        }

/* =========================================================
   PERSONA - Grille images
   Mobile: 1 image (4:3)
   Desktop: grille 2 colonnes x 3 lignes (toutes 4:3)
   ========================================================= */

/* Base: mobile-first */
.persona-media{
  display: block;
}

/* Figures en 4:3 */
.persona-figure{
  border-radius: 18px;
  overflow: hidden;
  background: #f9fafb;
  aspect-ratio: 4 / 3;
}

/* Images */
.persona-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile: on masque la grille secondaire (donc 1 seule image) */
.persona-media-grid{
  display: none;
}

/* Desktop: on passe en vraie grille 2 colonnes / 3 lignes */
@media (min-width: 1024px){
  .persona-media{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  /* IMPORTANT:
     on rend le container transparent pour que ses enfants
     deviennent des items DIRECTS de la grille parent */
  .persona-media-grid{
    display: contents;
  }

  /* (Option sécurité) on empêche des règles héritées de forcer la colonne 2 */
  .persona-figure{
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

.persona-cta-footer{
  background: transparent;
}

@media (min-width: 1024px){
  .persona-cta-footer{
    display:flex;
    justify-content:flex-end;
  }
}

.camping-accordion summary {
  list-style: none;
  cursor: pointer;
}
.camping-accordion summary::-webkit-details-marker { display:none; }
.camping-accordion details {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  background: white;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  overflow: hidden;
}
.camping-accordion details[open] { box-shadow: 0 16px 34px rgba(0,0,0,0.12); }
.camping-accordion .faq-q {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 16px 18px;
  font-weight: 700;
  color: #4a4a4a;
}
.camping-accordion .faq-a {
  padding: 0 18px 18px 18px;
  color: #6b7280;
  line-height: 1.6;
}

.faq-pill {
  border-radius: 9999px;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
  background: white;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.faq-pill:hover { transform: translateY(-1px); }
.faq-pill.is-active { background: #FFD000; border-color: #FFD000; color: #4a4a4a; }

.tabs-shell {
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  padding: 6px;
  display: inline-flex;
  gap: 6px;
}
.tab-btn {
  border-radius: 9999px;
  padding: 10px 14px;
  font-weight: 700;
  transition: background .2s ease, transform .2s ease;
}

.tab-btn:hover { transform: translateY(-1px); }

.tab-pane.hidden {
    display: none !important;
}

/* Optionnel : transition douce */
.tab-pane {
    transition: opacity 0.3s ease;
    opacity: 0;
}
.tab-pane:not(.hidden) {
    display: block; /* ou flex selon votre besoin */
    opacity: 1;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Style spécifique pour les boutons d'onglets si besoin d'ajustement */
.tab-btn.is-active {
    background-color: #FFD000; /* Votre couleur Primary */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.back-to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #FF6B6B; /* secondary */
  color: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ======================
   === Page Découvrir === 
   ====================== */


@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-article {
    animation: slideUpFade 0.6s ease forwards;
    opacity: 0; /* Caché par défaut avant l'anim */
}

    /* === Articles === */

    @keyframes slideUpFade {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }