.drives-main {
  padding-bottom: 48px;
}

.drives-live {
  border-color: rgb(0 229 255 / 38%);
  background:
    radial-gradient(circle at 64% 50%, rgb(0 229 255 / 12%), transparent 23%),
    linear-gradient(115deg, rgb(0 230 118 / 6%), transparent 50%),
    var(--surface);
}

.drives-status-pill {
  border-color: rgb(0 229 255 / 28%);
  background: rgb(0 229 255 / 8%);
  color: var(--primary-soft);
}

.drives-status-pill > span:first-child {
  background: var(--primary);
  box-shadow: 0 0 0 5px rgb(0 229 255 / 9%);
}

.speed-ring {
  background: conic-gradient(var(--primary) calc(var(--soc) * 1%), var(--surface-hover) 0);
  box-shadow: 0 0 46px rgb(0 229 255 / 10%);
}

.drives-kpi--distance {
  border-color: rgb(0 229 255 / 55%);
  background: linear-gradient(145deg, rgb(0 229 255 / 8%), transparent 62%), var(--surface);
}

.drives-main .battery-kpi-grid {
  margin-top: 14px;
}

.key-distance,
.distance-bar__fill {
  background: var(--primary);
}

.distance-bar__fill {
  display: block;
  width: 100%;
  height: 100%;
}

.drive-energy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: var(--border-soft);
}

.drive-energy-grid > div {
  min-height: 105px;
  padding: 17px;
  background: var(--surface-raised);
}

.drive-energy-grid span:first-child {
  color: var(--muted);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .08em;
}

.drive-energy-grid strong {
  display: block;
  margin-top: 15px;
  color: var(--text);
  font-size: 25px;
  letter-spacing: -.04em;
}

.drive-energy-grid strong small {
  color: var(--muted);
  font-size: 9px;
}

.support-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.route-cell {
  max-width: 260px;
  overflow: hidden;
  color: var(--primary-soft) !important;
  font-weight: 700;
  text-overflow: ellipsis;
}

@media (max-width: 620px) {
  .drive-energy-grid {
    grid-template-columns: 1fr;
  }

  .drive-energy-grid > div {
    min-height: 82px;
  }

  .route-cell {
    max-width: none;
  }
}
