/**
 * Image pleine largeur dans la région « Mis en évidence » (Highlighted)
 * Fait sortir le contenu du conteneur centré d'Olivero (full-bleed).
 */
.region--highlighted {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
}

.region--highlighted img {
  display: block;
  width: 100%;
  height: auto;
}

/* Évite une barre de défilement horizontale due au 100vw */
html,
body {
  overflow-x: hidden;
}

/**
 * Bandeau promotionnel — .ac-promo-banner
 * Thème Archicharrette
 *
 * Pour changer la charte : modifie uniquement les 4 variables ci-dessous.
 */

.ac-promo-banner {
  --ac-bg: #101820;        /* fond du bandeau */
  --ac-text: #ffffff;      /* texte principal */
  --ac-text-soft: #d9dde1; /* texte secondaire */
  --ac-accent: #c9a56a;    /* accent + bouton CTA */

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 520px;
  overflow: hidden;
  background: var(--ac-bg);
  color: var(--ac-text);
}

.ac-promo-banner__image {
  height: 100%;
  min-height: 520px;
}

.ac-promo-banner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ac-promo-banner__content {
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.ac-promo-banner__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ac-accent);
  margin: 0;
}

.ac-promo-banner__title {
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0;
}

.ac-promo-banner__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ac-text-soft);
  margin: 0;
  max-width: 46ch;
}

.ac-promo-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  padding: 14px 28px;
  border-radius: 4px;
  background: var(--ac-accent);
  color: var(--ac-bg);
  font-weight: 600;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.ac-promo-banner__cta:hover,
.ac-promo-banner__cta:focus {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

/* Responsive : empilement sur mobile / tablette */
@media (max-width: 900px) {
  .ac-promo-banner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .ac-promo-banner__image,
  .ac-promo-banner__image img {
    min-height: 280px;
  }

  .ac-promo-banner__content {
    padding: 36px 28px;
  }
}
