.list-seance li {
  text-align: center;
}

/* =========================
   CTA DOCTOLIB
========================= */

.rdv-rapide {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.cta-rdv-qr-code {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;

  padding: 2rem;
  border-radius: 1.5rem;

  max-width: 340px;
  width: 100%;

  border: 1px solid rgba(0, 0, 0, 0.05);

  background: linear-gradient(180deg, white, rgba(248, 248, 248, 0.8));

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.cta-rdv-qr-code:hover {
  transform: translateY(-4px);

  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
}

.cta-rdv-qr-code p {
  margin: 0;
  font-weight: 600;
  font-size: 1.05rem;
}

.doctolib-main {
  width: 170px;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;

  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.08));
}

.doctolib-main:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* =========================
   IMAGES
========================= */

aside {
  position: sticky;
  top: 110px;

  align-self: start;

  display: flex;
  justify-content: center;
}

/* =========================
   LIENS
========================= */

.section > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-top: 1rem;
  padding: 0.9rem 1.5rem;

  border-radius: 999px;

  background: var(--primary);
  color: white;

  font-weight: 600;
  text-decoration: none;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.section a:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

/* =========================
   LANGUES
========================= */

.lang {
  white-space: nowrap;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
  .cta-rdv-qr-code {
    width: 100%;
  }

  .doctolib-main {
    width: 150px;
  }

  summary {
    padding: 1rem 1.2rem;
  }

  aside {
    position: static;
  }
}
