/* ========================================
   SINGLE THÉÂTRE - STYLES
   ======================================== */

/* ========================================
   SECTION 1 : HERO CAROUSEL
   ======================================== */

.hero-spectacle {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background: var(--color-surface);
  position: relative;
}

/* Wrapper — superpose les slides */
.hero-carousel-wrapper {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-areas: "slide";
  width: 100%;
  margin-inline: auto;
  min-height: 40vh;
  max-height: 85vh;

  /* Espace scénique */
  background: var(--color-typo);
  border: 1px solid rgba(40, 22, 10, 0.08);
  border-radius: 2px;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-inline: 1.5rem;
  box-shadow:
    inset 0 0 60px rgba(0, 0, 0, 0.4),
    var(--shadow-xl);
}

/* Chaque slide — flex au lieu de grid */
.hero-slide {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  grid-area: slide;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  border: 1px solid var(--color-border-light);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 40vh;
  max-height: 80vh;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.hero-slide.theme-platanes {
  background: linear-gradient(
    135deg,
    #e8f5ea 0%,
    #3a8c4e 28%,
    #1e5c30 60%,
    #0f3320 100%
  );
  border-color: rgba(74, 159, 92, 0.35);
}

.hero-slide.theme-10eme {
  background: linear-gradient(
    135deg,
    #f0c4bc 0%,
    #c44535 25%,
    #8c2418 58%,
    #4a100a 100%
  );
  border-color: rgba(215, 99, 83, 0.35);
}

.hero-slide.theme-durenco {
  background: linear-gradient(
    135deg,
    #fce8cc 0%,
    #e07828 25%,
    #a84e10 58%,
    #5a2a08 100%
  );
  border-color: rgba(244, 154, 70, 0.35);
}

/* ========================================
   IMAGE
   ======================================== */

.hero-spectacle-image {
  flex: 0 0 35%;
  overflow: hidden;
  background: transparent;
  display: flex;
  align-items: stretch;
}

.hero-spectacle-image img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-position: center top;
  display: block;
}

/* ========================================
   CONTENU TEXTE
   ======================================== */

.hero-spectacle-text {
  flex: 1;
  padding: 2.25rem 2rem 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 1rem;
  box-sizing: border-box;
}

.hero-eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
  padding-inline: 0.4rem;
  border-radius: 5px;
  border: none;
  background: rgba(253, 247, 236, 0.18);
  color: var(--color-typo);
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
  box-shadow: var(--shadow-xl);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-eyebrow:hover {
  transform: translateY(-0.125rem);
  box-shadow: var(--shadow-xxl);
  color: var(--color-typo);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--color-typo);
}

.hero-accroche {
  margin: 0;
  color: rgba(253, 247, 236, 0.85);
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(253, 247, 236, 0.3);
}

.hero-meta-item--cie {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(253, 247, 236, 0.15);
  margin-bottom: 0.25rem;
}

.hero-meta-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: var(--font-size-sm);
}

.hero-meta-item strong {
  min-width: 5rem;
  font-weight: 600;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-typo);
}

.hero-meta-item span {
  color: rgba(253, 247, 236, 0.85);
}

.hero-slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.hero-carousel-prev,
.hero-carousel-next {
  display: none;
}

.hero-carousel-dots {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.hero-carousel-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0;
  position: relative;
}

.hero-carousel-dot.theme-platanes {
  background: rgba(46, 125, 50, 0.25);
}
.hero-carousel-dot.theme-10eme {
  background: rgba(192, 57, 43, 0.25);
}
.hero-carousel-dot.theme-durenco {
  background: rgba(230, 126, 34, 0.25);
}

.hero-carousel-dot.active.theme-platanes {
  background: #2e7d32;
  width: 2.5rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(46, 125, 50, 0.35);
}
.hero-carousel-dot.active.theme-10eme {
  background: #c0392b;
  width: 2.5rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.35);
}
.hero-carousel-dot.active.theme-durenco {
  background: #e67e22;
  width: 2.5rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.35);
}

.hero-carousel-dot.active::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid currentColor;
  opacity: 0;
  animation: dotPulse 2s ease-in-out infinite;
}

.hero-carousel-dot.active.theme-platanes::before {
  color: #2e7d32;
}
.hero-carousel-dot.active.theme-10eme::before {
  color: #c0392b;
}
.hero-carousel-dot.active.theme-durenco::before {
  color: #e67e22;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.3);
  }
}

/* ========================================
   RESPONSIVE — SECTION 1 HERO
   ======================================== */

