:root {
  --wc-shadow: 0 20px 45px rgba(8, 22, 44, 0.12);
  --wc-shadow-soft: 0 10px 25px rgba(15, 23, 42, 0.08);
  --wc-border: rgba(255, 255, 255, 0.14);
}

body {
  background:
    radial-gradient(circle at top right, rgba(77,163,255,0.18), transparent 25%),
    linear-gradient(180deg, #eff5fb 0%, #f7fbff 100%);
}

.wp-site-blocks {
  min-height: 100vh;
}

.weather-shell,
.weather-card,
.weather-panel,
.weather-glass,
.is-style-weather-card {
  border-radius: 24px;
  box-shadow: var(--wc-shadow-soft);
}

.weather-glass {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.15);
}

.weather-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #09111c 0%, #122645 46%, #2676e8 100%);
  color: #fff;
  border-radius: 32px;
  box-shadow: var(--wc-shadow);
}

.weather-hero::before,
.weather-hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
}

.weather-hero::before {
  inset: -100px auto auto -80px;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.09);
}

.weather-hero::after {
  inset: auto -60px -60px auto;
  width: 220px;
  height: 220px;
  background: rgba(249,115,22,0.22);
}

.weather-alert-bar {
  background: linear-gradient(90deg, #b91c1c 0%, #ef4444 100%);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(185, 28, 28, 0.25);
}

.weather-stat-grid > * {
  height: 100%;
}

.weather-stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 1.25rem;
}

.weather-surface {
  background: #fff;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: var(--wc-shadow-soft);
  border-radius: 24px;
}

.weather-dark {
  background: linear-gradient(145deg, #0b1322 0%, #101d36 100%);
  color: #fff;
}

.weather-radar {
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: 28px;
}

.weather-city-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: var(--wc-shadow-soft);
  height: 100%;
}

.weather-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
}

header.wp-block-template-part {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.wp-block-navigation .wp-block-navigation-item__content {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wp-block-navigation .wp-block-navigation-item__content:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

footer.wp-block-template-part {
  margin-top: 3rem;
}

.single .wp-block-post-featured-image img,
.page .wp-block-post-featured-image img {
  border-radius: 28px;
}

.wp-block-post,
.wp-block-query .wp-block-post-template > li {
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--wc-shadow-soft);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.4rem;
}

@media (max-width: 781px) {
  .weather-hero {
    border-radius: 24px;
  }

  .weather-radar {
    min-height: 250px;
  }
}
