/* Kansas City page styling follows the city's 2023 flag identity: a red bar over a blue
   bar with a white fountain emblem. Red (#ef483f) and blue (#0283c0) are sampled from the
   city's own flag artwork; everything else stays flat, white, and editorial. */
.kc-page {
  --kc-red: #ef483f;
  --kc-blue: #0283c0;
  --kc-blue-deep: #02679a;
  --kc-white: #ffffff;
  --kc-ink: #14222b;
  --kc-gray-dark: #4c5a64;
  --kc-gray-light: #b9c2c8;
  --kc-gray-lightest: #f2f5f7;
  --kc-mist: #e3f1f8;
  color: var(--kc-ink);
  background: var(--kc-white);
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.kc-page * {
  box-sizing: border-box;
}

.kc-page a {
  color: inherit;
}

.kc-container {
  width: min(1200px, calc(100vw - 40px));
  margin: 0 auto;
}

/* The masthead reads as the flag itself: a red band above a blue band, with the white
   fountain mark sitting in the blue field. */
.kc-masthead {
  border-top: 10px solid var(--kc-red);
  background: var(--kc-blue);
  color: var(--kc-white);
}

.kc-masthead-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 16px 0 14px;
}

.kc-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
}

.kc-fountain svg {
  width: 40px;
  height: 40px;
  display: block;
  fill: var(--kc-white);
}

.kc-wordmark {
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.kc-agency {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.kc-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  --site-header-control-text: var(--kc-white);
  --site-header-control-bg: rgba(255, 255, 255, 0.06);
  --site-header-control-bg-hover: rgba(255, 255, 255, 0.14);
  --site-header-control-bg-active: rgba(255, 255, 255, 0.2);
  --site-header-control-border: rgba(255, 255, 255, 0.28);
}

.kc-nav a {
  color: var(--kc-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kc-nav .site-header-button,
.kc-nav .site-header-icon-button,
.kc-nav .site-header-icon-link {
  color: var(--kc-white);
  text-decoration: none;
}

.kc-nav .site-city-switcher-link {
  color: var(--site-header-panel-text);
  text-decoration: none;
}

.kc-error {
  padding: 28px 0;
}

.kc-error p,
.kc-error h2 {
  margin: 0;
}

.kc-error button {
  margin-top: 12px;
  border: 1px solid var(--kc-ink);
  background: var(--kc-white);
  color: var(--kc-ink);
  padding: 10px 14px;
}

.kc-loading-screen {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background:
    linear-gradient(
      180deg,
      var(--kc-white) 0%,
      var(--kc-white) 58%,
      var(--kc-gray-lightest) 100%
    );
  color: var(--kc-ink);
}

.kc-loading-screen::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 12px;
  background:
    linear-gradient(
      180deg,
      var(--kc-red) 0,
      var(--kc-red) 6px,
      var(--kc-blue) 6px,
      var(--kc-blue) 12px
    );
}

.kc-loading-shell {
  position: relative;
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  padding: clamp(38px, 5.2vh, 56px) 0 clamp(20px, 3vh, 34px);
}

.kc-loading-head,
.kc-loading-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.kc-loading-kicker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.kc-loading-fountain svg {
  width: 20px;
  height: 20px;
  fill: var(--kc-blue);
}

.kc-loading-kicker {
  font-size: 11.9px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kc-blue-deep);
}

.kc-loading-title {
  margin: 0;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: clamp(48px, 8.6vw, 110px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.01em;
  max-width: 11ch;
}

.kc-loading-copy {
  max-width: 48rem;
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--kc-gray-dark);
}

.kc-loading-progress {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  line-height: 0.86;
  font-weight: 700;
  color: var(--kc-ink);
}

.kc-loading-progress-mark {
  color: var(--kc-red);
  font-size: 0.42em;
}

.kc-loading-stage {
  position: relative;
  min-height: min(56vh, 560px);
  overflow: hidden;
  border-top: 2px solid var(--kc-ink);
  border-bottom: 2px solid var(--kc-ink);
  background:
    linear-gradient(
      180deg,
      rgba(2, 131, 192, 0.07) 0%,
      rgba(255, 255, 255, 0.94) 30%,
      rgba(242, 245, 247, 0.96) 100%
    );
}

.kc-loading-stage-rule {
  position: absolute;
  left: 0;
  right: 0;
  height: 7px;
  z-index: 1;
}

.kc-loading-stage-rule.is-top {
  top: 28px;
  background: var(--kc-red);
}

.kc-loading-stage-rule.is-bottom {
  bottom: 28px;
  background: var(--kc-blue);
}

.kc-loading-image-layer {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: min(36vh, 290px);
  overflow: hidden;
}

.kc-loading-image-layer.is-base {
  opacity: 0.12;
}

.kc-loading-image-layer.is-reveal {
  clip-path: inset(0 var(--kc-loader-clip, 100%) 0 0);
  transition: clip-path 240ms ease-out;
}

.kc-loading-image {
  position: absolute;
  left: 50%;
  bottom: 0;
  display: block;
  width: min(1600px, 120vw);
  height: auto;
  max-width: none;
  transform: translateX(-50%);
  user-select: none;
  pointer-events: none;
}

.kc-loading-foot {
  align-items: baseline;
  font-size: 13px;
  line-height: 18px;
  color: var(--kc-gray-dark);
}

.kc-loading-hint {
  color: var(--kc-gray-dark);
  opacity: 0.8;
}

.kc-hero-card {
  padding: 30px 0 34px;
  position: relative;
}

/* The hero rule is the flag in miniature: red over blue. */
.kc-hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background:
    linear-gradient(
      180deg,
      var(--kc-red) 0,
      var(--kc-red) 50%,
      var(--kc-blue) 50%,
      var(--kc-blue) 100%
    );
}

