/* +30 millions de consommateurs — styles uniquement dans ce fichier */

:root {
  --black: #000000;
  --ink: #1a1a1a;
  --white: #ffffff;
  --yellow: #ffd200;
  --yellow-hover: #ffe14a;
  --red: #c4161c;
  --red-dark: #9d1217;
  --cats-red: #b71c1c;
  --grey: #e6e6e6;
  --grey-bg: #f4f4f4;
  --muted: #5c5c5c;
  --radius: 6px;
  --radius-lg: 10px;
  --max: 968px;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, filter 0.3s ease;
}

ul {
  list-style: none;
}

button,
input {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Boutons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius);
  padding: 12px 22px;
  font-size: 0.82rem;
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, filter 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

.btn-yellow:hover {
  background: var(--yellow-hover);
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
}

.btn-black {
  background: var(--black);
  color: var(--white);
}

.btn-black:hover {
  background: #2a2a2a;
}

.btn-pill {
  border-radius: 999px;
  padding: 12px 26px 12px 28px;
  letter-spacing: 0.08em;
}

.btn-subscribe {
  padding: 11px 32px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.btn-subscribe:hover {
  box-shadow: 0 0 0 4px rgba(255, 210, 0, 0.28), 0 10px 22px rgba(255, 210, 0, 0.35);
}

.arrow {
  font-size: 1.05em;
  line-height: 1;
}

/* Placeholders images */

.placeholder {
  background: var(--grey);
  border-radius: var(--radius);
}

.placeholder-hero {
  width: 100%;
  min-height: 340px;
  border-radius: 22px;
}

.placeholder-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 240px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: #ececec;
  overflow: hidden;
}

.placeholder-card .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 2;
}

.card:hover .placeholder-card .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

.placeholder-bonplan {
  width: 210px;
  height: 392px;
  min-height: 392px;
  align-self: flex-start;
  background: #e8e8e8;
  flex-shrink: 0;
  border-radius: 16px;
  margin: 16px 0 0 18px;
  position: relative;
  z-index: 1;
}

.placeholder-bulletin {
  width: 88%;
  aspect-ratio: auto;
  height: 292px;
  margin: 12px auto 14px;
  border-radius: 12px;
  background: #c8c8c8;
  flex-shrink: 0;
}

.placeholder-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: inherit;
  background: #d8d8d8;
  overflow: hidden;
}

.placeholder-panier-lg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  background: #d8d8d8;
}

.placeholder-mini {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 12px;
  border-radius: 16px;
  background: #d8d8d8;
}

/* Header */

.site-header {
  background: var(--black);
  color: var(--white);
  padding-bottom: 36px;
}

.site-header.is-inner {
  padding-bottom: 0;
}

.header-top {
  width: min(100% - 32px, 1420px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 18px 0 6px;
}

.header-top-spacer {
  min-height: 1px;
}

.brand {
  display: grid;
  place-items: center;
  justify-self: center;
}

.brand-logo {
  width: min(300px, 64vw);
  height: auto;
  margin-block: -62px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.06);
  filter: drop-shadow(0 0 16px rgba(255, 210, 0, 0.45));
}

.header-actions {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding-top: 18px;
  padding-right: 4px;
}

.abroad {
  display: flex;
  align-items: center;
  gap: 10px;
}

.abroad-label {
  color: #d8d8d8;
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
}

.abroad-flags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flag-link {
  display: block;
  border-radius: 50%;
}

.flag-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.flag-link:hover .flag-circle {
  transform: scale(1.22);
  box-shadow: 0 0 0 2px var(--yellow), 0 0 12px rgba(255, 210, 0, 0.5);
}

