/*
Theme Name: Hello Elementor Child
Theme URI: https://example.com/
Description: Thème enfant de Hello Elementor
Author: Agence Paradoxe
Author URI: https://example.com/
Template: hello-elementor
Text Domain: hello-elementor-child
Version: 1.0.0
*/

.grc-widget-trust-link-textk a {
  color: white!important;
}

:root {
  /* === Palette principale === */
  --a58-accent: #ffbd11;
  --a58-bg-text-on-yellow: #232d2e;
  --a58-text: #232d2e;
  --a58-border: #e6e6e6;
  --a58-border-light: #eeeeee;

  /* === Typographies === */
  --a58-font-title: "Inter Tight", sans-serif;
  --a58-font-body: "Albert Sans", sans-serif;

  /* === Tailles & rayons === */
  --a58-radius: 8px;
  --a58-gap: 2rem;
  --a58-container: 1200px;

  /* === Ombres === */
  --a58-shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.05);
  --a58-shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Le parent sert de référence au positionnement */
.overlap-hero {
  position: relative;
  overflow: visible;
}

/* Le bloc vidéo se place en absolu et chevauche */
.overlap-hero .overlap-media {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -300px;
  /* profondeur du chevauchement (desktop) */
  width: min(1100px, 86vw);
  /* largeur max + fluide */
  z-index: 5;
}

/* Maintient le ratio 16/9 proprement, quel que soit le player */
.overlap-hero .overlap-media iframe,
.overlap-hero .overlap-media video,
.overlap-hero .overlap-media .elementor-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  /* laisse le ratio piloter la hauteur */
  display: block;
  border-radius: 12px;
  /* optionnel */
}

/* Tablette */
@media (max-width: 1024px) {
  .overlap-hero .overlap-media {
    bottom: -90px;
    width: min(900px, 92vw);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .overlap-hero .overlap-media {
    bottom: -60px;
    width: 94vw;
  }
}




.cards-row>.card-col {
  display: flex;
  flex-direction: column;
}

.cards-row>.card-col>.card-body {
  flex: 1 1 auto;
  /* même hauteur pour les 3 blocs texte */
  display: flex;
  flex-direction: column;
}

.cards-row>.card-col .elementor-widget-button {
  margin-top: auto;
  /* bouton collé en bas */
}







.a58-trust {
  font-family: "Albert Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.4;
  color: #232d2e;
  /* texte foncé */
  display: grid;
  gap: 10px;
  /* espace entre les lignes */
}

.a58-trust__item {
  display: grid;
  grid-template-columns: 24px 1fr;
  /* icône + texte */
  gap: 10px;
  align-items: start;
}

.a58-trust__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: block;
}

.a58-trust__text {
  margin: 0;
}

.a58-trust__text strong {
  font-weight: 700;
}









.a58-blog-content h2 {
  font-family: "Inter Tight", sans-serif;
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: #232d2e,
}

.a58-blog-content h3 {
  font-family: "Inter Tight", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: #232d2e,
}

.a58-blog-content p {
  font-family: "Albert sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 2.5rem 0 1rem;
  color: #232d2e,
}

.a58-blog-content li {
  font-family: "Albert sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #232d2e,
}

.a58-blog-content a {
  font-family: "Albert sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: #232d2e!important;
  text-decoration: underline!important;
}













/* === Desktop : tout dans une vraie grille sans vide === */
@media (min-width:1025px){
  .a58-hero{
    display: grid !important;
    grid-template-columns: 58% 42%;
    grid-template-areas: "colgauche summary";
    column-gap: 24px;
    align-items: start;
  }

  /* Fusion : Galerie + Accordéons = même zone "colgauche" */
  .a58-hero .Cont_Galerie,
  .a58-hero .Cont_Accordeons{
    grid-area: colgauche;
  }

  .a58-hero .Cont_Summary{
    grid-area: summary;
  }

  /* Nettoyage */
  .a58-hero > *{
    margin: 0 !important;
    width: auto !important;
    max-width: none !important;
    flex: initial !important;
  }

  /* Espace entre la Galerie et les Accordéons */
  .a58-hero .Cont_Accordeons{
    margin-top: 24px !important;
  }
}

/* === Mobile : empilement naturel === */
@media (max-width:1024px){
  .a58-hero{
    display: grid !important;
    grid-template-columns: 1fr;
    grid-template-areas:
      "galerie"
      "summary"
      "accord";
    row-gap: 16px;
  }
  .a58-hero .Cont_Galerie{ grid-area: galerie; }
  .a58-hero .Cont_Summary{ grid-area: summary; }
  .a58-hero .Cont_Accordeons{ grid-area: accord; margin-top:0 !important; }
}