/* =========================================================
   CIRKUL'R — PAGE AGENDA
   Chargé uniquement sur agenda.html, en plus de style.css.
   ========================================================= */

.agenda{
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 90px) clamp(20px, 6vw, 40px) clamp(70px, 9vw, 110px);
}

/* ---------- En-tête de page ---------- */

.agenda__entete{
  text-align: center;
  margin-bottom: 0.4em;
}

.agenda__compagnie{
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 0.8em;
}

.agenda__titre{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--parchemin);
}

.agenda__annee{
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.15em;
  color: var(--or-vif);
  margin-bottom: clamp(40px, 6vw, 64px);
}

/* ---------- Liste des dates ---------- */

.agenda__liste{
  list-style: none;
}

.agenda__item{
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: clamp(16px, 3vw, 32px);
  align-items: baseline;
  padding: clamp(20px, 3vw, 28px) 0;
  border-bottom: 1px solid rgba(217,179,96,0.15);
}

.agenda__item:first-child{
  padding-top: 0;
}

.agenda__item:last-child{
  border-bottom: none;
}

.agenda__date{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  letter-spacing: 0.03em;
  color: var(--or-vif);
  line-height: 1.3;
}

.agenda__spectacle{
  font-family: var(--font-corps);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--parchemin);
  margin-bottom: 0.2em;
}

.agenda__precision{
  font-weight: 400;
  font-style: italic;
  color: rgba(243,233,214,0.7);
}

.agenda__lieu{
  font-family: var(--font-corps);
  font-size: 1.3rem;
  color: rgba(243,233,214,0.7);
  text-align: right;
  white-space: nowrap;
}

.agenda__lieu-inline{
  font-family: var(--font-corps);
  font-size: 1rem;
  color: rgba(243,233,214,0.7);
}

/* ---------- Responsive ---------- */

@media (max-width: 560px){
  .agenda__item{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .agenda__lieu{
    text-align: left;
    white-space: normal;
  }
}
