/* La Ronde hub (page dédiée + dashboard). Styles isolés. */

.cd-ronde-hub {
  max-width: 920px;
  margin: 24px auto 48px;
  padding: 0 16px;
}

.cd-ronde-hub__hero {
  border: 1px solid rgba(30, 58, 95, .10);
  border-radius: 20px;
  background:
    radial-gradient(900px 300px at 0% 0%, rgba(232, 74, 127, .10), transparent 60%),
    radial-gradient(900px 300px at 100% 0%, rgba(107, 76, 245, .10), transparent 60%),
    #fff;
  box-shadow: 0 18px 40px rgba(30, 58, 95, .06);
  padding: 18px 18px 16px;
}

.cd-ronde-hub__kicker {
  font-weight: 900;
  opacity: .75;
  letter-spacing: .25px;
}

.cd-ronde-hub__title {
  margin: 6px 0 6px;
  font-size: 36px;
  line-height: 1.05;
}

.cd-ronde-hub__lead {
  margin: 0;
  opacity: .86;
  max-width: 70ch;
}

.cd-ronde-hub__section {
  margin-top: 18px;
}

.cd-ronde-hub__section h2,
.cd-ronde-hub__section h3 {
  margin: 0 0 10px;
}

.cd-ronde-hub__stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cd-ronde-hub__card {
  border: 1px solid rgba(30, 58, 95, .10);
  border-radius: 16px;
  background: rgba(255, 255, 255, .75);
  padding: 14px;
}

.cd-ronde-hub__card--empty {
  background:
    radial-gradient(900px 220px at 0% 0%, rgba(232, 74, 127, .08), transparent 60%),
    rgba(255, 255, 255, .88);
}

.cd-ronde-hub__meta {
  color: #334155;
  opacity: .90;
  margin: 0;
  line-height: 1.5;
}

.cd-ronde-hub__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(30, 58, 95, .14);
  background: #fff;
  font-weight: 900;
  font-size: 12px;
  white-space: nowrap;
}

.cd-ronde-hub__badge--pink {
  border-color: rgba(232, 74, 127, .35);
  box-shadow: 0 12px 24px rgba(232, 74, 127, .10);
}

.cd-ronde-hub__dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-top: 10px;
}

.cd-ronde-hub__dl div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cd-ronde-hub__dl dt {
  font-size: 12px;
  font-weight: 900;
  opacity: .8;
}

.cd-ronde-hub__dl dd {
  margin: 0;
  font-weight: 800;
}

.cd-ronde-hub__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cd-ronde-hub__steps {
  margin: 14px 0 0;
  padding-left: 1.15rem;
  color: #334155;
  line-height: 1.6;
}

.cd-ronde-hub__steps li + li {
  margin-top: 6px;
}

.cd-ronde-stats__head h2 {
  margin: 0 0 6px;
}

.cd-ronde-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.cd-ronde-stats__card {
  border: 1px solid rgba(30, 58, 95, .10);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(30, 58, 95, .05);
  padding: 14px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.cd-ronde-stats__value {
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  color: #0f172a;
}

.cd-ronde-stats__label {
  color: #475569;
  font-weight: 700;
  line-height: 1.35;
}

.cd-ronde__ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 2px solid rgba(30, 58, 95, .22);
  background: #fff;
  color: #0b1f4d;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 640px) {
  .cd-ronde-hub__title {
    font-size: 28px;
  }

  .cd-ronde-hub__dl {
    grid-template-columns: 1fr;
  }

  .cd-ronde-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cd-ronde-stats__card {
    min-height: 108px;
  }
}

@media (max-width: 420px) {
  .cd-ronde-stats__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cd-ronde-stats__value {
    font-size: 30px;
  }
}