.flag-bf {
  background: linear-gradient(#ef2b2d 50%, #009e49 50%);
}

.flag-sn {
  background: linear-gradient(90deg, #00853f 33.33%, #fdef42 33.33% 66.66%, #e31b23 66.66%);
}

.flag-bj {
  background: linear-gradient(90deg, #008751 38%, #fcd116 38% 69%, #e8112d 69%);
}

.flag-tg {
  background: linear-gradient(to bottom, #006a4e 20%, #ffce00 20% 40%, #006a4e 40% 60%, #ffce00 60% 80%, #006a4e 80%);
}

.flag-ml {
  background: linear-gradient(90deg, #14b53a 33.33%, #fcd116 33.33% 66.66%, #ce1126 66.66%);
}

.main-nav {
  width: min(100% - 16px, 1420px);
  margin: 4px auto 0;
  display: flex;
  align-items: center;
  gap: 10px 16px;
  padding: 14px 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.nav-home {
  color: var(--yellow);
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), filter 0.3s ease;
}

.nav-home svg {
  width: 22px;
  height: 22px;
}

.nav-home:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(255, 210, 0, 0.85));
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 20px;
  flex: 1;
}

.nav-list a {
  position: relative;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-list a:hover {
  color: var(--yellow);
}

.nav-list a:hover::after,
.nav-list a.is-current::after {
  transform: scaleX(1);
}

.nav-list a.is-current {
  color: var(--yellow);
}

.nav-search {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.nav-search:hover {
  transform: scale(1.14) rotate(-10deg);
  box-shadow: 0 0 0 5px rgba(255, 210, 0, 0.28);
  background: var(--yellow-hover);
}

.nav-search svg {
  width: 16px;
  height: 16px;
}

.hero-search {
  width: min(100% - 40px, 980px);
  margin-inline: auto;
  padding: 42px 0 26px;
  text-align: center;
}

.hero-search-title {
  margin-bottom: 26px;
  line-height: 1.22;
  display: grid;
  gap: 2px;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.35rem, 2.6vw, 1.95rem);
}

.hero-line-1 {
  color: var(--yellow);
}

.hero-line-2 {
  color: var(--white);
}

.search-form {
  display: flex;
  align-items: stretch;
  max-width: 860px;
  margin-inline: auto;
  border-radius: 999px;
  overflow: visible;
  background: var(--white);
  position: relative;
  min-height: 58px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-form:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.38), 0 0 0 3px rgba(255, 210, 0, 0.25);
}

.search-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
  pointer-events: none;
  z-index: 3;
}

.search-input {
  flex: 1.35;
  border: 0;
  padding: 16px 22px;
  font-size: 0.95rem;
  outline: none;
  min-width: 0;
  background: transparent;
  color: #333;
  border-radius: 999px 0 0 999px;
}

.search-cats {
  position: relative;
  flex: 0.95;
  min-width: 210px;
}

.search-cats-btn {
  width: 100%;
  height: 100%;
  min-height: 58px;
  border: 0;
  background: var(--cats-red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.94rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 0 68px 0 16px;
  white-space: nowrap;
  border-radius: 0 999px 999px 0;
  transition: background 0.3s ease, letter-spacing 0.3s ease;
}

.search-cats-btn:hover {
  background: #9a1616;
  letter-spacing: 0.02em;
}

.search-cats-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cats-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: var(--white);
  color: var(--ink);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  z-index: 20;
  text-align: left;
}

.cats-menu a,
.cats-menu button {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.cats-menu a:hover,
.cats-menu button:hover {
  background: #fff6cc;
  color: var(--red);
  padding-left: 18px;
}

.search-go {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.search-go:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 0 5px rgba(255, 210, 0, 0.32);
  background: var(--yellow-hover);
}

.search-go svg {
  width: 20px;
  height: 20px;
}

.category-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(100% - 24px, 1100px);
  margin-inline: auto;
  padding: 28px 0 10px;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 110px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}

.cat-item:hover {
  transform: translateY(-8px) scale(1.08);
  color: var(--yellow);
}

.cat-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;  
  color: var(--yellow);
  transition: filter 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.cat-item:hover .cat-icon {
  filter: drop-shadow(0 0 14px rgba(255, 210, 0, 0.7));
  transform: scale(1.12);
}

.cat-arrow {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.cat-arrow:hover {
  color: var(--yellow);
  transform: scale(1.28);
  text-shadow: 0 0 12px rgba(255, 210, 0, 0.7);
}

.cat-list {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

.cat-list::-webkit-scrollbar {
  display: none;
}

.cat-icon svg {
  width: 50px;
  height: 50px;
}

/* Flash info */

.flash-wrap {
  background: var(--white);
  padding: 40px 0 0;
}

.flash-info {
  display: flex;
  align-items: center;
  background: transparent;
  overflow: visible;
  margin-top: 0;
  gap: 0;
}

.flash-label {
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-style: italic;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 12px 22px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 999px;
  z-index: 1;
  flex-shrink: 0;
  transition: background 0.3s ease, letter-spacing 0.3s ease, transform 0.3s ease;
}

.flash-label:hover {
  background: var(--red-dark);
  letter-spacing: 0.12em;
  transform: scale(1.03);
}

.flash-bar {
  flex: 1;
  min-width: 0;
  background: #ececec;
  border-radius: 999px;
  margin-left: -14px;
  padding-left: 28px;
  overflow: hidden;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.flash-track {
  display: flex;
  overflow: hidden;
  flex: 1;
  align-items: center;
}

.flash-text {
  white-space: nowrap;
  padding-left: 24px;
  font-size: 0.88rem;
  font-weight: 500;
  font-style: italic;
  color: #6a6a6a;
  animation: ticker 28s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.flash-bar:hover .flash-text {
  animation-play-state: paused;
}

/* Sections générales */

.section {
  padding: 56px 0;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 52ch;
}

.panier .section-subtitle {
  font-style: italic;
  color: #5a5a5a;
  font-size: 0.98rem;
  max-width: 68ch;
  margin-bottom: 32px;
}

.focus .section-subtitle {
  color: var(--ink);
  font-style: italic;
  font-size: 1.02rem;
}

.article-title {
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 800;
  margin: 18px 0 12px;
  line-height: 1.25;
}

.article-excerpt {
  color: #6a6a6a;
  font-style: italic;
  margin-bottom: 22px;
  max-width: 46ch;
}

/* À la une */

.une {
  padding-top: 48px;
  padding-bottom: 28px;
}

.une-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1.35fr;
  gap: 56px;
  align-items: center;
}

.une-slider {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 360px;
  background: #a3a3a3;
}

.une-slides {
  position: relative;
  min-height: 360px;
}

.une-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06) translateX(18px);
  transition: opacity 0.7s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.une-slide[data-tone="1"] {
  background: #9c9c9c;
}

.une-slide[data-tone="2"] {
  background: #b4b4b4;
}

.une-slide[data-tone="3"] {
  background: #888888;
}

.une-slide.has-media {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.une-slide.is-active {
  opacity: 1;
  transform: scale(1) translateX(0);
  z-index: 1;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border: 0;
  padding: 0;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.dot.is-active {
  transform: scale(1.55);
}

/* Pub */

.pub-section {
  padding: 12px 0 40px;
}

.pub-slot {
  background: #ececec;
  border-radius: 22px;
  min-height: 350px;
  display: grid;
  place-items: center;
  color: #d0d0d0;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
}

.pub-slot.has-media,
.placeholder.has-media,
.une-slide.has-media,
.actu-card-bg.has-media,
.droits-card-bg.has-media,
.focus-tile-media.has-media,
.panier-tile-media.has-media,
.article-hero-media.has-media {
  color: transparent;
  background-color: #ddd;
  background-repeat: no-repeat;
}

a.pub-slot {
  text-decoration: none;
}

.card-link-wrap {
  color: inherit;
  text-decoration: none;
  display: block;
}

.form-feedback {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
}

.form-feedback.is-ok {
  color: #0a7a3e;
}

.form-feedback.is-error {
  color: #b42318;
}

.flag-ci {
  background: linear-gradient(90deg, #f77f00 33.33%, #ffffff 33.33% 66.66%, #009e60 66.66%);
}

/* Texte lisible sur visuels (tuiles overlay) */
.focus-tile:has(.has-media)::before,
.actu-card:has(.has-media)::before,
.droits-card:has(.has-media)::before,
.panier-tile:has(.has-media)::before,
.panier-featured.has-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.42) 42%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.focus-tile:has(.has-media) .focus-tile-copy,
.actu-card:has(.has-media) .actu-card-copy,
.droits-card:has(.has-media) .droits-card-copy,
.panier-tile:has(.has-media) .panier-tile-copy,
.panier-featured.has-media .panier-featured-copy {
  z-index: 2;
}

.focus-tile:has(.has-media) .focus-tile-copy h2,
.actu-card:has(.has-media) .actu-card-copy h2,
.droits-card:has(.has-media) .droits-card-copy h2,
.panier-tile:has(.has-media) .panier-tile-copy h2,
.panier-featured.has-media .panier-featured-copy h3 {
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.focus-tile:has(.has-media) .focus-tile-copy p,
.actu-card:has(.has-media) .actu-card-copy p,
.droits-card:has(.has-media) .droits-card-copy p,
.panier-tile:has(.has-media) .panier-tile-copy p,
.panier-featured.has-media .panier-featured-copy p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.focus-tile-media .play-btn,
.placeholder-video .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: rgba(196, 22, 28, 0.92);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  display: grid;
  place-items: center;
  pointer-events: none;
}

.focus-tile-media .play-btn-sm {
  width: 44px;
  height: 44px;
}

.focus-tile-media .play-btn::after,
.placeholder-video .play-btn::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
}

.article-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.article-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.page-article.is-emission .article-hero-block.has-video {
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .page-article.is-emission .article-hero-block.has-video {
    grid-template-columns: 1fr 1.15fr;
    align-items: start;
  }
}

/* Focus */

.focus {
  background: var(--white);
  padding-top: 24px;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.home-focus-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.home-focus-mosaic .focus-tile.focus-col {
  min-height: 340px;
  aspect-ratio: 3 / 4;
}

.empty-state {
  padding: 28px 8px 12px;
  text-align: left;
}

.empty-state .section-subtitle {
  margin-bottom: 16px;
}

.emission-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.emission-tab {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1.5px solid #111;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #111;
  background: #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.emission-tab:hover,
.emission-tab.is-current {
  background: var(--yellow, #f5c518);
  color: #111;
}

.page-emission-hub {
  background: var(--white);
  padding: 36px 0 80px;
}

.page-emission-hub .container {
  width: min(100% - 40px, 1180px);
}

.emission-hub-mosaic .video-card-format {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card,
.gouv-card,
.video-card,
.mini-card,
.panier-featured,
.bulletin {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.gouv-card:hover,
.mini-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.video-card:hover,
.panier-featured:hover {
  transform: translateY(-4px);
}

.placeholder {
  transition: filter 0.3s ease, transform 0.3s ease;
}

.card:hover .placeholder,
.gouv-card:hover .placeholder,
.video-card:hover .placeholder,
.mini-card:hover .placeholder,
.panier-featured:hover .placeholder,
.panier-tile:hover .placeholder {
  filter: brightness(0.92);
}

.play-btn {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.video-card:hover .play-btn,
.focus-tile:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.08);
}

.round-nav {
  transition: transform 0.25s ease, background 0.25s ease;
}

.round-nav:hover {
  background: #8a1418;
}

.card {
  background: transparent;
}

.card h3,
.video-card h3,
.panier-featured h3,
.mini-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
}

.card p,
.video-card p,
.panier-featured p,
.mini-card p {
  font-size: 0.86rem;
  color: #8a8a8a;
  font-style: italic;
}

.focus .card h3 {
  font-size: 0.95rem;
}

.focus .card:hover {
  transform: none;
  box-shadow: none;
}

/* Bon plan */

.bon-plan-section {
  padding-top: 28px;
  padding-bottom: 72px;
  overflow-x: clip;
}

.bon-plan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 268px;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
  min-height: 0;
}

.bon-plan {
  --bon-plan-band-h: 302px;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: transparent;
  border-radius: 0;
  padding: 0 0 56px;
  min-height: 0;
  height: auto;
  overflow: visible;
}

a.bon-plan-hit {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.bon-plan::before {
  content: "";
  display: block;
  position: absolute;
  /* Étend la bande jusqu’au bord gauche de l’écran, sans déplacer le contenu. */
  left: calc(-1 * max(20px, (100vw - var(--max)) / 2));
  right: 0;
  top: 0;
  height: var(--bon-plan-band-h);
  background: var(--yellow);
  border-radius: 0;
  z-index: 0;
  pointer-events: none;
}

.bon-plan-copy {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  height: var(--bon-plan-band-h);
  padding: 26px 26px 14px 0;
  min-width: 0;
}

.bon-plan-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red, #c4161c);
}

.bon-plan-text h2 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.12;
  color: var(--black);
  max-width: 22ch;
}

.bon-plan-offer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0 0 10px;
}

.bon-plan-enseigne {
  font-size: 0.78rem;
  font-weight: 700;
  color: #333;
}

.bon-plan-text p {
  margin-bottom: 0;
  max-width: 42ch;
  font-weight: 500;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--black);
}

.bon-plan .btn {
  position: absolute;
  right: 8px;
  top: var(--bon-plan-band-h);
  z-index: 2;
  margin: 0;
  padding: 11px 24px 11px 26px;
  transform: translateY(-50%);
}

.bon-plan:hover .btn {
  transform: translateY(calc(-50% - 3px)) scale(1.05);
}

.bulletin {
  position: relative;
  background: #ececec;
  border-radius: 16px;
  box-shadow: none;
  padding: 22px 18px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 0;
  width: 100%;
  overflow: visible;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bulletin:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

a.bulletin-hit {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.bulletin-brand {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  white-space: nowrap;
  color: var(--black);
}

.bulletin h2 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--black);
}

.bulletin-title {
  margin: 8px 0 4px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.3;
  max-width: 28ch;
  color: var(--black);
}

.bulletin-excerpt {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.4;
  max-width: 28ch;
}

.bulletin-kicker {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 0;
  margin-bottom: 0;
}

.bulletin .btn {
  position: absolute;
  left: 8px;
  right: auto;
  bottom: 0;
  z-index: 2;
  align-self: auto;
  width: auto;
  min-width: 0;
  margin: 0;
  padding: 10px 22px 10px 24px;
  font-size: 0.72rem;
  transform: translateY(50%);
}

/* Émission */

.emission {
  background: var(--white);
}

.emission .section-title {
  margin-bottom: 22px;
}

.emission-carousel {
  position: relative;
  padding: 0 28px;
}

.emission-viewport {
  overflow: hidden;
}

.emission-track {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.video-card {
  position: relative;
  flex: 0 0 28%;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1a1a;
  transition:
    flex-basis 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.video-card-lg {
  flex-basis: 42%;
  height: 320px;
}

.video-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.video-card .placeholder-video {
  position: absolute;
  inset: 0;
  padding-bottom: 0;
  border-radius: inherit;
  background-color: #2a2a2a;
}

.video-card .placeholder-video.has-media {
  background-size: cover;
  background-position: center;
}

.video-card .placeholder-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.25) 48%, rgba(0, 0, 0, 0.08) 100%);
}

.video-card-copy {
  position: absolute;
  left: 18px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  pointer-events: none;
}

.video-card-format {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-card-lg .video-card-copy {
  left: 22px;
  bottom: 20px;
  max-width: 85%;
}

.video-card h3 {
  font-size: 0.98rem;
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.video-card-lg h3 {
  font-size: 1.15rem;
}

.video-card p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
}

.video-card .play-btn {
  z-index: 3;
}

.video-card.is-playing {
  box-shadow: 0 18px 40px rgba(196, 22, 28, 0.22);
}

.video-card.is-playing .placeholder-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.55));
  animation: video-play-pulse 1.6s ease-in-out infinite;
}

@keyframes video-play-pulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.7;
  }
}

