/* ============================================================
   PHUKET360 — home.css
   Styles spécifiques à la page d'accueil. Mobile-first.
   ============================================================ */


/* ============================================================
   1. HERO
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { height: 85vh; }
}

/* Image de fond */
.hero-bg {
  position: absolute;
  inset: -4%;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--ocean); /* fallback si image absente */
  animation: heroZoom 22s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

/* Overlay gradient bas → haut */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(13, 27, 42, 0.88) 0%,
    rgba(13, 27, 42, 0.5)  45%,
    rgba(13, 27, 42, 0.18) 100%
  );
}

/* Contenu */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  max-width: 680px;
}

/* Badge au-dessus du titre */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.35);
  color: var(--soleil);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

/* Icone Lucide du badge : suit la couleur du texte deja definie ci-dessus */
.hero-tag svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: currentColor;
}

.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

@media (min-width: 768px) {
  .hero-title { font-size: 5rem; }
}

.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 500px;
}

@media (min-width: 768px) {
  .hero-subtitle { font-size: 1.1rem; }
}

/* Barre de recherche */
.hero-search-wrapper {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
}

.hero-search-input-wrap {
  position: relative;
}

.hero-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.hero-search-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}

.hero-search-input {
  width: 100%;
  padding: 15px 18px 15px 50px;
  border: none;
  border-radius: 14px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  background: rgba(255,255,255,0.97);
  color: var(--text);
  outline: none;
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
  transition: box-shadow 0.2s;
  -webkit-appearance: none;
}
.hero-search-input:focus {
  box-shadow: 0 6px 28px rgba(0,0,0,0.35), 0 0 0 3px rgba(46,134,193,0.45);
}
.hero-search-input::placeholder { color: var(--text-light); }

/* Suggestions */
.hero-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 36px rgba(0,0,0,0.2);
  list-style: none;
  overflow: hidden;
  z-index: 1000;
  margin: 0;
  padding: 4px 0;
}
.hero-search-suggestions[hidden] { display: none; }

.suggestion-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.15s;
}
.suggestion-item:hover,
.suggestion-item.is-focused {
  background: var(--sable);
}
.suggestion-title {
  font-size: 0.88rem;
  color: var(--text);
  text-align: left;
}
.suggestion-title mark {
  background: none;
  color: var(--ocean);
  font-weight: 600;
}
.suggestion-category {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ocean-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.suggestion-empty {
  padding: 16px 18px;
  font-size: 0.86rem;
  color: var(--text-light);
  text-align: center;
}


/* ============================================================
   2. BARRE INFOS LIVE
============================================================ */
.info-bar {
  background: var(--ocean-deep);
  padding: 11px 0;
  position: relative;
  z-index: 1;
}

.info-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

@media (min-width: 768px) {
  .info-bar-inner {
    flex-wrap: nowrap;
    gap: 0;
  }
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (min-width: 768px) {
  .info-item + .info-item {
    border-left: 1px solid rgba(255,255,255,0.1);
    padding-left: 24px;
    margin-left: 24px;
  }
}

/* Porte une icone Lucide (SVG sans taille propre) : le conteneur aligne,
   le svg enfant est dimensionne et herite de la couleur de la barre. */
.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: rgba(255,255,255,0.48);
}

.info-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.info-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.48);
  font-weight: 500;
}

.info-value {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

.info-value.is-loading {
  opacity: 0.35;
  animation: infoPulse 1.4s ease-in-out infinite;
}

@keyframes infoPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.7; }
}


/* ============================================================
   3. CATÉGORIES
============================================================ */
.section-categories {
  padding: 60px 0;
  background: var(--sable);
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ocean-deep);
  margin: 0 0 28px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.4rem; margin-bottom: 36px; }
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 480px) {
  .categories-grid { gap: 14px; }
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 22px 12px 20px;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: var(--text);
  border-bottom: 3px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text);
}

