.weather-hero {
  background: linear-gradient(
    135deg,
    rgba(var(--bs-primary-rgb), 0.12),
    rgba(var(--bs-primary-rgb), 0.03)
  );
  border: 1px solid rgba(var(--bs-primary-rgb), 0.15);
  border-radius: 1.25rem;
  padding: 2.5rem;
}

.weather-icon {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  background: rgba(var(--bs-primary-rgb), 0.1);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: rgb(var(--bs-primary-rgb));
}

.weather-stat-card {
  border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
}

.weather-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(33, 37, 41, 0.6);
}

.weather-hourly {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(140px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
}

.weather-hour-card {
  border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
  scroll-snap-align: start;
  min-height: 180px;
}

.weather-hour-icon {
  display: block;
  font-size: 1.5rem;
  margin: 0.5rem 0;
  color: rgb(var(--bs-primary-rgb));
}

.weather-table th {
  white-space: nowrap;
}

.weather-meta {
  font-size: 0.85rem;
  color: rgba(33, 37, 41, 0.65);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.weather-faq-item {
  border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(var(--bs-primary-rgb), 0.03);
}

.weather-faq-item summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

.weather-faq-item summary::-webkit-details-marker {
  display: none;
}

.weather-faq-item[open] summary {
  color: rgb(var(--bs-primary-rgb));
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .weather-hero {
    padding: 1.5rem;
  }
}
