/* ——— Subpage hero ——— */
.hero {
  min-height: auto;
  padding: 7rem 2rem 3rem;
}

.hero-inner {
  gap: 1.5rem;
  max-width: 640px;
  text-align: center;
  align-items: center;
}

.hero h1 {
  font-size: 2rem;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 440px;
}

/* ——— Gauge list ——— */
.gauge-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 0.5rem;
}

.gauge-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gauge-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.gauge-label {
  font-family: 'DM Serif Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
}

.gauge-value {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gauge-value--sans { color: var(--sans); }
.gauge-value--avec { color: var(--avec); }
.gauge-value--ambigu { color: var(--ambigu); }

.gauge-bar {
  width: 100%;
  height: 6px;
  background: color-mix(in srgb, var(--accent) 20%, transparent);
  border-radius: 3px;
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1s ease;
}

.gauge-fill--sans { background: var(--sans); }
.gauge-fill--avec { background: var(--avec); }
.gauge-fill--ambigu { background: var(--ambigu); }

.gauge-note {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* ——— Source mention ——— */
.section-source {
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: 1rem;
  line-height: 1.6;
}

.section-source a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.section-source a:hover {
  color: var(--secondary);
}

/* ——— Mobile ——— */
@media (max-width: 640px) {
  .hero {
    padding: 5rem 1.2rem 2rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .gauge-label {
    font-size: 0.95rem;
  }

  .gauge-note {
    font-size: 0.82rem;
  }
}
