:root {
  color-scheme: light;
  --bg: #fff8ed;
  --surface: #ffffff;
  --surface-soft: #f1f8f3;
  --ink: #10202b;
  --ink-soft: #243746;
  --muted: #64727c;
  --line: #eadfcb;
  --brand: #007d8f;
  --brand-dark: #075967;
  --accent: #f46f4e;
  --sun: #f7c84b;
  --sand: #f3dfbd;
  --palm: #2f8a57;
  --aqua: #42c6b3;
  --sky: #2f80ed;
  --radius: 8px;
  --shadow-sm: 0 8px 24px rgba(16, 32, 43, 0.08);
  --shadow-md: 0 18px 52px rgba(16, 32, 43, 0.14);
  --weather-bar-height: 42px;
  --site-nav-height: 72px;
  --site-header-offset: calc(var(--weather-bar-height) + var(--site-nav-height));
  --filter-sticky-offset: calc(var(--site-header-offset) + 8px);
}

* {
  box-sizing: border-box;
}

html {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  scroll-padding-top: calc(var(--site-header-offset) + 56px);
  background: var(--bg);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 237, 0) 420px),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none !important;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(215, 230, 228, 0.9);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.page,
.section {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__logo {
  width: 186px;
  height: auto;
}

.menu-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(16, 32, 43, 0.06);
  cursor: pointer;
}

.menu-button svg {
  width: 21px;
  height: 21px;
}

