/* ================= PRESSE (bande discrète, pas de section-carte) ================= */
.presse {
  padding: 48px 24px;
  text-align: center;
}

.presse__script {
  font-family: var(--f-script);
  font-size: 30px;
  font-weight: 600;
  color: var(--terracotta);
  display: inline-block;
  transform: rotate(-2.5deg);
  margin-bottom: 24px;
}

.presse__liste {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 22px;
  max-width: var(--largeur);
  margin: 0 auto;
}

/* faux logos presse : même encre grise, chacun sa personnalité typographique */
.presse__nom {
  color: #9a938c;
  cursor: default;
  transition: color 0.3s ease;
  line-height: 1;
}
.presse__nom:hover { color: var(--encre); }

/* points terracotta entre les noms */
.presse__nom:not(:last-child)::after {
  content: '·';
  color: var(--terracotta);
  font-family: var(--f-corps);
  font-size: 24px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0;
  margin-left: 22px;
  vertical-align: middle;
}

.presse__nom--quotidien {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}
.presse__nom--echo {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: 23px;
}
.presse__nom--gazette {
  font-family: var(--f-corps);
  font-weight: 300;
  font-size: 22px;
  font-variant: small-caps;
  letter-spacing: 3px;
}
.presse__nom--format {
  font-family: var(--f-corps);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 7px;
}
.presse__nom--telesud {
  font-family: var(--f-display);
  font-size: 19px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Responsive --- */
@media (max-width: 767px) {
  .presse { padding: 40px 18px; }
  .presse__script { font-size: 26px; }
  .presse__liste { gap: 12px 18px; }
  .presse__nom:not(:last-child)::after { margin-left: 18px; }
}

@media (max-width: 479px) {
  .presse__nom:not(:last-child)::after { content: none; }
}
