/* Dallas page styling follows the city flag adopted in 1967: a red field over a blue
   field with a white lone star carrying the city seal. Red (#be001c), blue (#000191),
   and the seal gold (#d5a735) are sampled from the flag artwork's literal fill values;
   everything else stays flat, white, and editorial. */
.dallas-page {
  --dal-red: #be001c;
  --dal-blue: #000191;
  --dal-blue-deep: #00016b;
  --dal-gold: #d5a735;
  --dal-white: #ffffff;
  --dal-ink: #131a33;
  --dal-gray-dark: #4d5468;
  --dal-gray-light: #bdc2d2;
  --dal-gray-lightest: #f3f4f8;
  --dal-mist: #e8eaf6;
  color: var(--dal-ink);
  background: var(--dal-white);
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

.dallas-page a {
  color: inherit;
}

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

/* The masthead reads as the flag itself: a red band over a blue field, with the white
   lone star sitting in the blue. */
.dal-masthead {
  background: var(--dal-blue);
  color: var(--dal-white);
}

.dal-masthead-band {
  height: 12px;
  background: var(--dal-red);
}

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

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

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

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

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

.dal-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 14px;
  line-height: 20px;
  --site-header-control-text: var(--dal-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);
}

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

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

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

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

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

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

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

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

.dal-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);
}

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

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

.dal-loading-star svg {
  width: 20px;
  height: 20px;
  fill: var(--dal-red);
}

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

.dal-loading-title {
  margin: 0;
  font-family: "Clash Grotesk", "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;
}

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

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

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

.dal-loading-stage {
  position: relative;
  min-height: min(56vh, 560px);
  overflow: hidden;
  border-top: 2px solid var(--dal-ink);
  border-bottom: 2px solid var(--dal-ink);
  background:
    linear-gradient(
      180deg,
      rgba(0, 1, 145, 0.06) 0%,
      rgba(255, 255, 255, 0.94) 30%,
      rgba(243, 244, 248, 0.96) 100%
    );
}

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

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

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

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

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

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

.dal-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;
}

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

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

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

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

.dal-hero-title {
  margin: 0 0 12px 24px;
  font-family: "Clash Grotesk", "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;
}

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

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

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

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

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

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

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

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

/* Minimal hero meta: one quiet inline line of plain facts, no boxes. */
.dal-meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin: 18px 0 0 24px;
  font-size: 13.5px;
  line-height: 18px;
  color: var(--dal-gray-dark);
}

.dal-meta-item {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
}

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

.dal-meta-item span {
  font-size: 11.9px;
  line-height: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dal-meta-item strong {
  font-weight: 600;
  color: var(--dal-ink);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.dal-map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 450;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(19, 26, 51, 0.08);
}

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

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

.dal-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);
}

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

.dal-map-swatch.closed {
  background: #3c50d2;
}

.dal-map-swatch.hotspot {
  background: #131a33;
}

.dal-district-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.dal-district-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 0.9fr) minmax(0, 1.6fr) 84px;
  gap: 8px 14px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--dal-gray-light);
}

.dal-district-rank {
  font-family: "Clash Grotesk", "Helvetica Neue", sans-serif;
  font-size: 22px;
  line-height: 26px;
  font-weight: 700;
  color: var(--dal-blue-deep);
}

.dal-district-name {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

.dal-district-bar {
  position: relative;
  height: 12px;
  background: var(--dal-gray-lightest);
}

.dal-district-bar span {
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--dal-blue);
}

.dal-district-count {
  justify-self: end;
  font-family: "Clash Grotesk", "Helvetica Neue", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.dal-repeat-head,
.dal-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;
}

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

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

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

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

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

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

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

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

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

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

.dal-mayor-card--rawlings {
  background: var(--dal-blue);
  color: var(--dal-white);
}

.dal-mayor-card--johnson {
  background: var(--dal-red);
  color: var(--dal-white);
}

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

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

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

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

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

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

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

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

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

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

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

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

.dal-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);
}

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

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

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

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

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

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

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

.dallas-page .leaflet-container {
  background: #f3f4f8;
  font-family: "Noto Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Single-hue monochrome basemap: grayscale the CARTO tiles, then tint them toward the
   Dallas flag blue so the map reads as one quiet surface under the data. */
.dallas-page .leaflet-tile-pane {
  filter: grayscale(1) sepia(1) saturate(1.4) hue-rotate(175deg) brightness(1.03) contrast(0.97);
}

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

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

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

.dallas-page .leaflet-bar a,
.dallas-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(--dal-ink);
}

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

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

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

.dallas-page .leaflet-tooltip.dal-pothole-tooltip {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(19, 26, 51, 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: #131a33;
  min-width: 190px;
  max-width: 260px;
}

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

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

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

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

.dallas-page .leaflet-tooltip.dal-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;
}

.dallas-page .leaflet-tooltip.dal-pothole-tooltip .map-tooltip-status.is-open {
  background: rgba(190, 0, 28, 0.12);
  color: #7c0a1c;
}

.dallas-page .leaflet-tooltip.dal-pothole-tooltip .map-tooltip-status.is-closed {
  background: rgba(0, 1, 145, 0.1);
  color: #1c2a8a;
}

.dallas-page .leaflet-tooltip.dal-pothole-tooltip .map-tooltip-id,
.dallas-page .leaflet-tooltip.dal-pothole-tooltip .map-tooltip-subtle {
  color: #5a6175;
  font-size: 12px;
}

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

  .dal-nav {
    display: none;
  }

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

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

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

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

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

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

  .dal-hero-title,
  .dal-hero-dek,
  .dal-hero-note,
  .dal-stat-row,
  .dal-meta-line {
    margin-left: 18px;
  }

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

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

  .dal-district-item {
    grid-template-columns: 36px minmax(0, 1fr) 64px;
  }

  .dal-district-bar {
    display: none;
  }

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

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

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

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

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

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

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

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

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

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

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