.play-btn {
  width: 52px;
  height: 52px;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(163, 29, 36, 0.35);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  z-index: 2;
}

/* Keep emission play size stable (no jump on featured card) */
.video-card .play-btn,
.video-card-lg .play-btn {
  width: 56px;
  height: 56px;
}

.play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 16px;
  border-color: transparent transparent transparent var(--white);
  margin-left: 3px;
}

.video-card .play-btn::after,
.video-card-lg .play-btn::after {
  border-width: 8px 0 8px 14px;
  margin-left: 3px;
}

.round-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-size: 1.45rem;
  cursor: pointer;
  z-index: 2;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease;
}

.round-nav-prev {
  left: 0;
}

.round-nav-next {
  right: 0;
}

.round-nav:hover {
  transform: translateY(-50%) scale(1.08);
  background: #8a1418;
}

/* Panier */

.panier {
  background: #ececec;
}

.panier-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.panier-featured {
  position: relative;
  height: 100%;
  min-height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: #d8d8d8;
}

a.panier-featured-hit {
  position: absolute;
  inset: 0;
  display: block;
  text-decoration: none;
  color: inherit;
}

.panier-featured-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
}

.panier-featured h3 {
  font-size: 1.05rem;
  max-width: 22ch;
}

.panier-featured p {
  max-width: 36ch;
  margin-bottom: 16px;
  color: #6e6e6e;
}

