.experience-card {
  --experience-progress: 0%;
  margin: 18px 0;
  padding: 22px;
  border: 1px solid var(--line, #dfe5e8);
  border-radius: 20px;
  background: #fff;
  color: var(--navy, #0b2b43);
}
.experience-card[hidden], .experience-card [hidden] { display: none !important; }
.experience-heading-row { display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px 18px; }
.experience-card h3, .experience-card h3 label { margin: 0; color: var(--navy, #0b2b43); font-size: 1.06rem; font-weight: 800; line-height: 1.4; }
.experience-card .experience-help { margin: 8px 0 14px; max-width: 78ch; color: var(--muted, #667784); font-size: .86rem; line-height: 1.55; }
.experience-scale { max-width: 720px; margin: 0; }
.experience-card .experience-slider {
  display: block;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  width: calc(100% - 20px);
  height: 44px;
  margin: 0 10px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}
.experience-slider::-webkit-slider-runnable-track { height: 6px; border-radius: 8px; background: linear-gradient(to right, #b98b52 0%, #b98b52 var(--experience-progress), #dfe5e8 var(--experience-progress), #dfe5e8 100%); }
.experience-slider::-moz-range-track { height: 6px; border-radius: 8px; background: linear-gradient(to right, #b98b52 0%, #b98b52 var(--experience-progress), #dfe5e8 var(--experience-progress), #dfe5e8 100%); }
.experience-slider::-webkit-slider-thumb { appearance: none; -webkit-appearance: none; box-sizing: border-box; width: 24px; height: 24px; margin-top: -9px; border: 3px solid #fff; border-radius: 50%; background: #0b2b43; box-shadow: 0 0 0 1px #0b2b43; }
.experience-slider::-moz-range-thumb { box-sizing: border-box; width: 24px; height: 24px; border: 3px solid #fff; border-radius: 50%; background: #0b2b43; box-shadow: 0 0 0 1px #0b2b43; }
.experience-card:not(.is-selected) .experience-slider::-webkit-slider-thumb { opacity: 0; }
.experience-card:not(.is-selected) .experience-slider::-moz-range-thumb { opacity: 0; }
.experience-steps { display: flex; justify-content: space-between; gap: 0; }
.experience-card .experience-step { flex: 0 1 44px; width: 44px; min-width: 0; height: 44px; margin: 0; padding: 0; border: 1px solid transparent; border-radius: 50%; background: transparent; color: var(--navy, #0b2b43); font: inherit; font-weight: 800; cursor: pointer; touch-action: manipulation; }
.experience-card .experience-step:hover { background: #f7f1e8; }
.experience-card .experience-step[aria-pressed="true"] { background: #0b2b43; color: #fff; }
.experience-endpoints { display: flex; justify-content: space-between; gap: 16px; margin-top: 3px; color: var(--muted, #667784); font-size: .76rem; }
.experience-endpoints span:last-child { text-align: right; }
.experience-result { margin-top: 16px; padding: 14px 16px; border-radius: 12px; background: #f7f4ee; }
.experience-result strong { display: block; font-size: .94rem; line-height: 1.45; }
.experience-card .experience-result p { margin: 4px 0 0; color: var(--muted, #667784); font-size: .86rem; line-height: 1.5; }
.experience-card .experience-clear { display: inline-block; min-height: 44px; margin: 6px 0 0; padding: 8px 0; border: 0; background: transparent; color: var(--navy, #0b2b43); font: inherit; font-size: .82rem; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; }
.experience-card .experience-clear:hover { color: #9b7342; }
.experience-card button:focus-visible, .experience-card .experience-slider:focus-visible { outline: 3px solid #d5ae76; outline-offset: 3px; }
@media (max-width: 620px) {
  .experience-card { padding: 18px 14px; }
  .experience-card .experience-help { font-size: .82rem; }
  .experience-scale { width: 100%; }
  .experience-result { padding: 12px; }
}

.experience-card .experience-help strong { color: var(--navy, #0b2b43); font-weight: 800; }