@media (min-width: 1440px) {
  .hero-carousel-wrapper {
    max-width: 1200px;
  }
  .hero-spectacle {
    padding-block: 2rem;
  }
}

@media (max-width: 1280px) {
  .hero-carousel-wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-inline: 1.5rem;
  }
  .hero-spectacle {
    padding-block: 3.5rem;
  }
  .hero-spectacle-text {
    padding: 2rem 1.75rem 2rem 1.5rem;
  }
  .hero-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
  }
}

@media (max-width: 1024px) {
  .hero-carousel-wrapper {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-inline: 0.8rem;
  }
  .hero-spectacle {
    padding-block: 3rem;
  }
  .hero-spectacle-image {
    flex: 0 0 38%;
  }
  .hero-spectacle-text {
    padding: 1.75rem 1.5rem;
    gap: 0.75rem;
  }
  .hero-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
  }
  .hero-accroche {
    font-size: var(--font-size-xs);
  }
  .hero-meta-item {
    font-size: var(--font-size-xs);
  }
  .hero-meta-item strong {
    min-width: 4rem;
  }
}

@media (max-width: 768px) {
  .hero-carousel-wrapper {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    padding-inline: 0.8rem;
  }
  .hero-spectacle {
    padding-block: 1.5rem;
  }
  .hero-spectacle-image {
    flex: 0 0 42%;
  }
  .hero-spectacle-text {
    padding: 1.25rem 1.25rem 1.25rem 1rem;
    gap: 0.6rem;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
  }
  .hero-title {
    font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  }
  .hero-accroche {
    display: none;
  }
  .hero-meta {
    gap: 0.35rem;
  }
  .hero-meta-item {
    flex-direction: column;
    gap: 0.1rem;
  }
  .hero-meta-item strong {
    min-width: auto;
  }
  .hero-slide-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .hero-slide-buttons .btn-primary {
    width: 100%;
    text-align: center;
    padding-block: 0.625rem;
    font-size: 0.75rem;
  }
  .hero-carousel-dots {
    gap: 0.75rem;
  }
}

@media (max-width: 500px) {
  .hero-carousel-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-inline: 0.5rem;
  }
  .hero-spectacle-image {
    flex: 0 0 55%;
    aspect-ratio: 2 / 3;
  }
  .hero-spectacle-text {
    padding: 1rem 0.75rem;
    gap: 0.5rem;
  }
  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }
  .hero-title {
    font-size: clamp(0.95rem, 4vw, 1.2rem);
  }
  .hero-meta {
    display: flex;
  }
  .hero-slide-buttons .btn-primary:first-child {
    display: none;
  }
  .hero-slide-buttons {
    gap: 0.4rem;
  }
  .hero-slide-buttons .btn-primary {
    width: 100%;
    text-align: center;
    padding-block: 0.5rem;
    padding-inline: 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 400px) {
  .hero-spectacle-image {
    flex: 0 0 55%;
    aspect-ratio: 2 / 3;
  }
  .hero-spectacle-text {
    padding: 0.75rem 0.625rem;
    gap: 0.4rem;
  }
  .hero-eyebrow {
    font-size: 0.55rem;
    letter-spacing: 0.08em;
  }
  .hero-title {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
    margin-bottom: 0;
  }
  .hero-accroche {
    display: none;
  }
  .hero-meta {
    display: flex;
    gap: 0.25rem;
    padding-top: 0.35rem;
  }
  .hero-meta-item {
    flex-direction: column;
    gap: 0.1rem;
  }
  .hero-meta-item strong {
    font-size: 0.55rem;
  }
  .hero-meta-item span {
    font-size: 0.7rem;
  }
  .hero-slide-buttons .btn-primary:first-child {
    display: none;
  }
  .hero-slide-buttons {
    gap: 0.35rem;
  }
  .hero-slide-buttons .btn-primary {
    width: 100%;
    text-align: center;
    padding-block: 0.4rem;
    padding-inline: 0.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.04em;
  }
}

/* ========================================
   SECTION 2 : INTRO — ONGLETS PROJET
   ======================================== */

.theatre-intro-section {
  padding-block: 5rem;
  padding-inline: 1.5rem;
  background: var(--color-hero-grad-mid);
  border-top: 1px solid var(--color-border-light);
}

.theatre-intro-content {
  width: min(var(--container-width), 100%);
  margin-inline: auto;
}

.theatre-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--color-typo);
  margin-bottom: 2rem;
  letter-spacing: -0.03em;
  line-height: var(--line-height-tight);
}

.theatre-tabs-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--color-border-light);
  padding-bottom: 0;
}