.kc-hero-title {
  margin: 0 0 12px 24px;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: clamp(34px, 5.4vw, 68px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.015em;
  max-width: 21ch;
}

.kc-hero-title span {
  color: var(--kc-red);
}

.kc-hero-dek,
.kc-hero-note {
  margin: 0 0 0 24px;
  max-width: 78ch;
  font-size: 16px;
  line-height: 24px;
  color: var(--kc-gray-dark);
}

.kc-hero-note {
  margin-top: 10px;
}

.kc-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0 24px;
}

.kc-stat {
  border-top: 3px solid var(--kc-ink);
  padding-top: 12px;
}

.kc-stat-label,
.kc-chip span,
.kc-section-tag,
.kc-repeat-head {
  font-size: 11.9px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kc-stat-label {
  color: var(--kc-gray-dark);
}

.kc-stat-value {
  margin-top: 8px;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
}

.kc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0 24px;
}

.kc-chip {
  border: 1px solid var(--kc-gray-light);
  padding: 10px 12px;
  background: var(--kc-gray-lightest);
  min-width: 220px;
}

.kc-chip span {
  display: block;
  color: var(--kc-gray-dark);
}

.kc-chip strong {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  line-height: 20px;
}

.kc-page main {
  padding-top: 8px;
}

.kc-section {
  padding: 36px 0 24px;
}

.kc-section + .kc-section {
  margin-top: 8px;
}

.kc-section-head {
  max-width: 78ch;
}

.kc-section-tag {
  color: var(--kc-blue-deep);
}

.kc-section-head h2 {
  margin: 6px 0 8px;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.012em;
}

.kc-section-head p,
.kc-summary-card p,
.kc-footer p,
.kc-footer li {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--kc-gray-dark);
}

.kc-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.kc-ytd-section {
  padding-top: 24px;
}

.kc-ytd-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.kc-ytd-stat {
  min-height: 124px;
  border-top: 4px solid var(--kc-ink);
  padding-top: 12px;
}

.kc-ytd-stat.is-primary {
  border-color: var(--kc-red);
}

.kc-ytd-label {
  font-size: 11.9px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kc-gray-dark);
}

.kc-ytd-value {
  margin-top: 8px;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: clamp(40px, 5.4vw, 64px);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.kc-ytd-stat.is-primary .kc-ytd-value {
  color: var(--kc-red);
}

.kc-summary-card {
  padding: 14px 0 0;
  border-top: 2px solid var(--kc-gray-light);
}

.kc-summary-card h3 {
  margin: 0 0 6px;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.kc-toggle-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.kc-toggle-button {
  appearance: none;
  border: 1px solid var(--kc-ink);
  background: var(--kc-white);
  color: var(--kc-ink);
  padding: 8px 12px;
  font-family: "Source Sans 3", "Helvetica Neue", sans-serif;
  font-size: 14px;
  line-height: 20px;
  cursor: pointer;
}

.kc-toggle-button.is-active {
  background: var(--kc-blue);
  color: var(--kc-white);
  border-color: var(--kc-blue);
}

.kc-chart-block {
  margin-top: 14px;
  background: none;
}

.kc-chart-shell {
  min-height: 320px;
  padding-top: 8px;
}

.kc-chart-shell.kc-chart-shell-short {
  min-height: 266px;
}

.kc-chart-shell.kc-chart-shell-ytd {
  min-height: 292px;
}

.kc-plot-root {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.kc-plot-root > * {
  width: 100%;
  height: 100%;
}

.kc-echart-root {
  width: 100%;
  height: 100%;
}

.kc-plot-root svg,
.kc-plot-root figure {
  display: block;
  overflow: visible;
}

.kc-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 12px;
}

.kc-note {
  font-size: 14px;
  line-height: 20px;
  color: var(--kc-gray-dark);
}

.kc-map-shell {
  position: relative;
  height: clamp(360px, 54vw, 520px);
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f3f6f8;
  box-shadow: none;
}

.kc-map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 450;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(20, 34, 43, 0.08);
}

.kc-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 20px;
  color: var(--kc-gray-dark);
}