.panier-featured .btn {
  width: fit-content;
}

.panier-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 20px;
}

.mini-card {
  background: transparent;
}

.mini-card h3 {
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.mini-card p {
  font-size: 0.78rem;
}

/* Newsletter */

.newsletter {
  padding: 72px 0 80px;
  background: var(--white);
}

.newsletter-inner {
  text-align: center;
}

.newsletter-title {
  font-size: clamp(1.15rem, 2.4vw, 1.55rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.newsletter-form {
  display: flex;
  max-width: 720px;
  margin-inline: auto;
  background: #ececec;
  border-radius: 999px;
  overflow: hidden;
  min-height: 56px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.newsletter-form input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 14px 26px;
  font-size: 1rem;
  font-style: italic;
  outline: none;
  min-width: 0;
  color: #333;
}

.newsletter-form input::placeholder {
  color: #8a8a8a;
  font-style: italic;
}

.newsletter-submit {
  border: 0;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 42px;
  cursor: pointer;
  border-radius: 0 999px 999px 0;
  transition: background 0.3s ease, transform 0.3s ease, letter-spacing 0.3s ease;
}

.newsletter-submit:hover {
  background: var(--red-dark);
  letter-spacing: 0.12em;
}

/* Footer */

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 0;
  border-top: 4px solid var(--yellow);
}

.footer-inner {
  width: min(100% - 40px, 1120px);
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.15fr) minmax(0, 1.35fr) minmax(200px, 0.9fr);
  gap: 40px 48px;
  padding: 8px 0 40px;
  align-items: start;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
}

.footer-logo {
  width: 196px;
  height: auto;
  margin-block: -12px 4px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.footer-brand:hover .footer-logo {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(255, 210, 0, 0.4));
}

.footer-entity {
  margin: 8px 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
}

.footer-address {
  font-style: normal;
  font-size: 0.88rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.footer-heading {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}

.footer-heading-social {
  margin-top: 28px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
}

.footer-links a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
}

.footer-links a:hover {
  color: var(--yellow);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-social-link:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 24px;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--yellow);
}

.page-contact,
.page-legal {
  background: var(--white);
  padding: 40px 0 80px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.contact-card,
.contact-form-card,
.legal-card {
  background: #f6f6f6;
  border-radius: 18px;
  padding: 32px 30px;
}

.contact-card h1,
.legal-card h1 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  margin-bottom: 8px;
}

.contact-kicker,
.legal-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.contact-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-details {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.contact-details dt {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.contact-details dd {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--ink);
}

.contact-form-card h2 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  background: var(--white);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.28);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
  margin-top: 4px;
}

.legal-card h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 22px 0 8px;
}

.legal-card ul {
  padding-left: 18px;
  margin-bottom: 12px;
}

.legal-card li {
  list-style: disc;
  margin-bottom: 6px;
}

/* Pages intérieures */

.page-gouv {
  padding: 40px 0 80px;
}

.page-intro-box {
  background: #ececec;
  border-radius: 22px;
  padding: 42px 48px 40px;
  margin-bottom: 48px;
}

.page-intro-box h1 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
  max-width: 22ch;
  margin-bottom: 16px;
}

.page-intro-box p {
  font-style: italic;
  color: #6a6a6a;
  max-width: 72ch;
  font-size: 0.98rem;
}

.gouv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px 28px;
}

.gouv-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ececec;
  border-radius: 18px;
  overflow: visible;
  padding-bottom: 28px;
}

.placeholder-gouv {
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 280px;
  margin-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #e4e4e4;
}

.gouv-card-copy {
  padding: 16px 22px 22px;
  text-align: left;
}

.gouv-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 8px;
  text-align: left;
}

.gouv-card p {
  font-size: 0.88rem;
  color: #6e6e6e;
  font-style: italic;
  margin-bottom: 0;
  text-align: left;
}

.gouv-card .btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  width: auto;
  min-width: 72%;
  margin: 0;
  padding: 12px 26px;
  border-radius: 999px;
  z-index: 1;
}

.gouv-card .btn:hover {
  transform: translate(-50%, 50%) scale(1.04);
}

/* Cartes image (Focus + Au cœur) — texte et bouton sur l’image */

.page-focus,
.page-realites {
  background: var(--white);
  padding: 36px 0 80px;
}

main.page-bons-plans {
  background: var(--white);
  padding: 36px 0 80px;
}

.page-focus .container,
.page-realites .container,
main.page-tribune .container,
main.page-bons-plans .container {
  width: min(100% - 40px, 1180px);
}

.focus-mosaic,
.realites-mosaic,
.tribune-mosaic,
.bons-plans-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px;
  align-items: stretch;
}

.focus-hero {
  grid-column: 1 / 3;
  min-height: 540px;
}

.focus-stack {
  grid-column: 3;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 540px;
}

.realites-stack {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 540px;
}

.realites-hero {
  grid-column: 2 / 4;
  min-height: 540px;
}

.focus-stack .focus-tile,
.realites-stack .focus-tile {
  flex: 1;
  min-height: 258px;
}

.focus-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border-radius: 16px;
  overflow: hidden;
  background: #cfcfcf;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.focus-tile-hit {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

a.focus-tile-hit .focus-tile-copy {
  position: relative;
  z-index: 2;
}

.focus-tile.focus-hero {
  grid-column: 1 / 3;
  min-height: 540px;
}

.focus-tile.realites-hero {
  grid-column: 2 / 4;
  min-height: 540px;
}

.focus-tile.focus-mid {
  grid-column: 1;
  min-height: 420px;
  aspect-ratio: 3 / 4;
}

.focus-tile.focus-wide {
  grid-column: 2 / 4;
  min-height: 420px;
  aspect-ratio: auto;
}