.theatre-tab-button {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 0.75rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--color-typo);
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color var(--transition-base),
    border-color var(--transition-base);
  margin-bottom: -1px;
}

.theatre-tab-button:hover {
  color: var(--color-text-muted);
}

.theatre-tab-button.is-active {
  color: var(--color-typo);
  border-bottom-color: var(--color-accent);
}

.theatre-tab-panel {
  display: none;
}

.theatre-tab-panel.is-active {
  display: block;
}

.theatre-intro-text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--color-typo);
  max-width: 50rem;
}

/* ========================================
   RESPONSIVE — SECTION 2
   ======================================== */

@media (max-width: 1024px) {
  .theatre-intro-section {
    padding-block: 4rem;
  }
}

@media (max-width: 768px) {
  .theatre-tabs-nav {
    gap: 0;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    /* Fondu gauche/droite pour signaler le scroll */
    -webkit-mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
    );
  }

  .theatre-tabs-nav::-webkit-scrollbar {
    display: none;
  }

  .theatre-tab-button {
    padding: 0.75rem 1rem;
    font-size: var(--font-size-sm);
    white-space: nowrap;
  }
}

@media (max-width: 500px) {
  .theatre-intro-section {
    padding-block: 2.5rem;
  }

  .theatre-tab-button {
    padding: 0.625rem 0.75rem;
    font-size: var(--font-size-xs);
  }

  .theatre-intro-text {
    font-size: var(--font-size-sm);
  }
}

/* ========================================
   SECTION 3 : SPECTACLES À VENIR
   ======================================== */

.theatre-shows-section {
  padding-block: 5rem;
  padding-inline: 1.5rem;
  border-top: 1px solid var(--color-border-light);
  background: transparent;
}

.theatre-shows-header {
  width: min(var(--container-width), 100%);
  margin-inline: auto;
  margin-bottom: 2rem;
}

.theatre-shows-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--color-typo-default);
  letter-spacing: -0.03em;
  line-height: var(--line-height-tight);
  margin-bottom: 0.5rem;
}

.theatre-shows-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

/* ── Wrapper ── */
.theatre-shows-grid-wrapper {
  width: min(var(--container-width), 100%);
  margin-inline: auto;
  border-radius: 2px;
  margin-top: 2rem;
  border: 1px solid rgba(253, 247, 236, 0.1);
  padding: 2rem 1.5rem;
}

/* ── Grid desktop — 3 colonnes ── */
.theatre-shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ========================================
   CARD — LAYOUT HORIZONTAL
   ======================================== */

.theatre-show-card {
  background: var(--color-theme);
  border: 1px solid var(--color-border-theme, var(--color-border-light));
  border-radius: 5px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-smooth),
    transform var(--transition-base);
}

.theatre-show-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-2px);
}

.theatre-show-card-link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  text-decoration: none;
  color: var(--color-text-muted);
  height: 100%;
}

.theatre-show-image {
  flex: 0 0 45%;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: transparent;
  position: relative;
}

.theatre-show-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-smooth);
}

.theatre-show-card:hover .theatre-show-image img {
  transform: scale(1.04);
}

.theatre-show-content {
  flex: 1;
  padding: 0.875rem 0.75rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 0.4rem;
  min-width: 0;
}

.theatre-show-title {
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  color: #fdf7ec;
  line-height: var(--line-height-tight);
  margin: 0;
  letter-spacing: -0.01em;
}

.theatre-show-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(253, 247, 236, 0.2);
}

.theatre-show-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  font-size: 0.65rem;
}

.theatre-show-meta-item strong {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-typo);
  font-size: 0.6rem;
  line-height: var(--line-height-tight);
}

.theatre-show-meta-item span {
  color: rgba(253, 247, 236, 0.85);
}

.theatre-show-footer {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(253, 247, 236, 0.2);
  font-size: 0.65rem;
  color: rgba(253, 247, 236, 0.7);
  gap: 0.2rem;
}

.theatre-show-footer .btn-primary {
  width: 100%;
  text-align: center;
  font-size: 0.65rem;
  padding-block: 0.4rem;
  padding-inline: 0.5rem;
  letter-spacing: 0.04em;
}

/* ========================================
   NAV PREV/NEXT — masquée en mode grid
   ======================================== */

