@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");
:root {
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 20px 55px rgba(17, 55, 105, 0.2);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100%;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: #6d9fdc;
}
button,
input {
  font: inherit;
  color: inherit;
}
.weather-app {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(180deg, #477fbf, #73a8e2 38%, #6d9ed8);
}
.sky-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 50% 22%,
      rgba(255, 255, 255, 0.4),
      transparent 25%
    ),
    linear-gradient(
      180deg,
      rgba(30, 84, 145, 0.22),
      transparent 45%,
      rgba(42, 94, 153, 0.18)
    );
}
.sun-glow {
  position: absolute;
  width: 390px;
  height: 390px;
  left: 50%;
  top: 45px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 239, 184, 0.55) 0 9%,
    rgba(255, 255, 255, 0.15) 28%,
    transparent 68%
  );
  filter: blur(5px);
}
.cloud {
  position: absolute;
  border-radius: 999px;
  background: rgba(245, 250, 255, 0.24);
  filter: blur(12px);
}
.cloud:before,
.cloud:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: inherit;
}
.cloud-one {
  width: 300px;
  height: 65px;
  top: 170px;
  left: -80px;
}
.cloud-one:before {
  width: 120px;
  height: 120px;
  left: 70px;
  top: -50px;
}
.cloud-one:after {
  width: 105px;
  height: 105px;
  left: 155px;
  top: -35px;
}
.cloud-two {
  width: 370px;
  height: 75px;
  top: 260px;
  right: -130px;
}
.cloud-two:before {
  width: 135px;
  height: 135px;
  left: 95px;
  top: -55px;
}
.cloud-two:after {
  width: 120px;
  height: 120px;
  left: 210px;
  top: -42px;
}
.haze {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 20%,
    rgba(218, 238, 255, 0.08) 42%,
    rgba(255, 255, 255, 0.05) 70%,
    transparent
  );
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 30px;
  background: rgba(35, 82, 142, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.brand,
.location-pill,
.top-actions button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.brand {
  justify-self: start;
  padding: 8px 0;
  font-weight: 800;
  font-size: 18px;
}
.location-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 600;
}
.pin {
  font-size: 18px;
}
.chevron {
  opacity: 0.7;
}
.top-actions {
  justify-self: end;
  display: flex;
  gap: 4px;
}
.top-actions button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 26px;
}
.content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin: auto;
  padding: 0 24px 60px;
}
.hero {
  min-height: 500px;
  padding: 75px 42px 54px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-shadow: 0 2px 18px rgba(27, 69, 117, 0.2);
}
.hero-location {
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 9px;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px #fff;
}
.hero-date {
  margin-top: 7px;
  font-size: 13px;
  color: var(--muted);
}
.temperature-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.temperature {
  font-size: 154px;
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: -9px;
  margin: 34px 0 20px;
}
.weather-icon-large {
  width: 105px;
  height: 105px;
  margin: 0 45px 22px 0;
  position: relative;
}
.weather-icon-large.weather-icon-dynamic:before,
.weather-icon-large.weather-icon-dynamic:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}
.weather-icon-large.weather-icon-dynamic:before {
  width: 58px;
  height: 58px;
  right: 0;
  top: 0;
  background: linear-gradient(145deg, #ffe995, #ffc84f);
}
.condition {
  font-size: 25px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
}
.high-low {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.high-low i {
  height: 4px;
  width: 38px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ffca64, #83c4ff);
}
.aqi {
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin-top: 25px;
  padding: 10px 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
  font-size: 13px;
}
.good {
  color: #caffd9;
  font-weight: 600;
}
.glass-card {
  background: linear-gradient(
    145deg,
    var(--card-fill-start, rgba(255, 255, 255, 0.19)),
    var(--card-fill-end, rgba(255, 255, 255, 0.09))
  );
  border: 1px solid var(--card-border, rgba(255, 255, 255, 0.14));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border-radius: 28px;
}
.alert-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  margin-bottom: 18px;
}
.alert-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 204, 89, 0.18);
  font-weight: 800;
  color: #ffe59b;
}
.alert-copy h2 {
  font-size: 16px;
  margin: 0 0 6px;
}
.alert-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.card-arrow {
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  font-size: 25px;
  cursor: pointer;
}
.forecast-card,
.hourly-card,
.detail-card,
.map-card {
  padding: 25px 26px;
  margin-bottom: 18px;
}
.section-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 19px;
}
.section-caption {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 500;
}
.daily-list {
  display: grid;
}
.day-row {
  display: grid;
  grid-template-columns: 1.25fr 0.5fr 0.55fr 1fr 0.55fr 0.55fr;
  align-items: center;
  gap: 9px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.day-row:last-child {
  border-bottom: 0;
}
.day-name {
  font-weight: 600;
}
.weather-symbol {
  text-align: center;
  font-size: 22px;
}
.range {
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, #ffca66, #ff9652);
  position: relative;
}
.range i {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
}
.rain-badge {
  font-size: 11px;
  color: #d9f4ff;
  text-align: right;
}
.wide-button {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 18px;
  padding: 13px 16px;
  font-size: 14px;
  margin-top: 18px;
  cursor: pointer;
}
.wide-button span {
  float: right;
}
.chart-wrap {
  height: 170px;
  position: relative;
}
.chart-labels {
  position: absolute;
  left: 0;
  top: 7px;
  bottom: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}
.chart {
  position: absolute;
  left: 30px;
  top: 0;
  width: calc(100% - 30px);
  height: 100%;
}
.chart-area {
  fill: url(#chartFill);
}
.chart-line {
  fill: none;
  stroke: rgba(255, 255, 255, 0.95);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hourly-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  text-align: center;
}
.hour {
  font-size: 10px;
  color: var(--muted);
}
.hour div {
  font-size: 21px;
  margin: 8px 0 5px;
}
.hour b {
  display: block;
  font-size: 13px;
  color: #fff;
}
.hour small {
  display: block;
  font-size: 9px;
  margin-top: 5px;
  color: #d9f4ff;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.detail-grid article {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
}
.detail-grid span,
.detail-grid small,
.sun-row span {
  display: block;
  color: var(--muted);
  font-size: 11px;
}
.detail-grid strong {
  display: block;
  font-size: 20px;
  margin: 7px 0 4px;
}
.sun-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
.sun-row strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
}
.sun-track {
  height: 5px;
  border-radius: 9px;
  background: linear-gradient(90deg, #ffb94d, #ffe59a, #7dc9ff);
  position: relative;
}
.sun-track i {
  position: absolute;
  left: 38%;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px #fff;
}
.map-shell {
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #d7e5ee;
}
.map-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.85) contrast(0.92);
}
.map-overlay {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(17, 40, 72, 0.78);
  backdrop-filter: blur(12px);
}
.map-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7ee8ff;
  box-shadow: 0 0 14px #7ee8ff;
}
.map-overlay strong {
  display: block;
  font-size: 12px;
}
.map-overlay small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 3px;
}
.map-overlay a {
  margin-left: auto;
  color: #fff;
  font-size: 11px;
}
.map-tools {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.map-tools button {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 11px;
  cursor: pointer;
}
.map-tools span {
  margin-left: auto;
  color: var(--muted);
  font-size: 10px;
}
.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.metric {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 24px 24px 22px;
  min-height: 150px;
  border-radius: 24px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.metric::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.12), transparent 38%),
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08), transparent 32%);
  pointer-events: none;
}
.metric-uv::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(154, 226, 255, 0.3), transparent 38%),
    linear-gradient(135deg, rgba(90, 179, 255, 0.12), rgba(255, 255, 255, 0.02));
}
.metric-humidity::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(132, 227, 255, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(81, 131, 255, 0.12), rgba(255, 255, 255, 0.02));
}
.metric-feels::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 214, 141, 0.24), transparent 38%),
    linear-gradient(135deg, rgba(255, 170, 86, 0.12), rgba(255, 255, 255, 0.02));
}
.metric-wind::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(154, 255, 233, 0.18), transparent 38%),
    linear-gradient(135deg, rgba(55, 216, 190, 0.1), rgba(255, 255, 255, 0.02));
}
.metric-copy,
.metric-visual {
  position: relative;
  z-index: 1;
}
.metric-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  flex: 1;
}
.metric-label {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.metric strong {
  display: block;
  font-size: 24px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}
.metric small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: auto;
}
.metric-ring {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.08);
  border: 8px solid rgba(255, 255, 255, 0.14);
  border-top-color: #8ae9ff;
  border-right-color: #9ff0ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 10px 24px rgba(10, 30, 60, 0.12);
  flex: 0 0 auto;
}
.metric-ring b {
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.metric-icon,
.metric-compass {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 10px 24px rgba(10, 30, 60, 0.12);
}
.metric-svg {
  width: 44px;
  height: 44px;
  display: block;
}
.metric-thermo {
  filter: drop-shadow(0 8px 14px rgba(255, 175, 83, 0.18));
}
.metric-drop {
  filter: drop-shadow(0 8px 14px rgba(102, 145, 255, 0.2));
}
.metric-wind-svg {
  width: 46px;
  height: 46px;
}
.wind-arrow {
  font-size: 44px;
  line-height: 1;
  display: block;
  color: #f7fbff;
  text-shadow: 0 8px 16px rgba(10, 25, 50, 0.18);
  transform: translateY(-1px);
}
.attribution {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  margin: 24px 0;
}
.toast {
  position: fixed;
  z-index: 70;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  padding: 12px 17px;
  border-radius: 16px;
  background: rgba(17, 40, 72, 0.88);
  backdrop-filter: blur(14px);
  font-size: 13px;
  transition: 0.25s;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.loading {
  position: fixed;
  z-index: 80;
  top: 88px;
  left: 50%;
  transform: translateX(-50%);
  padding: 9px 14px;
  border-radius: 14px;
  background: rgba(17, 40, 72, 0.82);
  font-size: 12px;
}
.loading span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  margin-right: 7px;
  animation: spin 0.7s linear infinite;
}
.search-overlay,
.forecast-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(7, 24, 48, 0.5);
  backdrop-filter: blur(12px);
  padding: 70px 18px 25px;
  overflow: auto;
}
.search-panel,
.forecast-panel {
  width: min(620px, 100%);
  margin: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(73, 133, 201, 0.97),
    rgba(35, 83, 143, 0.97)
  );
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}
.search-header,
.forecast-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.search-header h2,
.forecast-panel-head h2 {
  margin: 4px 0 18px;
  font-size: 25px;
}
.eyebrow {
  font-size: 11px;
  opacity: 0.6;
}
.close-search {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
}
.search-form {
  display: flex;
  gap: 9px;
}
.search-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  outline: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  padding: 13px 14px;
}
.search-form button,
.use-location {
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  padding: 0 16px;
  cursor: pointer;
}
.use-location {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  text-align: left;
}
.search-status {
  min-height: 20px;
  margin: 16px 2px 8px;
  color: var(--muted);
  font-size: 12px;
}
.search-results {
  display: grid;
  gap: 8px;
}
.result-button {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.08);
  padding: 13px 15px;
  border-radius: 15px;
  cursor: pointer;
}
.result-button strong {
  display: block;
}
.result-button span {
  font-size: 11px;
  color: var(--muted);
}
.full-forecast {
  display: grid;
  gap: 9px;
}
.full-day {
  display: grid;
  grid-template-columns: 1.2fr auto 1.7fr;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.full-day strong,
.full-day span {
  display: block;
}
.full-day span {
  color: var(--muted);
  font-size: 11px;
  margin-top: 5px;
}
.full-temp {
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.full-temp b {
  font-size: 20px;
}
.full-meta {
  display: flex !important;
  gap: 10px;
  justify-content: flex-end;
}
.full-meta span {
  font-size: 10px;
}
.skeleton-row {
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  margin: 7px 0;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 600px) {
  .topbar {
    height: 66px;
    padding: 0 15px;
  }
  .brand {
    font-size: 16px;
  }
  .location-pill {
    padding: 8px 11px;
  }
  .content {
    padding: 0 12px 40px;
  }
  .hero {
    min-height: 490px;
    padding: 72px 17px 44px;
  }
  .hero-location {
    font-size: 23px;
  }
  .temperature {
    font-size: 116px;
    letter-spacing: -7px;
    margin: 31px 0 16px;
  }
  .weather-icon-large {
    width: 78px;
    height: 78px;
    margin: 0 18px 18px 0;
  }
  .weather-icon-large.weather-icon-dynamic:before {
    width: 45px;
    height: 45px;
  }
  .condition {
    font-size: 20px;
    gap: 12px;
  }
  .high-low {
    font-size: 13px;
    gap: 7px;
  }
  .high-low i {
    width: 25px;
  }
  .forecast-card,
  .hourly-card,
  .detail-card,
  .map-card {
    padding: 21px 18px;
    border-radius: 23px;
  }
  .day-row {
    grid-template-columns: 1.2fr 0.5fr 0.6fr 0.9fr 0.55fr 0.5fr;
    font-size: 11px;
    gap: 5px;
  }
  .hourly-list {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 16px;
  }
  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }
  .map-shell {
    height: 250px;
  }
  .map-tools {
    overflow: auto;
  }
  .map-tools span {
    display: none;
  }
  .metric-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .metric {
    min-height: 118px;
    padding: 14px 14px 12px;
    border-radius: 22px;
    gap: 10px;
  }
  .metric strong {
    font-size: 17px;
  }
  .metric-label {
    font-size: 9px;
  }
  .metric small {
    font-size: 10px;
  }
  .metric-ring,
  .metric-icon,
  .metric-compass {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }
  .metric-ring {
    border-width: 6px;
  }
  .metric-ring b {
    font-size: 17px;
  }
  .metric-svg {
    width: 30px;
    height: 30px;
  }
  .wind-arrow {
    font-size: 28px;
  }
  .search-overlay,
  .forecast-overlay {
    padding: 65px 12px 20px;
  }
  .search-panel,
  .forecast-panel {
    padding: 19px;
    border-radius: 23px;
  }
  .search-form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .full-day {
    grid-template-columns: 1fr auto;
  }
  .full-meta {
    grid-column: 1/-1;
    justify-content: flex-start !important;
  }
  .full-meta span {
    display: inline-block;
  }
  .full-temp {
    justify-content: flex-end;
  }
}
@media (max-width: 420px) {
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .metric {
    min-height: 108px;
    padding: 12px 12px 10px;
    border-radius: 18px;
    gap: 8px;
  }
  .metric strong {
    font-size: 16px;
  }
  .metric-ring,
  .metric-icon,
  .metric-compass {
    width: 46px;
    height: 46px;
  }
  .metric-ring {
    border-width: 5px;
  }
  .metric-ring b {
    font-size: 16px;
  }
  .metric-svg {
    width: 28px;
    height: 28px;
  }
  .wind-arrow {
    font-size: 26px;
  }
}