.focus-tile.realites-banner {
  grid-column: 1 / -1;
  min-height: 300px;
  aspect-ratio: 3.4 / 1;
}

.focus-tile.focus-col {
  min-height: 400px;
  aspect-ratio: 3 / 4;
}

.focus-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.focus-tile-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  background: #c8c8c8;
  z-index: 0;
}

.focus-tile-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: transparent;
  padding: 22px 22px 24px;
  max-width: 34rem;
  text-align: left;
}

.focus-tile-copy h2 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 8px;
  color: var(--black);
  text-align: left;
}

.focus-tile-copy p {
  font-size: 0.84rem;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.45;
  margin-bottom: 14px;
  text-align: left;
}

.focus-tile-copy .btn {
  align-self: flex-start;
  width: fit-content;
  padding: 10px 22px 10px 24px;
  font-size: 0.72rem;
}

.focus-hero .focus-tile-copy,
.realites-hero .focus-tile-copy {
  padding: 28px 32px 32px;
}

.focus-hero .focus-tile-copy h2,
.realites-hero .focus-tile-copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  max-width: 18ch;
}

.focus-hero .focus-tile-copy p,
.realites-hero .focus-tile-copy p {
  font-size: 0.95rem;
  max-width: 42ch;
}

.focus-wide .focus-tile-copy h2,
.realites-banner .focus-tile-copy h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  max-width: 22ch;
}

.realites-intro {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 36px;
}

.realites-intro-arrow {
  flex-shrink: 0;
  width: 72px;
  height: 48px;
  color: var(--black);
}

.realites-intro p {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
  max-width: 43ch;
}

.realites-intro strong {
  color: var(--yellow);
  font-weight: 800;
}

/* La tribune */

.tribune-hero {
  background: var(--black);
  color: var(--white);
  border-bottom: 4px solid var(--yellow);
  padding: 28px 0 48px;
}

.tribune-hero .container {
  width: min(100% - 40px, 1180px);
}

.tribune-hero-inner {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(0, 1.8fr);
  align-items: center;
  gap: 28px 40px;
}

.tribune-hero-figure {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 285px;
}

.tribune-hero-img {
  width: min(460px, 100%);
  height: auto;
  max-height: 340px;
  object-fit: contain;
}

.tribune-hero-title {
  font-size: clamp(2.05rem, 2vw, 1.75rem);
  font-weight: 900;
  line-height: 1.35;
  max-width: none;
  width: 80%;
}

.tribune-hero-title span {
  color: var(--yellow);
}

.tribune-pair {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.tribune-pair .focus-tile {
  min-height: 300px;
}

main.page-tribune {
  background: var(--white);
  padding: 44px 0 80px;
}

.tribune-mosaic .realites-banner {
  min-height: 280px;
}

.bons-plans-mosaic .focus-hero,
.bons-plans-mosaic .focus-stack {
  min-height: 320px;
}

.bons-plans-mosaic .focus-stack {
  gap: 22px;
}

.bons-plans-mosaic .focus-mid,
.bons-plans-mosaic .focus-wide {
  min-height: 320px;
  aspect-ratio: auto;
}

.bons-plans-mosaic .pub-slot {
  grid-column: 1 / -1;
  min-height: 220px;
  border-radius: 16px;
  display: block;
  overflow: hidden;
  background: #ececec;
  background-size: cover;
  background-position: center;
  text-decoration: none;
}

.bons-plans-mosaic .focus-col {
  min-height: 320px;
}

/* Bons plans */

.bons-plans-intro {
  text-align: center;
  margin-bottom: 42px;
}

.bons-plans-intro h1 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 10px;
}

.bons-plans-intro p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-style: italic;
  font-weight: 500;
  color: var(--black);
}

/* Actualités */

main.page-actualites {
  background: var(--white);
  padding: 0 0 80px;
}

main.page-actualites .container,
.page-actualites-flash .container {
  width: min(100% - 40px, 1180px);
}

main.page-actualites .une {
  padding-top: 36px;
  padding-bottom: 36px;
}

main.page-actualites .une-slider,
main.page-actualites .une-slides {
  min-height: 360px;
}

main.page-actualites .une-slide {
  background-color: #c8c8c8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.actu-feed {
  padding-top: 8px;
  padding-bottom: 0;
}

.actu-duo,
.actu-trio {
  display: grid;
  gap: 22px;
}

.actu-duo {
  grid-template-columns: 1fr 1fr;
}

.actu-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.actu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 16px;
  background: #cfcfcf;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

a.actu-card-hit {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

a.actu-card-hit .actu-card-copy {
  position: relative;
  z-index: 2;
}

.actu-card-lg {
  min-height: 300px;
  aspect-ratio: 16 / 10;
}

.actu-card-sm {
  min-height: 320px;
  aspect-ratio: 1 / 1.05;
}

.actu-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #c8c8c8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.actu-card::after {
  content: none;
}

.actu-card-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 22px 24px;
  max-width: 34rem;
}

.actu-card-copy h2 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 8px;
  color: var(--black);
}

.actu-card-copy p {
  font-size: 0.84rem;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.45;
  margin-bottom: 14px;
}

.actu-card-copy .btn {
  align-self: flex-start;
  width: fit-content;
  padding: 10px 22px 10px 24px;
  font-size: 0.72rem;
}

.actu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
}

.actu-card:hover .actu-card-bg {
  transform: scale(1.08);
}

.actu-pub {
  margin: 50px 0;
  min-height: 220px;
  border-radius: 16px;
  display: block;
  overflow: hidden;
  background: #ececec;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

/* Droits et devoirs — padding sur main seulement (évite le double avec body.page-droits) */

main.page-droits {
  background: var(--white);
  padding: 36px 0 80px;
}

main.page-droits .container {
  width: min(100% - 40px, 1180px);
}

.droits-hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  column-gap: 20px;
  row-gap: 12px;
  margin: 8px 0 48px;
}

.droits-hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 300px;
  width: min(400px, 48vw);
  overflow: visible;
}

.droits-hero-copy {
  max-width: 18em;
  margin-left: 0;
  padding-right: 12px;
}