.theatre-shows-nav {
  display: none !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .theatre-shows-section {
    padding-block: 4rem;
  }

  .theatre-shows-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .theatre-shows-section {
    padding-block: 3rem;
    padding-inline: var(--container-padding);
  }

  .theatre-shows-grid-wrapper {
    background: transparent;
    border: none;
    background: var(--color-typo);
    box-shadow:
      inset 0 0 60px rgba(0, 0, 0, 0.4),
      var(--shadow-xl);
    border-radius: 0;
    padding: 0;
    margin-top: 1.5rem;
  }

  .theatre-shows-grid {
    display: flex;
    flex-direction: row;
    background: var(--color-typo);
    border: 1px solid rgba(253, 247, 236, 0.1);
    border-radius: 2px;
    box-shadow:
      inset 0 0 60px rgba(0, 0, 0, 0.4),
      var(--shadow-xl);
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 1rem;
    padding: 1.25rem 0.5rem 1.25rem 0.5rem;
    --card-width: 78%;
  }

  .theatre-shows-grid::-webkit-scrollbar {
    display: none;
  }

  .theatre-show-card {
    flex: 0 0 var(--card-width);
    scroll-snap-align: start;
    transform: none !important;
  }

  .theatre-show-image {
    flex: 0 0 45%;
  }

  .theatre-show-content {
    padding: 0.75rem 0.5rem;
  }

  .theatre-show-title {
    font-size: 0.875rem;
    overflow-wrap: break-word;
    word-break: break-word;
  }
}

@media (max-width: 500px) {
  .theatre-shows-section {
    padding-block: 2.5rem;
    padding-inline: 1rem;
  }

  .theatre-shows-grid {
    padding: 0.9rem 0 0.9rem 0.5rem;
    --card-width: 85%;
  }

  .theatre-show-image {
    flex: 0 0 60%;
  }

  .theatre-show-image img {
  object-fit: inherit;
  }

  .theatre-show-content {
    padding: 0.5rem 0.375rem;
    gap: 0.25rem;
  }

  .theatre-show-title {
    font-size: 0.8125rem;
  }

  .theatre-show-footer .btn-primary {
    font-size: 0.55rem;
    padding-block: 0.35rem;
  }
}

/* ========================================
   SECTION 4 : INFOS PRATIQUES
   ======================================== */

.theatre-infos-section {
  padding-block: 5rem;
  padding-inline: 1.5rem;
  background: var(--color-hero-grad-mid);
  border-top: 1px solid var(--color-border-light);
}

.theatre-infos-content {
  width: min(var(--container-width), 100%);
  margin-inline: auto;
}

.theatre-infos-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  color: var(--color-typo);
  margin-bottom: 3rem;
  letter-spacing: -0.03em;
  line-height: var(--line-height-tight);
}

.theatre-infos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.theatre-infos-block {
  background: var(--color-bg);
  border: 1px solid var(--color-border-card, var(--color-border-light));
  border-radius: 5px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition:
    box-shadow var(--transition-smooth),
    transform var(--transition-base);
}

.theatre-infos-block:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-xl);
}

.theatre-infos-block h3 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-typo-default);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

.theatre-infos-block p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 0.5rem;
}

.theatre-infos-block a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition-base);
}

.theatre-infos-block a:hover {
  color: var(--color-primary);
}

/* ========================================
   RESPONSIVE — SECTION 4 ACCORDION MOBILE
   ======================================== */

@media (max-width: 1024px) {
  .theatre-infos-section {
    padding-block: 4rem;
  }

  .theatre-infos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .theatre-infos-section {
    padding-block: 3rem;
    padding-inline: 0;
  }

  .theatre-infos-content {
    padding-inline: var(--container-padding);
  }

  .theatre-infos-title {
    margin-bottom: 1.5rem;
  }

  .theatre-infos-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--color-border-card, var(--color-border-light));
    border-radius: 5px;
    overflow: hidden;
  }

  .theatre-infos-block {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid var(--color-border-card, var(--color-border-light));
    padding: 0;
    box-shadow: none;
    transform: none !important;
  }

  .theatre-infos-block:last-child {
    border-bottom: none;
  }

  .theatre-infos-block h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    padding: 1.25rem;
    cursor: pointer;
    user-select: none;
    transition: color var(--transition-base);
  }

  .theatre-infos-block h3::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.6;
    transition: transform 0.25s ease;
    flex-shrink: 0;
    margin-left: 1rem;
  }

  .theatre-infos-block.is-open h3::after {
    transform: rotate(180deg);
  }

  .theatre-infos-block-body {
    display: none;
    padding: 0 1.25rem 1.25rem;
  }

  .theatre-infos-block.is-open .theatre-infos-block-body {
    display: block;
  }
}

@media (max-width: 500px) {
  .theatre-infos-section {
    padding-block: 2.5rem;
  }
}