.gauge-tile {
  min-height: 180px;
  gap: .55rem;
}

.gauge-layout {
  display: grid;
  grid-template-columns: minmax(105px, .95fr) minmax(0, 1.05fr);
  gap: .75rem;
  align-items: center;
  margin-top: auto;
}

.gauge-half {
  position: relative;
}

.gauge-half svg {
  width: 100%;
  max-height: 112px;
  height: auto;
  display: block;
}

.gauge-half .gauge-track {
  fill: none;
  stroke: rgba(255,255,255,0.12);
  stroke-width: 9;
  stroke-linecap: round;
}

.gauge-half .gauge-target {
  fill: none;
  stroke: var(--gauge-target-color, var(--accent));
  stroke-width: var(--gauge-target-width, 9);
  stroke-linecap: var(--gauge-target-linecap, round);
  opacity: 0;
  transition: stroke-dashoffset 700ms cubic-bezier(.2,.6,.2,1), opacity .2s ease;
}

.gauge-half .gauge-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 9;
  stroke-linecap: round;
  transition: stroke-dashoffset 700ms cubic-bezier(.2,.6,.2,1);
  filter: drop-shadow(0 0 6px color-mix(in srgb, var(--accent) 50%, transparent));
}

.gauge-center {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
}

.gauge-center strong {
  display: block;
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 800;
  line-height: 1;
}

.gauge-center span {
  color: #9aa3b2;
  font-size: 10px;
  margin-top: 2px;
  display: block;
  word-break: break-all;
}

.gauge-fields {
  display: grid;
  gap: .25rem;
}

.gauge-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: .5rem;
  align-items: baseline;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: .22rem 0;
  font-size: 13px;
}

.gauge-field span {
  color: #9aa3b2;
  font-size: 12px;
}

.gauge-field strong {
  font-weight: 700;
}
