/* Clima Chancay — widget SENAMHI (Stitch Coastal Editorial) */
.chz-weather {
  background: linear-gradient(145deg, var(--ocean-mid, #0f3d5c) 0%, var(--ocean-deep, #0a1f33) 100%);
  border: none;
  border-radius: var(--radius-lg, 1rem);
  padding: 1.35rem 1.5rem;
  color: #fff;
  box-shadow: 0 20px 30px -10px rgba(10, 31, 51, .25);
  position: relative;
  overflow: hidden;
}
.chz-weather::after {
  content: '';
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: color-mix(in srgb, var(--tertiary-fixed-dim, #81d1f0) 12%, transparent);
  pointer-events: none;
}
.chz-weather--compact { padding: 1.1rem 1.2rem; }
.chz-weather-head { display: flex; gap: 1rem; align-items: flex-start; position: relative; z-index: 1; }
.chz-weather-eyebrow {
  margin: 0 0 .25rem;
  font-size: var(--text-label-lg, .875rem);
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--tertiary-fixed-dim, #81d1f0);
  font-weight: 700;
}
.chz-weather-temp { margin: 0; font-size: 2rem; line-height: 1.1; color: #fff; font-weight: 700; }
.chz-weather-temp span { font-size: 1rem; color: color-mix(in srgb, var(--tertiary-fixed-dim, #81d1f0) 85%, #fff); font-weight: 500; }
.chz-weather-desc { margin: .35rem 0 0; font-size: .9rem; color: color-mix(in srgb, #fff 85%, transparent); line-height: 1.45; }
.chz-weather-meta { margin: .85rem 0 0; font-size: .78rem; color: color-mix(in srgb, #fff 65%, transparent); }
.chz-weather-meta a { font-weight: 600; color: var(--tertiary-fixed-dim, #81d1f0); }
.chz-weather-meta a:hover { color: #fff; }
.chz-weather-days {
  list-style: none;
  margin: 1rem 0 0;
  padding: .85rem 0 0;
  display: grid;
  gap: .45rem;
  border-top: 1px solid color-mix(in srgb, #fff 12%, transparent);
  position: relative;
  z-index: 1;
}
.chz-weather-days li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .88rem;
  color: color-mix(in srgb, #fff 80%, transparent);
}
.chz-weather-days strong { color: #fff; font-weight: 600; }
.chz-weather-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: color-mix(in srgb, #fff 10%, transparent);
  border: 1px solid color-mix(in srgb, #fff 15%, transparent);
  position: relative;
}
.chz-weather-icon::after {
  content: '';
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 18px 6px 0 -4px #fde68a;
}
.chz-weather-icon--cloudy::after {
  background: #94a3b8;
  box-shadow: 14px 4px 0 -3px #cbd5e1, -8px 6px 0 -5px #e2e8f0;
}
.chz-weather-icon--rain::after {
  background: #64748b;
  box-shadow: 14px 4px 0 -3px #94a3b8;
  border-radius: 8px;
}
.chz-weather-icon--wind::after {
  background: #38bdf8;
  box-shadow: none;
  border-radius: 4px;
  transform: skewX(-12deg);
}
.chz-clima-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) {
  .chz-clima-layout { grid-template-columns: minmax(280px, 380px) 1fr; align-items: start; }
}
.chz-clima-hero { background: var(--surface); }
.chz-clima-links { font-size: .9rem; margin-top: 1.5rem; }
.chz-clima-links a { font-weight: 600; }

.chz-hub-weather { margin-bottom: 1.5rem; }
