
/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #FFFFFF;
  font-family: 'Lato', sans-serif;
  color: #333333;
  line-height: 1.65;
}

/* Conteneurs principaux */
.ast-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* sections internes avec contenu centré */
.content-wrapper {
  max-width: 880px;
  margin: 0 auto;
}

/* Images responsives */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Titres */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Lato', sans-serif;
  color: #333333;
  font-weight: 700;
}

/* liens */
a {
  text-decoration: none;
  color: #0274be;
}
a:hover {
  color: #0237e5;
}

/* ===== COMPOSANTS ORIGINAUX ===== */
.publireportage {
  background-color: #000000;
  border-bottom: 1px solid #EAEAEA;
  text-align: center;
  padding: 4px 0;
}
.publireportage span {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #B1B1B1;
}

.logo-bar {
  display: block;
  border-bottom: 1px solid #F1F1F1;
  padding: 8px 0 5px;
  text-align: start;
}
.logo-bar img {
  width: 33%;
  max-width: 300px;
}

/* headline */
.main-title {
  font-size: 44px;
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .main-title {
    font-size: 32px;
    line-height: 36px;
  }
}

/* partage boutons */
.share-buttons {
  display: flex;
  gap: 10px;
  margin: 15px 0 20px;
}
.share-btn {
  background-color: #3b5998;
  border-radius: 0;
  width: 100%;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  transition: 0.2s;
}
.share-btn.twitter {
  background-color: #000;
}
.share-btn.pinterest {
  background-color: #bd081c;
}
.share-btn:hover {
  filter: brightness(0.85);
}

/* texte éditorial */
.editor-text {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  margin-bottom: 1.2em;
}
.editor-text p {
  margin-bottom: 1.2em;
}

h2 {
  font-size: 30px;
  line-height: 37px;
  margin: 25px 0 15px;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    line-height: 30px;
  }
}

/* vidéo hébergée */
.video-container {
  margin: 20px 0;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* listes avec émojis vérification */
.check-list {
  list-style: none;
  margin: 1.2em 0;
}
.check-list li {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 26px;
}
.check-list li i {
  color: #28a745;
  margin-right: 8px;
}

/* blocs témoignages (style bleu clair) */
.testimonial-block {
  background-color: #EDF9FF;
  border-right: 5px solid #337AB7;
  border-radius: 5px;
  padding: 18px 20px;
  margin: 20px 0;
  transition: box-shadow 0.2s;
}
.testimonial-block:hover {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.testimonial-text {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #333;
  margin-bottom: 8px;
}
.testimonial-author {
  font-weight: 700;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.stars i {
  color: #FFB800;
  font-size: 18px;
}

/* avertissement jaune */
.update-warning {
  background-color: #FEF5C4;
  border: 3px dashed #FE7D7F;
  padding: 18px 20px;
  margin: 30px 0 20px;
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #333;
}

/* boutons CTA */
.cta-button {
  display: block;
  width: 100%;
  background-color: #1FBA34;
  color: white;
  font-family: 'Roboto', sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  padding: 15px;
  border-radius: 7px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.35);
  margin: 25px 0 40px;
  transition: background 0.2s;
}
.cta-button:hover {
  background-color: #07893A;
  color: white;
}
@media (max-width: 767px) {
  .cta-button {
    font-size: 23px;
    line-height: 28px;
    padding: 12px;
  }
}

/* section footer légal */
.legal-footer {
  background-color: #000000;
  padding: 20px 0;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: #7B7B7B;
  margin-top: 20px;
}
.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.legal-links a {
  font-size: 14px;
  color: #7B7B7B;
  transition: color 0.2s;
}
.legal-links a:hover {
  color: #54595F;
}
.legal-text p {
  margin-bottom: 12px;
  line-height: 21px;
  font-size: 14px;
}

/* structure responsive simple */
.section-padding {
  padding: 0 0 50px 0;
}

.container-narrow {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* images pleine largeur */
.full-img {
  margin: 20px 0;
}
.full-img img {
  width: 100%;
}

/* éléments inline pour icônes check */
i.fa-check-circle {
  color: #28a745;
  margin-right: 8px;
}

hr {
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #eee;
}

/* alignement */
.text-start {
  text-align: left;
}
.docs {
  padding: 30px 16px;
  word-break: break-word;
}