/* public/css/homepage/section-the-gesture.css
   ------------------------------------------
   Aligné visuellement avec :
   section-cinema-utile-dynamique.css
   ------------------------------------------ */

.section-the-gesture {
  --gap-md: 14px;
  --gap-lg: 28px;

  position: relative;
  padding: clamp(54px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 248, 240, .08), transparent 30%),
    radial-gradient(circle at 82% 72%, rgba(139, 0, 0, .22), transparent 36%),
    #03001E;
  color: #fef8f0;
  overflow: hidden;
}

/* Header */
.section-the-gesture .section-title {
  max-width: 900px;
  margin: 0 0 var(--gap-lg);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  line-height: 0.98;
  color: #fef8f0;
  letter-spacing: -0.03em;
}

/* Expander shell */
.section-the-gesture .expander {
  margin-bottom: var(--gap-lg);
  padding: clamp(1.35rem, 4vw, 2.2rem);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
  box-shadow: 0 18px 46px rgba(0,0,0,.22);
}

.section-the-gesture .expander-summary {
  display: flex;
  align-items: flex-start;
  gap: var(--gap-md);
}

.section-the-gesture .expander-summary .teaser {
  flex: 1;
  color: rgba(254,248,240,.84);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
}

.section-the-gesture .expander-cta {
  margin-left: auto;
}

/* Poem container */
#the-gesture .expander-content {
  width: 100%;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.2rem;
  padding: clamp(1.35rem, 4vw, 2rem);
  border-left: 3px solid rgba(139,0,0,.72);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(139,0,0,.16), rgba(255,255,255,.035));
}

/* Poem paragraph: keep \n line breaks, NO hyphenation */
#the-gesture .gesture-poem {
  white-space: pre-line;
  line-height: 1.7;
  margin: 0 0 14px;
  color: rgba(254,248,240,.84);
  font-size: clamp(1rem, 1.55vw, 1.12rem);

  word-break: normal;
  overflow-wrap: normal;

  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

#the-gesture .gesture-poem:last-child {
  margin-bottom: 0;
}

/* Accent verbs */
#the-gesture .gesture-verb {
  font-weight: 800;
  color: #fef8f0;
  border-bottom: 2px solid rgba(139, 0, 0, 0.95);
  padding-bottom: 2px;
}

/* Carousel headers */
.section-the-gesture .carousel-block-header {
  margin: var(--gap-lg) 0 var(--gap-md);
}

.section-the-gesture .carousel-block-title {
  color: #fef8f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.25;
  overflow-wrap: break-word;
}

.section-the-gesture .carousel-block-subtitle {
  color: rgba(254,248,240,.76);
  font-style: italic;
  line-height: 1.6;
  margin: 0.8em 0 2em;
  opacity: 1;
}

/* Mobile */
@media (max-width: 768px) {
  .section-the-gesture {
    --gap-lg: 24px;
    padding: 48px 0;
  }

  .section-the-gesture .section-title {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .section-the-gesture .expander {
    padding: 1.35rem;
    border-radius: 22px;
  }

  #the-gesture .expander-content {
    max-width: 100%;
    padding: 1.35rem 1.2rem;
    border-radius: 20px;
  }
}