:root {
  --page-bg: #08111f;
  --page-bg-alt: #14263f;
  --page-glow: rgba(245, 158, 11, 0.14);
  --panel-bg: rgba(14, 26, 44, 0.88);
  --panel-border: rgba(148, 163, 184, 0.18);
  --panel-soft: rgba(30, 41, 59, 0.72);
  --text-main: #e2e8f0;
  --text-muted: #94a3b8;
  --accent: #67e8f9;
  --accent-strong: #22d3ee;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #fb7185;
  --shadow: 0 18px 50px rgba(8, 15, 28, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.app-shell {
  margin: 0;
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(34, 211, 238, 0.14), transparent 26%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.18), transparent 24%),
    radial-gradient(circle at 50% 0, var(--page-glow), transparent 30%),
    linear-gradient(165deg, var(--page-bg) 0%, var(--page-bg-alt) 52%, #1d3557 100%);
  font-family: Georgia, "Times New Roman", serif;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: #a5f3fc;
}

.site-nav {
  backdrop-filter: blur(18px);
  background: rgba(8, 17, 31, 0.82);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.site-nav .navbar-brand {
  color: var(--text-main);
}

.site-nav__brand-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 211, 238, 0.22), rgba(59, 130, 246, 0.2));
  color: var(--accent);
  font-size: 1.15rem;
}