.kc-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.kc-map-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.96);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.14);
}

.kc-map-swatch.open {
  background: var(--kc-red);
}

.kc-map-swatch.closed {
  background: #2d9bf0;
}

.kc-map-swatch.hotspot {
  background: #16242e;
}

.kc-repeat-head,
.kc-repeat-item {
  display: grid;
  grid-template-columns: 68px 92px minmax(0, 1.9fr) minmax(110px, 0.9fr) minmax(110px, 0.9fr);
  gap: 8px 12px;
  justify-items: start;
}

.kc-repeat-head {
  padding: 0 0 8px;
  border-bottom: 1px solid var(--kc-gray-light);
  color: var(--kc-gray-dark);
}

.kc-repeat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kc-repeat-item {
  padding: 8px 0;
  border-bottom: 1px solid var(--kc-gray-light);
  align-items: start;
}

.kc-repeat-rank,
.kc-repeat-requests {
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
}

.kc-repeat-rank {
  color: var(--kc-blue-deep);
}

.kc-repeat-requests {
  color: var(--kc-ink);
}

.kc-repeat-address {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.kc-repeat-date {
  font-size: 16px;
  line-height: 20px;
  color: var(--kc-gray-dark);
}

.kc-mayor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.kc-mayor-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 20px 20px 18px;
}

.kc-mayor-card--funkhouser {
  background: var(--kc-mist);
  color: var(--kc-ink);
}

.kc-mayor-card--james {
  background: var(--kc-blue);
  color: var(--kc-white);
}

.kc-mayor-card--lucas {
  background: var(--kc-red);
  color: var(--kc-white);
}

.kc-mayor-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.kc-mayor-title-block h3 {
  margin: 0;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: 28px;
  line-height: 1.02;
  font-weight: 700;
}

.kc-mayor-term {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 22px;
  color: inherit;
  opacity: 0.84;
}

.kc-mayor-grade {
  flex: 0 0 auto;
  min-width: 78px;
  padding: 8px 10px 6px;
  text-align: right;
  background: rgba(255, 255, 255, 0.2);
}

.kc-mayor-card--funkhouser .kc-mayor-grade {
  background: rgba(20, 34, 43, 0.08);
}

.kc-mayor-grade span,
.kc-mayor-metric-label,
.kc-mayor-note strong {
  display: block;
  font-size: 11.9px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kc-mayor-grade strong {
  display: block;
  margin-top: 2px;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: 30px;
  line-height: 30px;
  font-weight: 700;
}

.kc-mayor-summary,
.kc-mayor-note {
  margin: 0;
  font-size: 15px;
  line-height: 22px;
  color: inherit;
}

.kc-mayor-summary {
  opacity: 0.9;
}

.kc-mayor-note {
  opacity: 0.82;
}

.kc-mayor-metrics {
  display: grid;
  gap: 10px;
}

.kc-mayor-metric {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid currentColor;
}

.kc-mayor-metric-label {
  color: inherit;
  opacity: 0.75;
  max-width: 18ch;
}

.kc-mayor-best {
  display: inline-block;
  margin-top: 4px;
  padding: 1px 5px;
  font-size: 10px;
  line-height: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.24);
}

.kc-mayor-card--funkhouser .kc-mayor-best {
  background: rgba(20, 34, 43, 0.09);
}

.kc-mayor-metric-value {
  flex: 0 0 auto;
  text-align: right;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: 26px;
  line-height: 28px;
  font-weight: 700;
}

.kc-footer {
  background: var(--kc-gray-lightest);
  border-top: 6px solid var(--kc-blue);
  padding: 28px 0 40px;
}

.kc-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
}

.kc-footer h2 {
  margin: 0 0 10px;
  font-family: "Rubik", "Helvetica Neue", sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
}

.kc-footer ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.kc-source-list {
  display: grid;
  gap: 8px;
}