.droits-hero-circle {
  position: absolute;
  width: min(68%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--yellow);
  z-index: 0;
  top: 46%;
  left: 42%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.droits-hero-img {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center left;
  filter: url("#knockout-black");
}

.svg-filters {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.droits-hero-copy h1 {
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 12px;
}

.droits-hero-copy p {
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.35;
  color: var(--black);
  max-width: 22ch;
}

.droits-code {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px 40px;
  align-items: center;
  margin: 0 0 56px;
  padding: 28px 32px;
  border: 1px solid #ececec;
  border-radius: 18px;
  background: linear-gradient(180deg, #fffdf5 0%, #ffffff 58%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.droits-code-doc {
  width: 118px;
  height: 158px;
  border-radius: 10px;
  background: #111;
  color: var(--yellow);
  display: grid;
  place-items: center;
  box-shadow: 8px 10px 0 var(--yellow);
  position: relative;
}

.droits-code-doc::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 22px 22px 0;
  border-style: solid;
  border-color: #fff #fff #2a2a2a #2a2a2a;
}

.droits-code-icon {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.droits-code-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.droits-code-copy h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.droits-code-copy p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 18px;
}

.droits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.droits-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  border-radius: 16px;
  background: #cfcfcf;
  isolation: isolate;
  min-height: 280px;
  aspect-ratio: 3 / 4;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

a.droits-card-hit {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

a.droits-card-hit .droits-card-copy {
  position: relative;
  z-index: 2;
}

.droits-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  border-radius: inherit;
  background-color: #c8c8c8;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.droits-card-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 16px 20px;
  max-width: 100%;
}

.droits-card-copy h2 {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 6px;
  color: var(--black);
}

.droits-card-copy p {
  font-size: 0.78rem;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.4;
  margin-bottom: 12px;
}

.droits-card-copy .btn {
  align-self: flex-start;
  width: fit-content;
  padding: 9px 18px 9px 20px;
  font-size: 0.68rem;
}

.droits-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.droits-card:hover .droits-card-bg {
  transform: scale(1.08);
}

/* Comparateur */

main.page-comparateur {
  background: #f7f7f7;
  padding: 36px 0 88px;
}

main.page-comparateur .container {
  width: min(100% - 48px, 1120px);
}

.cmp-results {
  display: grid;
  gap: 22px;
}

.cmp-intro,
.cmp-toolbar {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.cmp-intro h2,
.cmp-toolbar h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 800;
  margin: 4px 0 10px;
}

.cmp-intro p,
.cmp-toolbar p {
  color: var(--muted);
  max-width: 70ch;
}

.cmp-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-end;
}

.cmp-sort {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cmp-sort button {
  border: 1px solid #e4e4e4;
  background: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}

.cmp-sort button.is-active,
.cmp-sort button:hover {
  background: var(--yellow);
  border-color: var(--yellow);
}

.cmp-spots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.cmp-spot {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 20px 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 180px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cmp-spot:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09);
}

.cmp-spot-cat,
.cmp-product-cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.cmp-spot h3,
.cmp-product-head h3 {
  font-size: 1.05rem;
  font-weight: 800;
}

.cmp-spot-brand,
.cmp-product-head p {
  color: var(--muted);
  font-size: 0.88rem;
}

.cmp-spot-price {
  margin-top: auto;
  font-size: 0.92rem;
}

.cmp-spot-price strong,
.cmp-product-win strong,
.cmp-offer-price strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.cmp-spot span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
}

.cmp-product {
  background: var(--white);
  border-radius: 20px;
  padding: 22px 24px 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.cmp-product.is-lead {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  outline: 2px solid rgba(255, 210, 0, 0.55);
}

.cmp-product-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}

.cmp-product-win {
  text-align: right;
  background: #111;
  color: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  min-width: 180px;
}

.cmp-product-win p {
  color: #cfcfcf;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.cmp-product-win strong {
  display: block;
  color: var(--yellow);
  margin: 4px 0;
}

.cmp-product-win span {
  font-size: 0.75rem;
  color: #ececec;
}

.cmp-product-body {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
  gap: 18px 22px;
  align-items: start;
}

.cmp-advice {
  background: #fffdf2;
  border-radius: 14px;
  padding: 16px 16px 8px;
  border-left: 4px solid var(--yellow);
}

.cmp-advice h4 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cmp-advice li {
  font-size: 0.86rem;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #333;
}

.cmp-offer-list {
  display: grid;
  gap: 10px;
}

.cmp-offer {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fafafa;
}

.cmp-offer.is-best {
  background: #fffceb;
  border-color: var(--yellow);
}

.cmp-badge {
  position: absolute;
  top: -8px;
  right: 14px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 999px;
}

.cmp-badge-promo {
  background: var(--red);
  color: var(--white);
}

.cmp-offer-rank {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #111;
  color: var(--white);
  font-weight: 800;
}

.cmp-offer.is-best .cmp-offer-rank {
  background: var(--yellow);
  color: var(--black);
}

.cmp-offer-meta,
.cmp-offer-note {
  font-size: 0.78rem;
  color: var(--muted);
}

.cmp-offer-note span {
  color: #d4a017;
  letter-spacing: 1px;
}

.cmp-offer-price {
  text-align: right;
}

.cmp-offer-price span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.cmp-empty {
  background: var(--white);
  border-radius: 18px;
  padding: 48px 28px;
  text-align: center;
}

.cmp-block {
  margin-bottom: 52px;
}

.cmp-kicker {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 4px;
}

.cmp-title {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  font-weight: 800;
  font-style: italic;
  color: var(--yellow);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 22px;
}

.cmp-featured {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 450px;
  height: 332px;
  margin-bottom: 18px;
  border-radius: 28px;
  overflow: hidden;
}

.cmp-featured.is-rising {
  animation: cmp-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes cmp-rise {
  from {
    transform: translateY(18px) scale(0.97);
    opacity: 0.55;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.cmp-featured.is-playing::after,
.cmp-card.is-playing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.5));
  animation: video-play-pulse 1.6s ease-in-out infinite;
  pointer-events: none;
}

.cmp-tone-light .cmp-featured,
.cmp-tone-light .cmp-card {
  background: #e8e8e8;
}

.cmp-tone-mid .cmp-featured,
.cmp-tone-mid .cmp-card {
  background: #cfcfcf;
}

.cmp-featured .play-btn {
  width: 86px;
  height: 86px;
}

.cmp-featured .play-btn::after {
  border-width: 14px 0 14px 24px;
  margin-left: 5px;
}

.cmp-copy {
  position: absolute;
  left: 28px;
  bottom: 22px;
  z-index: 1;
  max-width: min(52%, 420px);
  pointer-events: none;
}

.cmp-copy h2 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.28;
  color: var(--black);
  margin-bottom: 6px;
}

.cmp-copy p {
  font-size: 0.82rem;
  font-style: italic;
  font-weight: 500;
  color: #6a6a6a;
  line-height: 1.4;
}

.cmp-featured .cmp-copy h2 {
  font-size: 1.12rem;
}

.cmp-carousel {
  position: relative;
  padding: 0 42px;
}

.cmp-viewport {
  overflow: hidden;
}

.cmp-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.cmp-card {
  position: relative;
  flex: 0 0 24.8%;
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
  transition:
    flex-basis 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    height 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s ease;
}

.cmp-card-wide {
  flex-basis: 47.5%;
  height: 243px;
}