.site-nav {
  display: none;
  position: absolute;
  top: var(--site-header-offset);
  left: 0;
  right: 0;
  padding: 14px 16px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.site-nav[data-open] {
  display: grid;
  gap: 12px;
}

.breadcrumbs {
  width: min(1160px, calc(100% - 32px));
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 750;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
}

.breadcrumbs li + li::before {
  content: "/";
  flex: 0 0 auto;
  margin: 0 8px;
  color: rgba(100, 114, 124, 0.55);
}

.breadcrumbs a {
  color: var(--brand-dark);
  transition: color 160ms ease;
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span[aria-current="page"] {
  display: block;
  max-width: min(54vw, 560px);
  overflow: hidden;
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav a,
.admin-nav a {
  color: var(--muted);
  font-weight: 750;
  transition: color 160ms ease;
}

.site-nav a:hover,
.admin-nav a:hover {
  color: var(--brand);
}

.search-form {
  display: flex;
  min-width: 0;
  gap: 8px;
}

.site-nav .search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.search-form input,
.field {
  width: 100%;
  min-height: 44px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.search-form input:focus,
.field:focus {
  border-color: rgba(0, 124, 137, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 124, 137, 0.12);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  gap: 8px;
  padding: 11px 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(0, 124, 137, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.button:hover {
  background: var(--brand-dark);
  box-shadow: 0 12px 26px rgba(0, 124, 137, 0.24);
  transform: translateY(-1px);
}

.button--ghost {
  border-color: rgba(16, 32, 43, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  box-shadow: 0 8px 20px rgba(16, 32, 43, 0.07);
}

.button--ghost:hover {
  border-color: rgba(0, 124, 137, 0.28);
  background: var(--surface-soft);
  color: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(16, 32, 43, 0.1);
}

.button--ghost.is-active,
.button--ghost[aria-current="page"] {
  border-color: rgba(0, 124, 137, 0.42);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 124, 137, 0.2);
}

.button--icon {
  width: 44px;
  padding: 0;
}

.discovery-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  padding: 68px 0 34px;
  background:
    linear-gradient(105deg, rgba(12, 35, 44, 0.9), rgba(0, 125, 143, 0.72) 48%, rgba(244, 111, 78, 0.62)),
    var(--hero-image) center/cover;
  color: #fff;
}

.discovery-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--sun), var(--accent), var(--palm), var(--brand));
}

.discovery-hero__inner {
  position: relative;
  display: grid;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  gap: 28px;
}

.discovery-hero__copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
}

.discovery-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 3rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.discovery-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-search-panel {
  display: grid;
  gap: 10px;
  width: min(100%, 1080px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.hero-search-panel__field,
.filter-bar label {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.hero-search-panel__submit {
  width: 100%;
}

.hero-search-panel__field span,
.filter-bar label span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-search-panel__field span {
  color: rgba(255, 255, 255, 0.82);
}

.hero-search-panel input,
.hero-search-panel select,
.filter-bar input,
.filter-bar select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(16, 32, 43, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  outline: none;
  padding: 11px 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.hero-search-panel input:focus,
.hero-search-panel select:focus,
.filter-bar input:focus,
.filter-bar select:focus {
  border-color: rgba(0, 124, 137, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 124, 137, 0.14);
}

.hero-search-panel__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 2px;
}

.hero-search-panel__quick a,
.filter-bar__quick a {
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(16, 32, 43, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 46px 0 30px;
  background:
    linear-gradient(100deg, rgba(16, 32, 43, 0.94) 0%, rgba(0, 124, 137, 0.86) 54%, rgba(242, 106, 79, 0.72) 100%),
    url("../img/florida-events-placeholder.svg") center/cover;
  color: #fff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--sun), var(--accent), var(--aqua), var(--sky));
}

.hero__inner {
  position: relative;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.hero__content {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.eyebrow,
.hero__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 30px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 2.7rem;
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hero__actions .button,
.hero__actions .pill {
  flex: 0 0 auto;
}

.hero__search {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.search-form--hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.search-form--hero input {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.96);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero__stats a {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(16, 32, 43, 0.2);
}

.hero__stats strong,
.hero__stats span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero__stats strong {
  color: #fff;
  font-size: 0.95rem;
}

.hero__stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.page {
  padding: 32px 0 62px;
}

.section {
  padding: 34px 0;
}

.section[id] {
  scroll-margin-top: 120px;
}

.section--compact {
  padding-top: 26px;
}

.search-section {
  padding-top: 18px;
}

.search-result-card {
  align-content: start;
}

.search-result-card .pill {
  justify-self: start;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.section-header h1,
.section-header h2,
.page-title {
  margin: 0;
  color: var(--ink);
  font-size: 1.8rem;
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.section-header p,
.muted {
  color: var(--muted);
}

.section-header p {
  max-width: 720px;
  margin: 8px 0 0;
  line-height: 1.55;
}

.section-kicker {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-filter-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-shell {
  position: sticky;
  top: var(--filter-sticky-offset);
  z-index: 12;
  margin: 0 0 22px;
  padding: 12px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}

.filter-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.filter-bar__query {
  min-width: 0;
}

.filter-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-bar__actions .button {
  min-width: 0;
  flex: 1 1 auto;
}

.filter-bar__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 32, 43, 0.08);
}

.filter-bar__quick a {
  border-color: rgba(16, 32, 43, 0.1);
  background: var(--surface-soft);
  color: var(--ink-soft);
}

.filter-shell[data-stuck] {
  padding: 8px;
  box-shadow: 0 12px 34px rgba(16, 35, 49, 0.12);
}

.filter-shell[data-stuck] .filter-bar {
  gap: 8px;
}

.filter-shell[data-stuck] .filter-bar label {
  gap: 0;
}

.filter-shell[data-stuck] .filter-bar label span {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.filter-shell[data-stuck] .filter-bar input,
.filter-shell[data-stuck] .filter-bar select {
  min-height: 38px;
  padding: 7px 10px;
  font-size: 0.92rem;
}

.filter-shell[data-stuck] .filter-bar__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.filter-shell[data-stuck] .filter-bar__actions .button {
  min-height: 38px;
  padding: 7px 11px;
  font-size: 0.92rem;
}

.filter-shell[data-stuck] .filter-bar__quick {
  display: none;
}

.mobile-filter-button {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  box-shadow: var(--shadow-md);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.category-tile {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 132px;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(16, 32, 43, 0.08);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.category-tile:hover,
.city-card:hover,
.listing-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.category-tile__icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.category-tile strong {
  font-size: 1.02rem;
}

.category-tile small {
  color: var(--muted);
  font-size: 0.88rem;
}

.category-tile--ocean {
  background: linear-gradient(145deg, rgba(0, 125, 143, 0.14), #fff);
}

.category-tile--sunset {
  background: linear-gradient(145deg, rgba(244, 111, 78, 0.16), #fff);
}

.category-tile--palm {
  background: linear-gradient(145deg, rgba(47, 138, 87, 0.16), #fff);
}

.category-tile--sand {
  background: linear-gradient(145deg, rgba(243, 223, 189, 0.72), #fff);
}

.featured-carousel {
  --carousel-gap: 16px;
  --carousel-items: 1;
  position: relative;
}

.featured-rail {
  display: grid;
  grid-auto-columns: calc((100% - (var(--carousel-gap) * (var(--carousel-items) - 1))) / var(--carousel-items));
  grid-auto-flow: column;
  gap: var(--carousel-gap);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 0 18px;
  overscroll-behavior-inline: contain;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y;
  user-select: none;
  cursor: grab;
}

.featured-rail::-webkit-scrollbar {
  display: none;
}

.featured-rail > * {
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.featured-rail.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.featured-rail.is-dragging a {
  pointer-events: none;
}

.carousel-button {
  position: absolute;
  top: 44%;
  z-index: 5;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(16, 32, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: var(--shadow-md);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.carousel-button:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
}

.carousel-button--prev {
  left: 8px;
  transform: translateY(-50%);
}

.carousel-button--next {
  right: 8px;
  transform: translateY(-50%);
}

.carousel-button[hidden] {
  display: none;
}

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

.grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.listing-card {
  position: relative;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.listing-card:hover {
  border-color: rgba(0, 125, 143, 0.24);
}

.listing-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  background: #d9ece8;
}

.listing-card__media img {
  width: 100%;
  transition: transform 240ms ease;
}

.listing-card:hover .listing-card__media img {
  transform: scale(1.035);
}

.listing-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  overflow: hidden;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(16, 32, 43, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.listing-card__body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.listing-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.listing-card__price {
  min-height: 28px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(47, 138, 87, 0.12);
  color: #236b44;
  font-size: 0.78rem;
  font-weight: 900;
}

.listing-card h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.28;
}

.listing-card__description {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover {
  border-color: rgba(0, 124, 137, 0.22);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card__media {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #d9ece8;
  object-fit: cover;
}

.media-credit {
  display: block;
  padding: 9px 12px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.guide-gallery__item {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.guide-gallery__item img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: #d9ece8;
}

.guide-gallery__item figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 9px 11px;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

.guide-gallery__item a {
  color: var(--brand-dark);
  font-weight: 850;
}

.poster {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #d9ece8;
}

.movie-feed-image {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background: #d9ece8;
}

.card__body {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 15px;
}

.card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.card h3 a:hover {
  color: var(--brand);
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
}

.pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(242, 106, 79, 0.12);
  color: #9f3a29;
  font-size: 0.82rem;
  font-weight: 850;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail {
  display: grid;
  gap: 24px;
}

.detail__media {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.detail__media > img {
  display: block;
}

.detail__media .media-credit {
  line-height: 1.35;
}

.detail__media-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 6px;
  padding: 6px;
  border-top: 1px solid var(--line);
  background: var(--surface);
  line-height: 0;
}

.detail__media-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  object-fit: cover;
  background: #d9ece8;
}

.detail__content {
  display: grid;
  align-content: start;
  gap: 16px;
}

.movie-detail .detail__content {
  order: -1;
}

.movie-detail--feed-only .detail__media {
  background: linear-gradient(135deg, rgba(0, 124, 137, 0.1), rgba(244, 111, 78, 0.12));
  order: -2;
}

.movie-detail--feed-only .detail__content {
  order: -1;
}

.detail h1 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.prose {
  color: var(--ink-soft);
  line-height: 1.75;
}

.rating-grid,
.review-grid,
.watch-provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.rating-card,
.review-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.rating-card span,
.review-card small {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.rating-card strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.rating-card a,
.review-card a {
  width: fit-content;
  color: var(--brand);
  font-weight: 850;
}

.rating-source-panel {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.rating-source-panel h3,
.rating-source-panel p {
  margin: 0;
}

.rating-source-panel p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.55;
}

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

.rating-source-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-width: 0;
  min-height: 72px;
  padding: 12px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.rating-source-card:hover {
  border-color: rgba(0, 125, 143, 0.24);
  box-shadow: var(--shadow-md);
}

.watch-provider-groups {
  display: grid;
  gap: 24px;
}

.watch-provider-group {
  display: grid;
  gap: 12px;
}

.watch-provider-group h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.2;
}

.watch-provider-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  min-width: 0;
  min-height: 72px;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.watch-provider-card:hover {
  border-color: rgba(0, 125, 143, 0.24);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.watch-provider-card img,
.watch-provider-card__logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #d9ece8;
}

.watch-provider-card img {
  object-fit: cover;
}

.watch-provider-card__logo {
  display: grid;
  place-items: center;
  color: var(--brand-dark);
  font-size: 0.85rem;
  font-weight: 900;
}

.watch-provider-card__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.watch-provider-card strong,
.watch-provider-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.watch-provider-card strong {
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.25;
}

.watch-provider-card small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.showtime-empty {
  display: grid;
  gap: 8px;
}

.showtime-empty[hidden] {
  display: none !important;
}

.showtime-empty strong {
  color: var(--ink);
}

.showtime-search-group {
  margin-top: 18px;
}

.showtime-search-grid .watch-provider-card__text {
  gap: 6px;
}

.showtime-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 850;
}

.showtime-card-links a {
  color: var(--brand);
}

.showtime-browser {
  display: grid;
  gap: 16px;
}

.showtime-filter-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.showtime-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: end;
}

.showtime-filter-grid--venue {
  grid-template-columns: minmax(220px, 1.35fr) minmax(150px, 0.8fr) minmax(160px, 0.9fr) auto;
}

.showtime-filter-field {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.showtime-filter-field span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.showtime-filter-field input,
.showtime-filter-field select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 32, 43, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.showtime-filter-field input:focus,
.showtime-filter-field select:focus {
  border-color: rgba(0, 124, 137, 0.72);
  box-shadow: 0 0 0 4px rgba(0, 124, 137, 0.14);
}

.cinema-finder {
  display: grid;
  gap: 18px;
}

.cinema-finder__filters {
  display: grid;
  gap: 12px;
}

.cinema-finder__grid {
  grid-template-columns: minmax(220px, 1.4fr) minmax(150px, 0.8fr) minmax(150px, 0.8fr) minmax(150px, 0.7fr) auto auto;
}

.cinema-finder__toggle > label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(16, 32, 43, 0.12);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 850;
}

.cinema-finder__toggle input {
  width: 18px;
  height: 18px;
}

.cinema-finder__status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.cinema-finder__status span:first-child {
  color: var(--brand-dark);
}

.cinema-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
}

.cinema-card[hidden] {
  display: none;
}

.cinema-card__meta span {
  max-width: 100%;
}

.cinema-card__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.showtime-filter-summary {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.showtime-groups {
  display: grid;
  gap: 14px;
}

.showtime-cinema-group {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.showtime-cinema-group__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(238, 250, 250, 0.86), rgba(255, 255, 255, 0.96));
}

.showtime-cinema-group__header h3,
.showtime-date-group h4 {
  margin: 0;
}

.showtime-cinema-group__header h3 {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.25;
}

.showtime-cinema-group__header a {
  color: var(--brand-dark);
}

.showtime-cinema-group__header p,
.showtime-cinema-group__header span {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.showtime-cinema-group__header > span {
  flex: 0 0 auto;
  margin: 0;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(0, 124, 137, 0.1);
  color: var(--brand-dark);
}

.showtime-date-groups {
  display: grid;
  gap: 14px;
  padding: 14px 16px 16px;
}

.showtime-date-group {
  display: grid;
  gap: 8px;
}

.showtime-date-group h4 {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showtime-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.showtime-chip {
  display: inline-grid;
  place-items: center;
  min-width: 84px;
  min-height: 48px;
  gap: 2px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 124, 137, 0.2);
  border-radius: 8px;
  background: #f5fbfa;
  color: var(--brand-dark);
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

a.showtime-chip:hover {
  border-color: rgba(0, 124, 137, 0.42);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.showtime-chip__time,
.showtime-chip small {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.showtime-chip small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
}

.showtime-chip--muted {
  border-color: rgba(16, 32, 43, 0.1);
  background: var(--surface-soft);
  color: var(--muted);
}

.showtime-filtered-empty {
  margin-top: 0;
}

.review-grid {
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}

.review-card__header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.review-card__header span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.review-card__header strong {
  overflow: hidden;
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-card__header em {
  flex: 0 0 auto;
  min-height: 28px;
  padding: 6px 8px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--brand-dark);
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.google-map-widget {
  display: grid;
  gap: 0;
}

.google-map-widget__frame {
  overflow: hidden;
  min-height: 360px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: #eef7f5;
  box-shadow: var(--shadow-sm);
}

.google-map-widget__frame iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.video-card {
  overflow: hidden;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: var(--ink);
}

.video-card__body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.video-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.person-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px;
}

.person-card__media {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
  background: #d9ece8;
}

.person-card__avatar,
.person-avatar {
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(0, 124, 137, 0.96), rgba(16, 32, 43, 0.92)),
    #007c89;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0;
}

.person-card__avatar {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  font-size: 1rem;
}

.person-avatar--large.poster {
  min-height: 220px;
  aspect-ratio: 3 / 2;
}

.person-avatar--large span {
  display: grid;
  width: clamp(92px, 34%, 160px);
  aspect-ratio: 1;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 1;
}

.person-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.person-card strong,
.person-card small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.person-card small {
  color: var(--muted);
  font-size: 0.85rem;
}

.city-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.city-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 210px;
  overflow: hidden;
  padding: 18px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(16, 32, 43, 0.1), rgba(16, 32, 43, 0.82)),
    var(--city-image) center/cover;
  color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.city-card span {
  font-size: 1.35rem;
  font-weight: 950;
}

.city-card small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.discovery-detail {
  align-items: start;
}

.detail-planner {
  display: grid;
  gap: 16px;
}

.info-panel,
.map-preview {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 43, 0.1);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.info-panel h2 {
  margin: 0;
  font-size: 1.35rem;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}

.info-list span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  background: var(--surface-soft);
}

.info-list strong,
.info-list small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-list small {
  color: var(--muted);
}

.map-preview {
  align-content: end;
  min-height: 240px;
  background:
    linear-gradient(135deg, rgba(0, 125, 143, 0.88), rgba(47, 138, 87, 0.78)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.16) 0 2px, transparent 2px 18px);
  color: #fff;
}

.map-preview span {
  width: fit-content;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-preview strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.map-preview small {
  color: rgba(255, 255, 255, 0.82);
}

.empty {
  padding: 24px;
  border: 1px dashed rgba(0, 124, 137, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.table-wrap--spaced + .table-wrap--spaced {
  margin-top: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

caption {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 900;
  text-align: left;
}

th,
td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 900;
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fff4df;
  color: var(--muted);
}

.site-footer .section {
  padding: 0;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  width: 176px;
  height: auto;
  margin-bottom: 10px;
}

.site-footer p {
  max-width: 680px;
  margin: 0;
  line-height: 1.6;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer nav strong {
  color: var(--ink);
}

.site-footer nav a {
  color: var(--muted);
  font-weight: 750;
}

.site-footer nav a:hover {
  color: var(--brand-dark);
}

.auth-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.auth-panel,
.admin-panel {
  width: min(420px, 100%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.admin-layout {
  display: grid;
  gap: 20px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
}

.admin-layout .breadcrumbs {
  width: 100%;
  margin: -4px 0 0;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.admin-page {
  display: grid;
  gap: 22px;
}

.admin-widget-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.admin-widget {
  display: grid;
  align-content: space-between;
  min-height: 132px;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.admin-widget span,
.admin-widget small {
  color: var(--muted);
  line-height: 1.35;
}

.admin-widget strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.admin-widget--bad {
  border-color: rgba(242, 106, 79, 0.42);
  background: #fff7f4;
}

.admin-widget--good {
  border-color: rgba(0, 124, 137, 0.3);
  background: var(--surface-soft);
}

.admin-section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  align-items: start;
}

.admin-section {
  display: grid;
  gap: 12px;
}

.admin-section__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.admin-section__header h2 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.15;
}

.admin-section__header a {
  color: var(--brand);
  font-weight: 800;
}

.admin-link-grid {
  display: grid;
  gap: 8px;
}

.admin-link-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.admin-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.admin-link-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
}

.admin-link-row strong {
  font-size: 1.25rem;
}

.admin-link-row--bad {
  border-color: rgba(242, 106, 79, 0.4);
  background: #fff7f4;
}

.admin-link-row--warn {
  border-color: rgba(247, 200, 75, 0.8);
  background: #fffaf0;
}

.admin-link-row--good {
  border-color: rgba(0, 124, 137, 0.26);
  background: var(--surface-soft);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: #eef2f1;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
}

.status-pill--completed,
.status-pill--success {
  background: rgba(0, 124, 137, 0.12);
  color: var(--brand-dark);
}

.status-pill--failed,
.status-pill--error {
  background: rgba(242, 106, 79, 0.13);
  color: #9f3a29;
}

.status-pill--running,
.status-pill--pending {
  background: rgba(247, 200, 75, 0.22);
  color: #785c08;
}

.pagination,
.admin-periods {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.admin-periods {
  justify-content: flex-end;
}

.pagination__status {
  color: var(--muted);
  font-weight: 750;
}

.button--disabled {
  opacity: 0.5;
  pointer-events: none;
}

.metric-bar {
  display: inline-block;
  overflow: hidden;
  width: 96px;
  height: 8px;
  margin-right: 8px;
  border-radius: 999px;
  background: #eef2f1;
  vertical-align: middle;
}

.metric-bar span {
  display: block;
  width: var(--bar-width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.source-pill {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7faf9;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.2;
  white-space: nowrap;
}

.source-pill--direct {
  border-color: rgba(92, 105, 117, 0.28);
  background: #f3f6f6;
}

.source-pill--internal {
  border-color: rgba(0, 124, 137, 0.28);
  background: #effafa;
}

.source-pill--organic-search {
  border-color: rgba(24, 128, 77, 0.28);
  background: #eff8f1;
}

.source-pill--social {
  border-color: rgba(56, 91, 179, 0.24);
  background: #f0f4ff;
}

.source-pill--referral {
  border-color: rgba(141, 94, 41, 0.28);
  background: #fff7ec;
}

.source-pill--paid,
.source-pill--campaign,
.source-pill--email {
  border-color: rgba(122, 81, 169, 0.24);
  background: #f7f1fb;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.stat {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 1.7rem;
}

.admin-thumb {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  background: #d9ece8;
}

@media (max-width: 520px) {
  .brand__logo {
    width: 158px;
  }

	  .site-header__inner,
	  .page,
	  .section,
	  .breadcrumbs,
	  .hero__inner,
	  .discovery-hero__inner {
	    width: min(100% - 24px, 1160px);
	  }

  .discovery-hero {
    min-height: auto;
    padding: 44px 0 30px;
  }

  .discovery-hero h1 {
    font-size: 2.3rem;
  }

  .featured-carousel {
    --carousel-items: 1;
  }

  .filter-shell {
    position: static;
  }

  .showtime-filter-grid {
    grid-template-columns: 1fr;
  }

  .cinema-finder__grid {
    grid-template-columns: 1fr;
  }

  .filter-bar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero__actions {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .hero h1 {
	    font-size: 2.25rem;
	  }

  .search-form {
    flex-wrap: wrap;
  }

  .search-form .button:not(.button--icon) {
    width: 100%;
  }

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

  .section-header {
    align-items: start;
    flex-direction: column;
  }

	  .grid,
	  .grid--wide {
	    grid-template-columns: 1fr;
	  }
		}

@media (max-width: 779px) {
  .filter-shell {
    position: static;
  }

  .filter-bar__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .showtime-filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .showtime-filter-grid .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .showtime-cinema-group__header {
    align-items: stretch;
    flex-direction: column;
  }

  .showtime-cinema-group__header > span {
    width: fit-content;
  }

  .showtime-chip {
    flex: 1 1 96px;
  }
}

	@media (min-width: 780px) {
  .menu-button {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

	  .site-nav .search-form {
	    width: 300px;
	  }

  .mobile-filter-button {
    display: none;
  }

  .discovery-hero {
    min-height: 650px;
    padding: 92px 0 48px;
  }

  .discovery-hero__inner {
    grid-template-columns: minmax(0, 1fr);
    align-content: end;
    min-height: 500px;
  }

  .discovery-hero h1 {
    font-size: 4.6rem;
  }

  .hero-search-panel {
    grid-template-columns: minmax(260px, 1fr) minmax(138px, 0.62fr) minmax(150px, 0.68fr);
    align-items: end;
  }

  .hero-search-panel__quick {
    grid-column: 1 / -1;
  }

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

  .filter-bar {
    grid-template-columns: minmax(220px, 1fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr);
    align-items: end;
  }

  .filter-bar__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .detail-planner {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) 180px 220px;
  }

	  .hero {
	    padding: 74px 0 46px;
	  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 388px);
    align-items: end;
  }

  .hero h1 {
    font-size: 4.45rem;
  }

  .search-form--hero {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .section-header h1,
  .section-header h2,
  .page-title {
    font-size: 2.25rem;
  }

  .detail {
    grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  }

  .movie-detail--feed-only {
    grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  }

  .person-avatar--large.poster {
    min-height: 320px;
    aspect-ratio: 2 / 3;
  }

  .movie-detail .detail__content {
    order: 0;
  }

  .movie-detail--feed-only .detail__media,
  .movie-detail--feed-only .detail__content {
    order: 0;
  }

  .detail h1 {
    font-size: 3.4rem;
  }
}

@media (min-width: 980px) {
  .admin-section-grid--wide {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  }
}

@media (min-width: 1040px) {
  .hero-search-panel {
    grid-template-columns: minmax(280px, 1.45fr) minmax(140px, 0.66fr) minmax(164px, 0.74fr) minmax(132px, 0.6fr) auto;
  }

  .filter-bar {
    grid-template-columns: minmax(240px, 1.45fr) minmax(128px, 0.62fr) minmax(145px, 0.7fr) minmax(120px, 0.58fr) minmax(145px, 0.7fr) minmax(128px, 0.62fr);
  }
}

@media (max-width: 520px) {
  .showtime-filter-grid {
    grid-template-columns: 1fr;
  }
}

/* Commercial discovery redesign */
:root {
  --bg: #fffaf2;
  --surface: #ffffff;
  --surface-soft: #eef9f5;
  --surface-warm: #fff3df;
  --ink: #102331;
  --ink-soft: #314657;
  --muted: #687887;
  --line: #eadfcb;
  --brand: #007c89;
  --brand-dark: #075967;
  --accent: #f46f4e;
  --sun: #f7c84b;
  --sand: #f3dfbd;
  --palm: #2f8a57;
  --sky: #2f80ed;
  --shadow-sm: 0 10px 26px rgba(16, 35, 49, 0.08);
  --shadow-md: 0 22px 58px rgba(16, 35, 49, 0.14);
}

body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0, rgba(255, 250, 242, 0.64) 460px, rgba(255, 250, 242, 1) 100%),
    var(--bg);
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(234, 223, 203, 0.82);
  box-shadow: 0 12px 30px rgba(16, 35, 49, 0.06);
}

.site-nav > a {
  min-height: 38px;
  padding: 9px 2px;
  color: var(--ink-soft);
}

.site-nav > a:hover {
  color: var(--brand-dark);
}

.site-nav .search-form input {
  border-color: rgba(16, 35, 49, 0.1);
  background: #fffdf8;
}

.button {
  min-height: 46px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--brand), #0a6d78);
  box-shadow: 0 14px 30px rgba(0, 124, 137, 0.24);
}

.button:hover {
  background: linear-gradient(135deg, var(--brand-dark), #084a56);
}

.button--ghost {
  border-color: rgba(16, 35, 49, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-dark);
  box-shadow: 0 10px 24px rgba(16, 35, 49, 0.08);
}

.button--ghost:hover {
  border-color: rgba(7, 89, 103, 0.72);
  background: linear-gradient(135deg, var(--brand-dark), #084a56);
  color: #fff;
  box-shadow: 0 14px 30px rgba(7, 89, 103, 0.22);
}

.button--ghost:focus-visible {
  outline: 3px solid rgba(247, 200, 75, 0.78);
  outline-offset: 3px;
}

.discovery-hero {
  min-height: 720px;
  padding: 64px 0 40px;
  background:
    linear-gradient(90deg, rgba(7, 32, 45, 0.92) 0%, rgba(7, 32, 45, 0.78) 42%, rgba(0, 124, 137, 0.42) 72%, rgba(244, 111, 78, 0.34) 100%),
    var(--hero-image) center/cover;
}

.discovery-hero__inner {
  min-height: 590px;
  align-content: end;
}

.discovery-hero__copy {
  max-width: 900px;
}

.discovery-hero h1 {
  max-width: 940px;
  text-wrap: balance;
}

.discovery-hero p {
  max-width: 740px;
}

.hero-search-panel {
  width: min(100%, 1120px);
  gap: 12px;
  padding: 14px;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 80px rgba(7, 32, 45, 0.28);
}

.hero-search-panel__field span {
  color: var(--muted);
}

.hero-search-panel input,
.hero-search-panel select {
  border-color: rgba(16, 35, 49, 0.1);
  background: #fffdf8;
}

.hero-search-panel__quick {
  gap: 10px;
}

.hero-search-panel__quick a,
.filter-bar__quick a,
.page-hero__quick a {
  min-height: 36px;
  border-color: rgba(0, 124, 137, 0.18);
  background: #eef9f7;
  color: var(--brand-dark);
}

.hero-search-panel__quick a:hover,
.filter-bar__quick a:hover,
.page-hero__quick a:hover {
  border-color: rgba(244, 111, 78, 0.36);
  background: #fff4ec;
  color: #9f3a29;
}

.page {
  padding-top: 28px;
}

.page-hero {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  min-height: 330px;
  margin-bottom: 24px;
  padding: 26px;
  border-radius: 8px;
  background:
    linear-gradient(105deg, rgba(7, 32, 45, 0.92), rgba(7, 32, 45, 0.64) 58%, rgba(244, 111, 78, 0.26)),
    var(--page-hero-image) center/cover;
  color: #fff;
  box-shadow: var(--shadow-md);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: linear-gradient(90deg, var(--sun), var(--accent), var(--palm), var(--brand));
}

.page-hero__content,
.page-hero__panel {
  position: relative;
  z-index: 1;
}

.page-hero__content {
  display: grid;
  align-content: end;
  gap: 14px;
  max-width: 720px;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1;
  text-wrap: balance;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.65;
}

.page-hero__actions,
.page-hero__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-hero__quick a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border: 1px solid rgba(0, 124, 137, 0.18);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 850;
}

.page-hero__panel {
  align-self: end;
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.page-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.page-hero__stats span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
}

.page-hero__stats strong,
.page-hero__stats small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.page-hero__stats strong {
  font-size: 1.35rem;
  line-height: 1;
}

.page-hero__stats small {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.section {
  padding: 38px 0;
}

.section-header {
  margin-bottom: 20px;
}

.section-header h1,
.section-header h2,
.page-title {
  font-weight: 950;
  text-wrap: balance;
}

.section-kicker {
  color: var(--brand-dark);
  letter-spacing: 0.04em;
}

.filter-shell {
  top: var(--filter-sticky-offset);
  margin-bottom: 28px;
  border-color: rgba(16, 35, 49, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 48px rgba(16, 35, 49, 0.1);
}

.filter-bar input,
.filter-bar select {
  background: #fffdf8;
}

.category-grid {
  gap: 14px;
}

.category-tile {
  grid-template-columns: 54px minmax(0, 1fr);
  align-content: end;
  align-items: end;
  min-height: 180px;
  gap: 14px;
  border: 0;
  background:
    linear-gradient(180deg, rgba(7, 32, 45, 0.1), rgba(7, 32, 45, 0.86)),
    var(--category-image) center/cover;
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.category-tile__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
  backdrop-filter: blur(10px);
}

.category-tile strong {
  display: block;
  color: #fff;
  font-size: 1.16rem;
  line-height: 1.05;
}

.category-tile small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.featured-carousel {
  --carousel-gap: 18px;
}

.grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}

.grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
}

.listing-card {
  border-color: rgba(16, 35, 49, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.listing-card__media {
  min-height: 190px;
}

.listing-card__media .card__media {
  aspect-ratio: 16 / 11;
}

.listing-card__badge {
  background: rgba(7, 32, 45, 0.78);
  backdrop-filter: blur(10px);
}

.listing-card__date {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  min-width: 58px;
  min-height: 58px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 24px rgba(7, 32, 45, 0.18);
  text-align: center;
}

.listing-card__date strong {
  font-size: 0.72rem;
  line-height: 1;
}

.listing-card__date small {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.listing-card__body {
  gap: 12px;
  padding: 16px;
}

.listing-card h3 {
  font-size: 1.12rem;
}

.listing-card h3 a:hover {
  color: var(--brand-dark);
}

.listing-card__price {
  background: rgba(47, 138, 87, 0.12);
  color: #236b44;
}

.listing-card__cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  color: var(--brand-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.listing-card__cta::after {
  content: ">";
  margin-left: 7px;
  transition: transform 160ms ease;
}

.listing-card:hover .listing-card__cta::after {
  transform: translateX(3px);
}

.meta span {
  background: #f4faf7;
}

.pill {
  background: rgba(244, 111, 78, 0.12);
  color: #983927;
}

.detail {
  align-items: start;
  gap: 28px;
}

.detail__media {
  border-color: rgba(16, 35, 49, 0.08);
  box-shadow: var(--shadow-md);
}

.detail__media .card__media {
  aspect-ratio: 16 / 11;
}

.detail__content {
  gap: 18px;
}

.detail h1 {
  max-width: 820px;
  font-weight: 950;
  text-wrap: balance;
}

.detail-planner {
  align-items: stretch;
}

.info-panel,
.map-preview,
.rating-card,
.review-card,
.watch-provider-card,
.guide-gallery__item,
.showtime-filter-panel,
.showtime-cinema-group,
.table-wrap {
  border-color: rgba(16, 35, 49, 0.08);
  box-shadow: var(--shadow-sm);
}

.info-panel {
  background:
    linear-gradient(180deg, #ffffff, #fffaf2);
}

.info-list span {
  background: #f4faf7;
}

.map-preview {
  background:
    linear-gradient(135deg, rgba(0, 124, 137, 0.9), rgba(47, 138, 87, 0.82)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.14) 25%, transparent 25% 50%, rgba(255, 255, 255, 0.14) 50% 75%, transparent 75%);
  background-size: auto, 28px 28px;
}

.empty {
  border-color: rgba(0, 124, 137, 0.24);
  background:
    linear-gradient(135deg, rgba(238, 249, 247, 0.94), rgba(255, 250, 242, 0.94));
  color: var(--ink-soft);
  font-weight: 750;
}

.city-card {
  min-height: 230px;
  box-shadow: var(--shadow-sm);
}

.site-footer {
  background: linear-gradient(180deg, #fff5e4, #ffffff);
}

@media (min-width: 780px) {
  .featured-carousel {
    --carousel-items: 2;
  }

  .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
    align-items: end;
    padding: 34px;
  }

  .page-hero h1 {
    font-size: 3.2rem;
  }

  .discovery-hero {
    padding-top: 88px;
  }

  .hero-search-panel {
    grid-template-columns: minmax(260px, 1fr) minmax(138px, 0.62fr) minmax(150px, 0.68fr);
  }

  .discovery-detail {
    grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  }

  .discovery-detail .detail__media .card__media {
    min-height: 260px;
  }
}

@media (min-width: 1040px) {
  .featured-carousel {
    --carousel-items: 3;
  }

  .hero-search-panel {
    grid-template-columns: minmax(300px, 1.45fr) minmax(140px, 0.66fr) minmax(164px, 0.74fr) minmax(132px, 0.6fr) auto;
  }
}

@media (max-width: 779px) {
  .discovery-hero {
    min-height: auto;
    padding: 42px 0 30px;
  }

  .discovery-hero__inner {
    min-height: 0;
  }

  .hero-search-panel {
    background: rgba(255, 255, 255, 0.97);
  }

  .page-hero {
    min-height: 340px;
    padding: 22px;
  }

  .page-hero h1 {
    font-size: 2.25rem;
  }

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

  .category-tile {
    min-height: 154px;
  }

  .featured-carousel {
    --carousel-items: 1;
  }

  .listing-card__media {
    min-height: 180px;
  }
}

@media (max-width: 520px) {
  .page {
    padding-top: 20px;
  }

  .section {
    padding: 30px 0;
  }

  .discovery-hero h1 {
    font-size: 2.35rem;
  }

  .discovery-hero p,
  .page-hero p {
    font-size: 0.98rem;
  }

  .page-hero {
    margin-bottom: 18px;
  }

  .page-hero__panel {
    padding: 12px;
  }

  .page-hero__stats {
    grid-template-columns: 1fr 1fr;
  }

  .filter-shell {
    margin-bottom: 20px;
  }
}

.weather-widget {
  position: relative;
  border-bottom: 1px solid rgba(66, 198, 179, 0.25);
  background: linear-gradient(90deg, rgba(0, 125, 143, 0.1), rgba(247, 200, 75, 0.16), rgba(47, 138, 87, 0.1));
}

html {
  scroll-padding-top: calc(var(--site-header-offset) + 56px);
}

.site-nav {
  top: var(--site-header-offset);
}

.weather-widget__summary {
  display: flex;
  align-items: center;
  width: min(1160px, calc(100% - 32px));
  min-height: 42px;
  margin: 0 auto;
  padding: 7px 0;
  gap: 10px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.weather-widget__icon,
.weather-day__icon,
.weather-panel__city span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-dark);
}

.weather-widget__icon svg,
.weather-day__icon svg,
.weather-panel__city svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.weather-widget__copy {
  display: flex;
  align-items: baseline;
  min-width: 0;
  gap: 10px;
}

.weather-widget__title {
  flex: 0 0 auto;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 850;
}

.weather-widget__meta {
  min-width: 0;
  overflow: hidden;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weather-widget__chevron {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-left: auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 160ms ease;
}

.weather-widget[data-open] .weather-widget__chevron {
  transform: rotate(225deg) translateY(-1px);
}

.weather-panel {
  position: absolute;
  top: calc(100% + 72px);
  left: 50%;
  z-index: 45;
  width: min(1160px, calc(100% - 32px));
  max-height: min(620px, calc(100vh - 118px));
  padding: 16px;
  overflow: auto;
  border: 1px solid rgba(0, 125, 143, 0.18);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.weather-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.weather-panel__header div {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.weather-panel__header strong {
  color: var(--ink);
  font-size: 1rem;
}

.weather-panel__cities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.weather-panel__city {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 62px;
  padding: 9px;
  gap: 8px;
  border: 1px solid rgba(16, 35, 49, 0.1);
  border-radius: 8px;
  background: #fffdf8;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.weather-panel__city[data-active] {
  border-color: rgba(0, 125, 143, 0.44);
  background: rgba(66, 198, 179, 0.12);
  box-shadow: 0 0 0 3px rgba(66, 198, 179, 0.1);
}

.weather-panel__city strong,
.weather-panel__city small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.weather-panel__city strong {
  font-size: 0.9rem;
}

.weather-panel__city small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
}

.weather-panel__days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.weather-day {
  display: grid;
  min-height: 150px;
  padding: 12px;
  gap: 6px;
  border: 1px solid rgba(16, 35, 49, 0.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f4fbf9);
}

.weather-day strong,
.weather-day b {
  color: var(--ink);
}

.weather-day span {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 760;
}

.weather-day small {
  align-self: end;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 779px) {
  .filter-shell {
    position: sticky;
    top: var(--filter-sticky-offset);
  }

  .weather-widget__copy {
    display: grid;
    gap: 1px;
  }

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

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

@media (max-width: 520px) {
  :root {
    --weather-bar-height: 48px;
  }

  .weather-widget__summary {
    min-height: 48px;
  }

  .site-nav {
    top: var(--site-header-offset);
  }

  .weather-widget__title,
  .weather-widget__meta {
    font-size: 0.78rem;
  }

  .weather-panel {
    width: calc(100% - 16px);
    padding: 12px;
  }

  .weather-panel__cities,
  .weather-panel__days {
    grid-template-columns: 1fr;
  }

  .weather-day {
    min-height: 118px;
  }
}