.site-nav .navbar-brand strong {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav__menu {
  gap: 0.2rem;
}

.site-nav .nav-link {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 600;
  border-radius: 0.55rem;
  padding: 0.45rem 0.75rem;
}

.site-nav .nav-link.active,
.site-nav .nav-link:hover,
.site-nav .nav-link:focus {
  color: #fff;
  background: rgba(103, 232, 249, 0.08);
}

.site-nav__lang {
  color: var(--accent);
}

.site-nav__lang-item {
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(148, 163, 184, 0.2);
}

.page-section {
  padding: 1.35rem 0 2rem;
}

.hero-panel,
.tile,
.content-panel,
.chart-panel,
.wb-widget,
.alert-shell {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 1.25rem;
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 1.55rem;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(24, 38, 61, 0.78)),
    radial-gradient(circle at 85% 15%, rgba(245, 158, 11, 0.16), transparent 20%);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -15% -40% auto;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(103, 232, 249, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-panel__eyebrow {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  color: var(--accent);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.7rem;
}

.hero-panel__lede,
.text-muted-strong {
  color: var(--text-muted);
}

.hero-panel__copy {
  max-width: 33rem;
  color: #d7e3f3;
  font-size: 0.98rem;
  line-height: 1.58;
}

.hero-panel__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-panel h1,
.chart-panel h1,
.content-panel h1,
.section-title h2,
.section-title h3,
.tile h2,
.tile h3 {
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  letter-spacing: 0.01em;
}

.tile {
  padding: 1.1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
  border-color: rgba(103, 232, 249, 0.24);
  box-shadow: 0 18px 34px rgba(6, 11, 20, 0.22);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.section-title h2,
.section-title h3,
.tile h2,
.tile h3 {
  margin: 0;
}

.subtle-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.36rem 0.64rem;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.1);
  color: var(--accent);
  font-size: 0.8rem;
}

.dashboard-shell {
  display: block;
}

.dashboard-panel {
  padding: 1rem;
}

.dashboard-panel__header {
  margin-bottom: 1rem;
}

.dashboard-panel__header h3 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.dashboard-panel__header p {
  margin: 0;
  color: var(--text-muted);
}

.dashboard-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.dashboard-mini-tile {
  min-height: 100%;
  padding: 0.82rem 0.88rem;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.dashboard-mini-tile__head {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}

.dashboard-mini-tile__head i {
  font-size: 1rem;
}

.dashboard-mini-tile__head h3 {
  margin: 0;
  font-size: 0.98rem;
}

.dashboard-mini-tile__value {
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.55rem;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.dashboard-mini-tile__value--wrap {
  font-size: 1.2rem;
  line-height: 1.35;
}

.dashboard-mini-tile__moon {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.moon-phase-visual {
  width: 56px;
  height: 56px;
  display: block;
}

.dashboard-mini-tile__meta {
  color: var(--text-muted);
  font-size: 0.86rem;
  line-height: 1.38;
}

.dashboard-mini-tile__wind {
  display: block;
  margin: 0 auto 0.75rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.75);
  color: var(--text-muted);
  font-size: 0.82rem;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

.forecast-shell {
  display: block;
  min-height: 0;
}

.forecast-day-tile {
  width: 100%;
  border: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(22, 34, 56, 0.92), rgba(14, 24, 40, 0.92));
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 1rem;
  min-height: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.forecast-day-tile:hover,
.forecast-day-tile.is-active {
  border-color: rgba(103, 232, 249, 0.24);
  box-shadow: 0 16px 28px rgba(6, 11, 20, 0.16);
}

.forecast-tile-button {
  box-shadow: none;
}

.forecast-tile-button.is-active {
  box-shadow: 0 24px 44px rgba(6, 11, 20, 0.2);
}

.forecast-day-tile__date {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

.forecast-day-tile__top {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.forecast-day-tile__icon {
  font-size: 1.3rem;
  color: #f8fafc;
}

.forecast-day-tile__summary {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.forecast-day-tile__temps {
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.forecast-day-tile__meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.forecast-day-tile__meta-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.forecast-day-tile__meta-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.forecast-day-tile__meta {
  display: grid;
  gap: 0.15rem;
  padding: 0.55rem 0.65rem;
  border-radius: 0.8rem;
  background: rgba(8, 17, 31, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.08);
}

.forecast-day-tile__meta span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.forecast-day-tile__meta strong {
  font-size: 0.88rem;
  color: var(--text-main);
}

.forecast-day-tile__action {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--accent);
  padding-top: 0.1rem;
}

.forecast-day-tile__action i {
  transition: transform 0.2s ease;
}

.forecast-tile-button.is-active .forecast-day-tile__action i {
  transform: translateX(2px);
}

.forecast-detail {
  margin-top: 0.85rem;
}

.site-footer {
  margin-top: auto;
  padding: 0.9rem 0 1.5rem;
}

.forecast-detail__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.forecast-detail__header h4 {
  margin: 0;
  font-size: 1rem;
}

.forecast-detail__summary {
  display: flex;
  gap: 0.7rem 1rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.forecast-hours__list {
  display: grid;
  gap: 0.55rem;
}

.forecast-hour-row {
  display: grid;
  grid-template-columns: 62px minmax(110px, 1.4fr) repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: center;
  padding: 0.68rem 0.75rem;
  border-radius: 0.8rem;
  background: rgba(15, 23, 42, 0.72);
  color: var(--text-main);
}

.forecast-hour-row__time {
  font-weight: 700;
  color: var(--accent);
}

.forecast-hour-row__weather {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.forecast-hour-row__weather span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.forecast-hour-row__metric {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.forecast-hours__empty {
  color: var(--text-muted);
}

.radar-container {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.78);
}

.radar-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
}

.radar-dark-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(8, 17, 31, 0.08), rgba(8, 17, 31, 0.32));
}

.chart-panel {
  padding: 1.5rem;
}

.chart-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.chart-summary__item {
  padding: 0.9rem 1rem;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 0.95rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.chart-summary__label {
  color: var(--text-muted);
  font-size: 0.82rem;
  display: block;
  margin-bottom: 0.35rem;
}

.trend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 0.85rem;
}

.trend-tile {
  padding: 0.8rem;
  background: rgba(15, 23, 42, 0.68);
  border-radius: 0.95rem;
  text-align: center;
}

.trend-up {
  color: var(--success);
}

.trend-down {
  color: var(--danger);
}

.trend-stable {
  color: var(--text-muted);
}

.content-panel {
  padding: 1.45rem;
}

.content-panel--compact {
  padding: 1.45rem;
}

.content-panel p,
.content-panel li {
  color: #cbd5e1;
  line-height: 1.75;
}

.content-panel ul {
  padding-left: 1.2rem;
}

.site-footer {
  margin-top: auto;
  padding: 1.25rem 0 2rem;
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.05rem;
  border-radius: 1rem;
  background: rgba(8, 17, 31, 0.74);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--text-muted);
}

.site-footer__lang {
  color: var(--accent);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: 1.1rem 1.15rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.68);
  border: 1px solid rgba(148, 163, 184, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.feature-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(103, 232, 249, 0.1);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(103, 232, 249, 0.7), rgba(245, 158, 11, 0.45));
  opacity: 0.9;
}

.error-panel {
  max-width: 720px;
  margin: 3rem auto 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  background: rgba(14, 26, 44, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
}

.error-code {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(103, 232, 249, 0.08);
  color: var(--accent);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.clock-value {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.wb-widget {
  padding: 1.25rem;
}

.wb-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.wb-title {
  margin: 0;
  font-size: 1.1rem;
}

.wb-sub {
  color: var(--text-muted);
}

.wb-body {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(180px, 0.9fr);
  gap: 1rem;
}

.wb-list {
  display: grid;
  gap: 0.65rem;
}

.wb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(15, 23, 42, 0.7);
  border-radius: 0.8rem;
  padding: 0.65rem 0.8rem;
}

.wb-time {
  font-weight: 700;
}

.wb-badge {
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
}

.wb-rain {
  background: rgba(56, 189, 248, 0.2);
  color: #7dd3fc;
}

.wb-snow {
  background: rgba(191, 219, 254, 0.22);
  color: #dbeafe;
}

.wb-dry {
  background: rgba(52, 211, 153, 0.18);
  color: #86efac;
}

.wb-visual {
  display: grid;
  place-items: center;
  min-height: 100%;
  background: rgba(15, 23, 42, 0.74);
  border-radius: 1rem;
  padding: 1rem;
}

.wb-icon {
  width: 72px;
  height: 72px;
}

.sun-moon {
  position: relative;
  padding: 1.4rem;
  min-height: 180px;
}

.sun-moon__track {
  position: relative;
  height: 5px;
  margin: 3rem 0 2rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #1d4ed8 0%, #facc15 50%, #1d4ed8 100%);
}

.sun-moon__marker {
  position: absolute;
  top: -1.8rem;
  transform: translateX(-50%);
  font-size: 2rem;
}

.sun-moon__labels {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.loading-state {
  display: grid;
  place-items: center;
  min-height: 160px;
  color: var(--text-muted);
}

.loading-state .spinner-border {
  margin-bottom: 0.75rem;
}

.app-alert {
  --alert-accent: #f7c948;
  background: rgba(14, 26, 44, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.app-alert--minor {
  --alert-accent: #f7c948;
  border-top: 4px solid var(--alert-accent);
}

.app-alert--moderate {
  --alert-accent: #f59e0b;
  border-top: 4px solid var(--alert-accent);
}

.app-alert--severe {
  --alert-accent: #ef4444;
  border-top: 4px solid var(--alert-accent);
}

.app-alert--extreme {
  --alert-accent: #b91c1c;
  border-top: 4px solid var(--alert-accent);
}

.app-alert__toggle {
  width: 100%;
  border: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--alert-accent) 18%, rgba(8, 17, 31, 0.94)) 0%, rgba(8, 17, 31, 0.88) 62%);
  text-align: left;
}

.app-alert__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.app-alert__eyebrow {
  color: color-mix(in srgb, white 78%, var(--alert-accent) 22%);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.15rem;
}

.app-alert__title {
  color: var(--text-main);
  font-size: 1rem;
}

.app-alert__chevron {
  color: color-mix(in srgb, white 68%, var(--alert-accent) 32%);
}

.app-alert__actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.app-alert__notify {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff4da;
  font-size: 0.78rem;
  white-space: nowrap;
}

.app-alert__notify[data-state="enabled"] {
  background: rgba(52, 211, 153, 0.18);
  color: #d1fae5;
}

.app-alert__notify[data-state="blocked"] {
  background: rgba(251, 113, 133, 0.18);
  color: #ffe4e6;
}

.app-alert__body {
  padding: 1rem 1.15rem 1.15rem;
  background: rgba(14, 26, 44, 0.96);
  color: var(--text-main);
}

.app-alert__meta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.app-alert__meta-item {
  padding: 0.8rem 0.9rem;
  border-radius: 0.85rem;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.1);
}

.app-alert__meta-item span {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-bottom: 0.3rem;
}

.app-alert__meta-item strong {
  font-size: 0.92rem;
  color: var(--text-main);
}

.app-alert__section {
  margin-top: 0.85rem;
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  background: rgba(15, 23, 42, 0.68);
  border-left: 4px solid var(--alert-accent);
}

.app-alert__section h3 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
  color: var(--text-main);
}

.app-alert__section p {
  margin: 0 0 0.45rem;
  color: #d5dfed;
  line-height: 1.6;
}

.app-alert__section p:last-child {
  margin-bottom: 0;
}

.app-alert__section--muted {
  border-left-color: rgba(103, 232, 249, 0.65);
}

.app-alert__section--muted p {
  color: var(--text-muted);
}

.app-alert__source-note {
  font-size: 0.86rem;
}

.btn-info {
  color: #08111f;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .page-section {
    padding-top: 1.1rem;
  }

  .site-nav__lang-item {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .dashboard-panel__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .forecast-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-panel__copy {
    max-width: none;
  }

  .site-footer__inner {
    flex-direction: column;
  }
}

@media (max-width: 767.98px) {
  .hero-panel,
  .content-panel,
  .chart-panel,
  .tile,
  .wb-widget {
    padding: 1rem;
  }

  .hero-panel .row {
    row-gap: 1rem;
  }

  .hero-panel h1 {
    font-size: 1.8rem;
  }

  .hero-panel__lede {
    font-size: 1rem;
    margin-bottom: 0.65rem !important;
  }

  .hero-panel__copy {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 0.9rem !important;
  }

  .hero-panel__badges {
    gap: 0.45rem;
  }

  .subtle-badge {
    font-size: 0.74rem;
    padding: 0.32rem 0.56rem;
  }

  .clock-value {
    font-size: 1.85rem;
  }

  .radar-container,
  .radar-frame {
    min-height: 320px;
  }

  .wb-body {
    grid-template-columns: 1fr;
  }

  .dashboard-panel__grid {
    grid-template-columns: 1fr;
  }

  .dashboard-mini-tile__value {
    font-size: 1.4rem;
  }

  .dashboard-mini-tile__moon {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 0.7rem;
  }

  .moon-phase-visual {
    width: 46px;
    height: 46px;
  }

  .forecast-grid {
    grid-template-columns: 1fr;
  }

  .forecast-day-tile__meta-grid,
  .forecast-day-tile__meta-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .forecast-detail__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .forecast-detail__summary {
    gap: 0.65rem;
    flex-wrap: wrap;
  }

  .forecast-hour-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .app-alert__meta-grid {
    grid-template-columns: 1fr;
  }

  .app-alert__actions {
    gap: 0.55rem;
  }

  .app-alert__notify {
    font-size: 0.72rem;
    padding: 0.28rem 0.55rem;
  }
}
