/* HERO bannière */
    .hero-cine {
      position: relative;
      width: 100%;
      overflow: hidden;
    }

    .hero-img {
      width: 100%;
      height: clamp(220px, 35vw, 420px);
      object-fit: cover;
      display: block;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
      display: flex;
      align-items: flex-end;
      padding: 2rem;
    }

    .hero-title {
      color: #fff;
      margin: 0;
      font-weight: 700;
      font-family: 'Cinzel', serif;
    }

    .hero-sub {
      color: #eaeaea;
      margin: .25rem 0 0 0;
      font-family: 'Quicksand', sans-serif;
    }

    /* Texte principal */
    .apropos-content p {
      font-family: 'Quicksand', sans-serif;
      font-size: 1.05rem;
      text-align: justify;
      line-height: 1.7;
    }

    .apropos-content ul {
      font-family: 'Quicksand', sans-serif;
      font-size: 1.05rem;
      line-height: 1.7;
    }

    /* Citation */
    blockquote {
      border-left: 4px solid #b22222;
      padding-left: 1rem;
      font-style: italic;
      margin-top: 2rem;
      font-family: 'Quicksand', sans-serif;
    }

    blockquote footer {
      font-size: .9rem;
      color: #666;
      margin-top: .25rem;
    }

.btn-cinema-discret {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
  font-family: 'Quicksand', sans-serif;
  color: #333;
  background: #f8f8f8;
  border: 1px dashed #b22222; /* effet pellicule */
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cinema-discret:hover {
  background: #b22222;
  color: #fff;
  border-color: #8b1a1a;
}