.cmp-card .play-btn {
  width: 58px;
  height: 58px;
}

.cmp-card .cmp-copy {
  left: 18px;
  right: 14px;
  bottom: 16px;
  max-width: none;
}

.cmp-card .cmp-copy h2 {
  font-size: 0.88rem;
}

.cmp-card .cmp-copy p {
  font-size: 0.74rem;
}

.cmp-carousel .round-nav {
  width: 34px;
  height: 34px;
  font-size: 1.35rem;
}

.cmp-featured,
.cmp-card {
  transition: transform 0.3s ease;
}

.cmp-featured:hover,
.cmp-card:hover {
  transform: translateY(-4px);
}

.cmp-featured:hover .play-btn,
.cmp-card:hover .play-btn {
  transform: scale(1.08);
}

/* Le panier de la ménagère */

.page-panier-menagere {
  background: var(--white);
  padding: 36px 0 80px;
}

.page-panier-menagere .container {
  width: min(100% - 40px, 1180px);
}

.panier-page-mosaic {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.panier-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border-radius: 16px;
  overflow: hidden;
  background: #d8d8d8;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

a.panier-tile-hit {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
}

a.panier-tile-hit .panier-tile-copy {
  position: relative;
  z-index: 2;
}

.panier-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

.panier-tile-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: inherit;
  background: #d4d4d4;
  z-index: 0;
}

.panier-hero .panier-tile-media {
  background: #bdbdbd;
}

.panier-tile-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 22px 24px;
  max-width: 34rem;
  text-align: left;
}

.panier-tile-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--yellow, #f5c518);
  color: #111;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.panier-tile-copy h2 {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.28;
  margin-bottom: 8px;
  color: var(--black);
}

.panier-tile-copy p {
  font-size: 0.84rem;
  font-style: italic;
  color: #2a2a2a;
  line-height: 1.45;
  margin-bottom: 14px;
}

.panier-tile-copy .btn {
  align-self: flex-start;
  width: fit-content;
  padding: 10px 22px 10px 24px;
  font-size: 0.72rem;
}

.panier-banner {
  grid-column: 1 / -1;
  min-height: 280px;
  aspect-ratio: 3.4 / 1;
}

.panier-banner .panier-tile-copy {
  max-width: 42rem;
  padding: 28px 32px 32px;
}

.panier-banner .panier-tile-copy h2 {
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  max-width: 22ch;
}

.panier-stack {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 22px;
  min-height: 540px;
}

.panier-stack .panier-tile {
  flex: 1;
  min-height: 258px;
}

.panier-hero {
  grid-column: 2 / 4;
  min-height: 540px;
}

.panier-hero .panier-tile-copy {
  padding: 28px 32px 32px;
}

.panier-hero .panier-tile-copy h2 {
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  max-width: 18ch;
}

.panier-hero .panier-tile-copy p {
  font-size: 0.95rem;
  max-width: 42ch;
}

.panier-col {
  min-height: 400px;
  aspect-ratio: 3 / 4;
}

/* Responsive */

