.titre {
  text-align: center;
  padding: 60px 24px 20px;
  border-bottom: 1px solid var(--card-border);
}

.separator {
  width: 100%;
  height: 30px;
}

.text_container {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 60px;
  padding-left: 24px;
  padding-right: 24px;
  text-align: justify;
}

.text_container h2,
.text_container h3 {
  font-size: 22px;
}

.cercle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 50%;
  width: 150px;
  height: 150px;
  text-decoration: none;
  transition: transform 0.3s ease, border-color 0.3s ease;
  /* Passive idle glow -- signals "clickable" even before the user hovers. */
  animation: bubble-breathe 2.6s ease-in-out infinite;
}

.cercle span {
  text-align: center;
  line-height: 1.25;
  padding: 0 10px;
}

a:hover .cercle {
  animation-play-state: paused;
  transform: translateY(-4px);
  border-color: var(--gold);
}

@keyframes bubble-breathe {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 175, 110, 0.25); }
  50% { box-shadow: 0 0 20px 3px rgba(212, 175, 110, 0.25); }
}

.ligne {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.ligne a {
  text-decoration: none;
}