.category-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.category-icon svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 1.75;
}

.category-name {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}

@media (min-width: 768px) {
  .category-card { padding: 28px 16px 24px; }
  .category-name { font-size: 0.88rem; }
}


/* ============================================================
   4. HERO STATS
============================================================ */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: inherit;
  border-radius: 6px;
  transition: opacity var(--transition, 0.2s);
}

.hero-stat:hover,
.hero-stat:focus-visible {
  opacity: 0.78;
  text-decoration: none;
}

.hero-stat:focus-visible {
  outline: 2px solid var(--soleil);
  outline-offset: 4px;
}

.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--soleil);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-stats { gap: 48px; }
  .hero-stat-num { font-size: 2.6rem; }
  .hero-stat-label { font-size: 0.78rem; }
}


/* ============================================================
   5. TEASER CARTE
============================================================ */
.section-map-teaser {
  background: var(--ocean);
  padding: 60px 0;
  overflow: hidden;
}

.map-teaser-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}

@media (min-width: 768px) {
  .map-teaser-inner {
    flex-direction: row;
    gap: 56px;
    align-items: center;
  }
}

.map-teaser-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .map-teaser-text { text-align: left; }
}

.map-teaser-text h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.2rem;
  color: #fff;
  margin: 0 0 14px;
}

@media (min-width: 768px) {
  .map-teaser-text h2 { font-size: 2.8rem; }
}

.map-teaser-text p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 28px;
}

/* Bouton CTA jaune */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--soleil);
  color: var(--ocean-deep);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-cta svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}
.btn-cta:hover {
  background: #dda020;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  text-decoration: none;
  color: var(--ocean-deep);
}

.map-teaser-visual {
  flex: 1;
  max-width: 460px;
  width: 100%;
}

.map-teaser-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  box-shadow: 0 10px 44px rgba(0,0,0,0.35);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.map-teaser-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.45);
  text-decoration: none;
}

.map-teaser-cta-link {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--soleil);
  text-decoration: none;
}

.map-teaser-cta-link:hover {
  color: var(--soleil);
  text-decoration: underline;
}

.map-teaser-cta-link svg {
  width: 15px;
  height: 15px;
  stroke: var(--soleil);
  flex-shrink: 0;
}

.map-teaser-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}



/* ============================================================
   5. FAQ
============================================================ */
.section-faq {
  padding: 60px 0;
  background: #fff;
}

/* Contrôles (search + chips) */
.faq-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

/* Champ de recherche FAQ */
.faq-search-wrap {
  position: relative;
}

.faq-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  pointer-events: none;
  display: flex;
  align-items: center;
}
.faq-search-icon svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
}

.faq-search-input {
  width: 100%;
  padding: 11px 16px 11px 42px;
  border: 1.5px solid rgba(0,0,0,0.11);
  border-radius: 10px;
  font-size: 0.9rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--sable);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.faq-search-input:focus {
  border-color: var(--ocean-light);
  box-shadow: 0 0 0 3px rgba(46,134,193,0.14);
}
.faq-search-input::placeholder { color: var(--text-light); }

/* Chips filtres — une seule rangee scrollable, jamais de retour a la ligne
   (coherent avec #p360-parents-bar de la carte, meme principe a toute taille
   d'ecran). Degrade sur le bord droit : indice discret que ca continue. */
.faq-chips {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
  padding-bottom: 4px;
}
.faq-chips::-webkit-scrollbar { display: none; }
.faq-chips::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 4px;
  width: 30px;
  background: linear-gradient(to right, transparent, #fff);
  pointer-events: none;
}

@media (min-width: 768px) {
  .faq-chips { justify-content: center; }
}