@media (max-width: 980px) {
  .header-top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
  }

  .header-actions {
    justify-self: center;
    align-items: center;
  }

  .une-grid,
  .bon-plan-layout,
  .panier-grid {
    grid-template-columns: 1fr;
  }

  .focus-grid,
  .gouv-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-focus-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .focus-mosaic,
  .realites-mosaic,
  .tribune-mosaic,
  .bons-plans-mosaic,
  .panier-page-mosaic,
  .emission-hub-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .actu-duo,
  .actu-trio {
    grid-template-columns: 1fr 1fr;
  }

  .droits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .droits-hero {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 16px;
    margin-bottom: 36px;
  }

  .droits-hero-visual {
    width: min(360px, 100%);
  }

  .droits-hero-copy {
    max-width: none;
    margin-left: 0;
    padding-right: 0;
  }

  .droits-hero-copy p {
    max-width: none;
  }

  .droits-code {
    grid-template-columns: 1fr;
    padding: 22px 20px;
    gap: 18px;
    margin-bottom: 40px;
  }

  .cmp-toolbar,
  .cmp-product-head,
  .cmp-product-body,
  .cmp-spots {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

  .cmp-product-win {
    text-align: left;
  }

  .cmp-offer {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .cmp-offer-price {
    grid-column: 2;
    text-align: left;
  }

  .cmp-featured {
    height: 280px;
    min-height: 260px;
  }

  .cmp-card {
    flex-basis: 64%;
    height: 200px;
  }

  .cmp-card-wide {
    flex-basis: 86%;
    height: 220px;
  }

  .cmp-copy {
    max-width: 78%;
  }

  .actu-card-sm {
    aspect-ratio: 16 / 11;
    min-height: 260px;
  }

  .focus-tile.focus-hero,
  .focus-tile.focus-wide,
  .focus-tile.realites-hero,
  .focus-tile.realites-banner {
    grid-column: 1 / -1;
    min-height: 280px;
    aspect-ratio: auto;
  }

  .focus-stack,
  .realites-stack,
  .panier-stack {
    grid-column: 1 / -1;
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .panier-tile.panier-banner,
  .panier-tile.panier-hero {
    grid-column: 1 / -1;
    min-height: 280px;
    aspect-ratio: auto;
  }

  .focus-tile.focus-mid {
    grid-column: auto;
    aspect-ratio: 3 / 4;
  }

  .page-intro-box {
    padding: 28px 24px;
  }

  .tribune-hero-inner {
    grid-template-columns: 0.7fr 1.5fr;
    gap: 24px;
  }

  .tribune-pair {
    grid-column: 1 / -1;
  }

  .bons-plans-mosaic .pub-slot {
    grid-column: 1 / -1;
  }

  .emission-track {
    gap: 12px;
  }

  .video-card {
    flex-basis: 58%;
    height: 210px;
    align-self: stretch;
  }

  .video-card-lg {
    flex-basis: 88%;
    height: 236px;
  }

  .placeholder-bonplan {
    width: 170px;
    height: 340px;
    min-height: 340px;
    margin: 14px 0 0 14px;
  }

  .bon-plan {
    --bon-plan-band-h: 350px;
    min-height: 0;
    height: auto;
    max-width: 100%;
    padding: 0 0 48px;
    gap: 18px;
  }

  .bon-plan-copy {
    padding: 22px 20px 12px 0;
  }

  .bulletin {
    max-width: 280px;
    width: 100%;
    justify-self: end;
    min-height: 0;
  }

  .panier-featured {
    min-height: 380px;
  }

  .video-card-lg .video-card-copy {
    max-width: 90%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }

  .footer-col-brand {
    grid-column: 1 / -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .header-top,
  .main-nav {
    flex-wrap: wrap;
  }

  .nav-list {
    gap: 10px 12px;
    justify-content: flex-start;
  }

  .nav-list a {
    font-size: 0.64rem;
  }

  .search-form,
  .newsletter-form {
    flex-direction: column;
    border-radius: 18px;
  }

  .search-cats {
    min-width: 0;
  }

  .search-cats-btn {
    padding: 14px 16px;
    border-radius: 0;
  }

  .search-go {
    position: static;
    transform: none;
    width: 100%;
    height: 48px;
    border-radius: 0 0 18px 18px;
  }

  .search-go:hover {
    transform: scale(1.02);
  }

  .newsletter-submit {
    width: 100%;
    border-radius: 0 0 18px 18px;
    padding: 14px 22px;
  }

  .focus-grid,
  .gouv-grid,
  .panier-side,
  .home-focus-mosaic,
  .focus-mosaic,
  .focus-stack,
  .realites-mosaic,
  .realites-stack,
  .tribune-mosaic,
  .tribune-pair,
  .bons-plans-mosaic,
  .panier-page-mosaic,
  .emission-hub-mosaic,
  .panier-stack,
  .actu-duo,
  .actu-trio,
  .droits-grid {
    grid-template-columns: 1fr;
  }

  .cmp-spots {
    grid-template-columns: 1fr;
  }

  .droits-card {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .cmp-carousel {
    padding: 0 36px;
  }

  .cmp-featured .cmp-copy,
  .cmp-card .cmp-copy {
    max-width: 90%;
    left: 16px;
  }

  .actu-card-lg,
  .actu-card-sm {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .focus-tile.focus-hero,
  .focus-tile.realites-hero,
  .panier-tile.panier-hero {
    min-height: 360px;
  }

  .focus-tile.focus-wide,
  .focus-tile.realites-banner,
  .panier-tile.panier-banner {
    min-height: 260px;
    aspect-ratio: 16 / 7;
  }

  .focus-tile-copy,
  .panier-tile-copy {
    padding: 22px 20px 24px;
    max-width: 100%;
  }

  .panier-col {
    aspect-ratio: 16 / 10;
    min-height: 240px;
  }

  .realites-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tribune-hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .tribune-hero-title {
    max-width: none;
  }

  .bon-plan {
    --bon-plan-band-h: auto;
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    height: auto;
    padding: 0 0 40px;
  }

  .bon-plan::before {
    height: auto;
    top: 0;
    bottom: 28px;
    border-radius: 0;
  }

  .placeholder-bonplan {
    width: calc(100% - 36px);
    min-height: 190px;
    height: 190px;
    margin: 16px auto 0;
  }

  .bon-plan-copy {
    height: auto;
    padding: 16px 22px 18px;
  }

  .bon-plan .btn {
    top: auto;
    bottom: 28px;
    right: 22px;
    transform: translateY(50%);
  }

  .bon-plan:hover .btn {
    transform: translateY(calc(50% - 3px)) scale(1.05);
  }

  .bulletin {
    max-width: 320px;
    justify-self: center;
    min-height: 0;
  }

  .placeholder-hero,
  .une-slider,
  .une-slides {
    min-height: 220px;
  }

  .section {
    padding: 40px 0;
  }

  .footer-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .contact-card,
  .contact-form-card,
  .legal-card {
    padding: 24px 20px;
  }
}

/* Entrées animées */

.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  animation: none;
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-56px);
}

.reveal-right {
  transform: translateX(56px);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
  animation: fade-in-up 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay, 0s);
}

.reveal-left.is-visible {
  animation-name: fade-in-left;
}

.reveal-right.is-visible {
  animation-name: fade-in-right;
}

@keyframes fade-in-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-left {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.une-content .btn,
.bon-plan .btn,
.bulletin .btn {
  transition: background 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.une-content .btn:hover {
  transform: translateY(-3px) scale(1.05);
}

.bulletin .btn:hover {
  transform: translateY(calc(50% - 3px)) scale(1.05);
}

.focus .card .placeholder {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease;
}

.focus .card:hover .placeholder {
  transform: scale(1.03);
}

/* Article — modèle adaptable */

main.page-article {
  background: var(--white);
  padding: 28px 0 72px;
}

main.page-article .container {
  width: min(100% - 40px, 1180px);
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.article-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.article-crumb a:hover {
  color: var(--red);
}

.article-hero-block {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: start;
  margin-bottom: 36px;
}

.article-title-xl {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 14px;
}

.article-lead {
  font-size: 1.05rem;
  color: #3a3a3a;
  max-width: 58ch;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 18px 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.article-offer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 16px;
}

.article-badge {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--yellow, #f5c518);
  color: #111;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-price-old {
  font-size: 0.9rem;
  color: #888;
  text-decoration: line-through;
}

.article-price-new {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--red, #c4161c);
}

.article-hero-media {
  min-height: 280px;
  border-radius: 18px;
  background: #d8d8d8;
  overflow: hidden;
}

.article-hero-media img,
.article-hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
}

.article-body h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
}

.article-body p {
  margin-bottom: 14px;
  color: #2f2f2f;
}

.article-body ul {
  margin: 0 0 16px 1.1rem;
  list-style: disc;
}

.article-related {
  margin-top: 48px;
}

.article-related h2 {
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  overflow: hidden;
  min-height: 0;
  padding: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
  text-decoration: none;
}

.article-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-related-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #d8d8d8;
  overflow: hidden;
}

.article-related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-related-card h3 {
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 12px 14px 6px;
  color: var(--ink);
}

.article-related-card p {
  font-size: 0.82rem;
  color: #666;
  margin: 0 14px 14px;
  line-height: 1.4;
}

.article-related a {
  display: block;
  background: var(--grey-bg);
  border-radius: 14px;
  padding: 16px;
  min-height: 140px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.article-related a.article-related-card {
  background: #fff;
  padding: 0;
  min-height: 0;
}

.article-related a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-related span {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.article-body li {
  margin-bottom: 8px;
}

.article-aside {
  position: sticky;
  top: 18px;
  display: grid;
  gap: 16px;
}

.article-panel {
  background: var(--grey-bg);
  border-radius: 16px;
  padding: 18px 18px 16px;
}

.article-panel h3 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.article-panel ol {
  padding-left: 18px;
}

.article-panel li + li {
  margin-top: 8px;
}

.page-article[data-layout="dossier"] .article-hero-block {
  grid-template-columns: 0.9fr 1.1fr;
}

.page-article[data-layout="guide"] .article-hero-media {
  min-height: 220px;
}

.guide-steps {
  display: grid;
  gap: 14px;
  margin: 18px 0 24px;
}

.guide-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 14px;
}

.guide-step b {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .article-hero-block,
  .article-layout,
  .article-related-grid {
    grid-template-columns: 1fr;
  }

  .article-aside {
    position: static;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