.kc-source-list a {
  color: var(--kc-blue-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.kc-page .leaflet-container {
  background: #f3f6f8;
  font-family: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Single-hue monochrome basemap: grayscale the CARTO tiles, then tint them toward the
   Kansas City flag blue so the map reads as one quiet surface under the data. */
.kc-page .leaflet-tile-pane {
  filter: grayscale(1) sepia(1) saturate(1.3) hue-rotate(160deg) brightness(1.02) contrast(0.98);
}

.kc-page .leaflet-container a {
  color: var(--kc-blue-deep);
}

.kc-page .leaflet-pane.kc-map-labels-pane {
  mix-blend-mode: multiply;
  opacity: 0.78;
}

.kc-page .leaflet-control-zoom {
  border: none !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
}

.kc-page .leaflet-bar a,
.kc-page .leaflet-bar a:hover {
  width: 34px;
  height: 34px;
  line-height: 34px;
  border: none;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  background: rgba(255, 255, 255, 0.96);
  color: var(--kc-ink);
}

.kc-page .leaflet-bar a:last-child {
  border-bottom: none;
}

.kc-page .leaflet-bar a:hover {
  background: #ffffff;
  color: var(--kc-blue-deep);
}

.kc-page .leaflet-control-attribution {
  background: rgba(255, 255, 255, 0.92) !important;
  color: #4f5d6b;
  padding: 2px 8px;
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.16);
  background: rgba(255, 255, 255, 0.97);
  font-size: 13px;
  line-height: 18px;
  color: #101820;
  min-width: 190px;
  max-width: 260px;
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip::before {
  border-top-color: rgba(255, 255, 255, 0.97);
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-title {
  font-weight: 700;
  line-height: 17px;
  margin-bottom: 2px;
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-meta,
.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-subtle,
.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-status-row {
  margin-top: 3px;
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-status {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-status.is-open {
  background: rgba(239, 72, 63, 0.14);
  color: #8b1e29;
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-status.is-closed {
  background: rgba(2, 131, 192, 0.14);
  color: #135378;
}

.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-id,
.kc-page .leaflet-tooltip.kc-pothole-tooltip .map-tooltip-subtle {
  color: #556270;
  font-size: 12px;
}

.kc-summary-grid,
.kc-footer-grid {
  grid-template-columns: 1fr;
}

@media (max-width: 900px) {
  .kc-stat-row,
  .kc-summary-grid,
  .kc-ytd-grid,
  .kc-footer-grid,
  .kc-mayor-grid {
    grid-template-columns: 1fr;
  }

  .kc-nav {
    display: none;
  }

  .kc-hero-title {
    max-width: none;
  }

  .kc-loading-head,
  .kc-loading-foot {
    flex-direction: column;
  }

  .kc-loading-progress {
    font-size: clamp(58px, 15vw, 104px);
  }

  .kc-loading-stage {
    min-height: min(48vh, 460px);
  }
}

@media (max-width: 720px) {
  .kc-container {
    width: min(100vw - 24px, 1200px);
  }

  .kc-wordmark {
    font-size: 28px;
  }

  .kc-hero-title,
  .kc-hero-dek,
  .kc-hero-note,
  .kc-stat-row,
  .kc-chip-row {
    margin-left: 18px;
  }

  .kc-mayor-head {
    flex-direction: column;
  }

  .kc-mayor-title-block h3 {
    font-size: 24px;
  }

  .kc-repeat-head {
    display: none;
  }

  .kc-repeat-item {
    grid-template-columns: 64px 72px minmax(0, 1fr);
    gap: 4px 10px;
  }

  .kc-repeat-address,
  .kc-repeat-date {
    grid-column: 3;
  }

  .kc-loading-shell {
    gap: 18px;
    padding-top: 34px;
  }

  .kc-loading-kicker-row {
    margin-bottom: 8px;
  }

  .kc-loading-title {
    font-size: clamp(38px, 14vw, 68px);
  }

  .kc-loading-copy {
    margin-top: 10px;
    font-size: 15px;
    line-height: 22px;
  }

  .kc-loading-stage {
    min-height: min(42vh, 360px);
  }

  .kc-loading-stage-rule.is-top {
    top: 18px;
  }

  .kc-loading-stage-rule.is-bottom {
    bottom: 18px;
  }

  .kc-loading-image-layer {
    height: min(26vh, 180px);
  }
}


/* Minimal hero meta: plain inline facts on one line, no boxes. */
.kc-chip-row {
  align-items: baseline;
  gap: 4px 14px;
}

.kc-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-width: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}

.kc-chip + .kc-chip::before {
  content: "\00B7";
  margin-right: 14px;
  color: var(--kc-gray-light);
}

.kc-chip span {
  display: inline;
}

.kc-chip strong {
  display: inline;
  margin-top: 0;
  font-size: 13.5px;
  line-height: 18px;
}