.faq-chip {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 13px;
  border-radius: 18px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid rgba(0,0,0,0.11);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.faq-chip:hover {
  border-color: var(--ocean-light);
  color: var(--ocean);
}
.faq-chip.is-active {
  background: var(--ocean);
  color: #fff;
  border-color: var(--ocean);
}

/* Liste des questions */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.faq-item { border-bottom: 1px solid rgba(0,0,0,0.07); }
.faq-item:first-child { border-top: 1px solid rgba(0,0,0,0.07); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.18s;
  -webkit-tap-highlight-color: transparent;
}
.faq-question:hover,
.faq-question.is-open { color: var(--ocean); }

.faq-chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--text-light);
  transition: transform 0.25s ease;
}
.faq-chevron svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
}
.faq-question.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--ocean);
}

/* Réponse (accordéon) */
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
}
.faq-answer.is-open { max-height: 800px; }

.faq-answer-inner {
  padding-bottom: 18px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Message "aucun résultat" */
.faq-empty {
  text-align: center;
  padding: 32px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  display: none;
}
.faq-empty.is-visible { display: block; }


/* ============================================================
   6. ARTICLES RÉCENTS
============================================================ */
.section-articles {
  padding: 60px 0;
  background: var(--sable);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
/* section-title déjà défini dans la section catégories */
.section-header .section-title { margin-bottom: 0; text-align: left; }

.section-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ocean-light);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.18s;
  flex-shrink: 0;
}
.section-link:hover { color: var(--ocean); text-decoration: none; }

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 768px) {
  .articles-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

.article-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--text);
}

.article-card-img {
  height: 175px;
  position: relative;
  flex-shrink: 0;
}

.article-card-cat {
  position: absolute;
  top: 12px; left: 12px;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fff;
}

.article-card-body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--ocean-deep);
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

.article-card-puces {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.article-card-puces li {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.4;
  padding-left: 13px;
  position: relative;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.article-card-puces li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cat-color, #1B4F72);
}

.article-card-meta {
  font-size: 0.74rem;
  color: var(--text-light);
  margin: 0;
}

/* Bouton "Voir tous les guides" */
.btn-guides {
  display: inline-flex;
  align-items: center;
  background: var(--ocean);
  color: #fff;
  font-weight: 700;
  font-size: 0.84rem;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-guides:hover {
  background: var(--ocean-deep);
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}


/* Badge ACTU sur les cards articles */
.article-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #E53935;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 5px;
  line-height: 1.4;
}


/* ============================================================
   ANIMATIONS SCROLL — fade-in depuis le bas
============================================================ */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   BOUTON RETOUR EN HAUT
============================================================ */
.btn-back-top {
  position: fixed;
  bottom: 75px;
  right: 16px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--soleil);
  color: var(--ocean-deep);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn-back-top svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
}
.btn-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.btn-back-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .btn-back-top {
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
  }
}


/* ============================================================
   SECTION ÉVÉNEMENTS (teaser homepage)
   ============================================================ */
.section-events {
  padding: 60px 0;
  background: var(--sable);
}

@media (max-width: 767px) {
  .section-events .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   SECTION ACTUALITÉS
   ============================================================ */
.section-actu {
  padding: 56px 0;
  background: var(--ocean-deep);
}

.section-actu .section-header {
  margin-bottom: 32px;
}

.section-actu .section-title {
  color: #fff;
}

.actu-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.actu-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  color: #fff;
}

.actu-card:hover {
  text-decoration: none;
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.actu-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.actu-card-img-placeholder {
  width: 100%;
  height: 160px;
  background: var(--ocean-light);
  opacity: 0.3;
}

.actu-card-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.actu-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin: 0;
}

.actu-card-date {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.actu-card-excerpt {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.actu-cta-wrap {
  text-align: center;
  margin-top: 32px;
}

.actu-cta-wrap .btn-guides {
  background: var(--soleil);
  color: var(--ocean-deep);
}

.actu-cta-wrap .btn-guides:hover {
  background: #dda020;
}

@media (min-width: 768px) {
  .actu-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .actu-card-img {
    height: 180px;
  }
}
