/* Welcome to Azerbaijan — exploratory travel guide */

.wa-page {
  --wa-navy: #0c1b33;
  --wa-navy-mid: #16304f;
  --wa-gold: #c9a962;
  --wa-gold-deep: #8a6d2f;
  --wa-sand: #e8dfd0;
  --wa-mist: #f3f0ea;
  --wa-line: rgba(12, 27, 51, 0.1);
  --wa-text: #2a3340;
  --wa-muted: #5c6675;
  --wa-white: #fff;
  --wa-radius: 16px;
  --wa-shadow: 0 18px 40px rgba(12, 27, 51, 0.08);
  background:
    radial-gradient(ellipse 70% 40% at 0% 0%, rgba(201, 169, 98, 0.08), transparent 55%),
    linear-gradient(180deg, #f7f4ef 0%, #f3f0ea 40%, #efeae2 100%);
  color: var(--wa-text);
}

.wa-page .site-header.is-scrolled,
.wa-page .site-header {
  backdrop-filter: blur(10px);
}

/* ─── Hero banner ─── */
.wa-hero {
  position: relative;
  min-height: clamp(420px, 72vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.wa-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wa-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
  animation: waKenBurns 22s ease-out forwards;
}

@keyframes waKenBurns {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

.wa-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 27, 51, 0.35) 0%, rgba(12, 27, 51, 0.15) 35%, rgba(12, 27, 51, 0.72) 78%, rgba(12, 27, 51, 0.92) 100%),
    linear-gradient(90deg, rgba(12, 27, 51, 0.45) 0%, transparent 55%);
}

.wa-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: calc(var(--header-height, 72px) + 3rem) 1.25rem 2.5rem;
}

.wa-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.wa-crumb a {
  color: rgba(255, 255, 255, 0.85);
}

.wa-crumb a:hover {
  color: var(--wa-gold);
}

.wa-hero-kicker {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-radius: 999px;
  background: rgba(12, 27, 51, 0.35);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wa-gold);
}

.wa-hero h1 {
  margin: 0 0 0.75rem;
  max-width: 11ch;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: #fff;
}

.wa-hero-lead {
  margin: 0 0 1.5rem;
  max-width: 38rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
}

/* Search */
.wa-search {
  position: relative;
  width: 100%;
  max-width: 36rem;
  margin-bottom: 1rem;
}

.wa-search-bar {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 3.1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.wa-search-input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  padding: 0.95rem 0.65rem 0.95rem 2.85rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.95rem;
  outline: none;
  box-shadow: none;
}

.wa-search-input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.wa-search-input:focus {
  background: transparent;
  box-shadow: none;
}

.wa-search-icon {
  position: absolute;
  left: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none;
  z-index: 2;
}

.wa-search-clear {
  flex: 0 0 auto;
  align-self: center;
  margin-right: 0.2rem;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  position: static;
  transform: none;
}

.wa-search.has-query .wa-search-clear:not([hidden]) {
  display: inline-flex;
}

.wa-search-submit {
  flex: 0 0 auto;
  padding: 0 1rem;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  background: var(--wa-gold);
  color: var(--wa-navy);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 750;
  cursor: pointer;
  white-space: nowrap;
}

.wa-search-submit:hover {
  filter: brightness(1.06);
}

.wa-search.is-open .wa-search-bar {
  border-color: rgba(201, 169, 98, 0.85);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background: rgba(255, 255, 255, 0.18);
}

.wa-search-meta {
  margin: 0.55rem 0 0;
  min-height: 1.2em;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
}

.wa-intents {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.wa-intent {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease, opacity 0.35s ease;
}

.wa-intent.is-fading {
  opacity: 0;
  transform: translateY(2px);
}

.wa-intent[hidden] {
  display: none !important;
}

.wa-intent:hover,
.wa-intent.is-active {
  background: rgba(201, 169, 98, 0.25);
  border-color: rgba(201, 169, 98, 0.65);
  transform: translateY(-1px);
}

/* ─── Facts strip ─── */
.wa-facts {
  margin-top: -1.5rem;
  position: relative;
  z-index: 3;
  padding: 0 0 0.35rem;
}

.wa-facts-shell {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 0.65rem;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.wa-fact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  margin: 0;
  padding: 0.95rem 1rem 0.9rem;
  border: 1px solid rgba(12, 27, 51, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 239, 0.92));
  box-shadow: 0 10px 28px rgba(12, 27, 51, 0.06);
  color: var(--wa-navy);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.wa-fact:hover,
.wa-fact:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow: 0 16px 34px rgba(12, 27, 51, 0.1);
  outline: none;
}

.wa-fact-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa-muted);
}

.wa-fact strong {
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--wa-navy);
  line-height: 1.25;
}

.wa-fact-hint {
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--wa-gold-deep);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wa-fact:hover .wa-fact-hint,
.wa-fact:focus-visible .wa-fact-hint {
  opacity: 1;
  transform: translateY(0);
}

.wa-fact--flag {
  grid-row: span 2;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.1rem 1.15rem 1.15rem;
  background:
    linear-gradient(155deg, rgba(12, 27, 51, 0.97), rgba(22, 48, 79, 0.94) 52%, rgba(12, 27, 51, 0.99)),
    radial-gradient(120% 80% at 0% 0%, rgba(201, 169, 98, 0.18), transparent 55%);
  border-color: transparent;
  color: #fff;
  cursor: default;
}

.wa-fact--flag:hover,
.wa-fact--flag:focus-visible {
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(12, 27, 51, 0.18);
}

.wa-fact--flag .wa-fact-label {
  color: rgba(255, 255, 255, 0.62);
}

.wa-fact--flag strong {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.wa-fact--flag .wa-fact-hint {
  display: block;
  opacity: 0.85;
  transform: none;
  color: rgba(240, 226, 184, 0.95);
}

.wa-fact-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.wa-fact--live strong {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
}

.wa-fact--live .wa-fact-hint {
  opacity: 0.85;
  transform: none;
}

.wa-fact--live:hover .wa-fact-hint,
.wa-fact--live:focus-visible .wa-fact-hint {
  opacity: 1;
}

/* Static flag */
.wa-flag {
  width: 100%;
  max-width: 7.25rem;
}

.wa-flag-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

/* ─── Explore hubs ─── */
.wa-explore {
  padding: 2.25rem 0 0.5rem;
}

.wa-explore .container {
  max-width: 1120px;
}

.wa-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}

.wa-section-head h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.02em;
  color: var(--wa-navy);
}

.wa-section-head p {
  margin: 0;
  max-width: 36rem;
  color: var(--wa-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.wa-hubs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.wa-hub {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 210px;
  padding: 1.2rem;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  color: #fff;
  cursor: pointer;
  isolation: isolate;
  box-shadow: var(--wa-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.wa-hub:hover,
.wa-hub:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(12, 27, 51, 0.16);
  outline: none;
}

.wa-hub.is-active {
  box-shadow: 0 0 0 2px var(--wa-gold), 0 22px 48px rgba(12, 27, 51, 0.16);
}

.wa-hub-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wa-hub-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.wa-hub:hover .wa-hub-bg img {
  transform: scale(1.06);
}

.wa-hub-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 27, 51, 0.15) 0%, rgba(12, 27, 51, 0.82) 100%);
}

.wa-hub-tone {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.wa-hub[data-tone="navy"] .wa-hub-tone { background: linear-gradient(145deg, #0c1b33, #1e3f66); }
.wa-hub[data-tone="gold"] .wa-hub-tone { background: linear-gradient(145deg, #8a6d2f, #c9a962 55%, #16304f); }
.wa-hub[data-tone="sea"] .wa-hub-tone { background: linear-gradient(145deg, #0e3a4f, #1f6f86); }
.wa-hub[data-tone="terra"] .wa-hub-tone { background: linear-gradient(145deg, #5c3d2e, #a67c52 42%, #16304f); }

.wa-hub-body {
  position: relative;
  z-index: 1;
}

.wa-hub-count {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.wa-hub h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.wa-hub p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

/* ─── Sticky toolbar ─── */
.wa-toolbar {
  position: sticky;
  top: var(--header-height, 72px);
  z-index: 40;
  margin-top: 1.75rem;
  padding: 0.55rem 0;
  background: rgba(243, 240, 234, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--wa-line);
  border-bottom: 1px solid var(--wa-line);
}

/* Topic chip selected: header + chips + topic only — hide hero/hubs above */
.wa-page--topic .wa-hero,
.wa-page--topic .wa-facts,
.wa-page--topic .wa-explore {
  display: none;
}

.wa-page--topic .wa-toolbar {
  /* Clear fixed header now that hero is gone */
  margin-top: var(--header-height, 72px);
}

.wa-page--topic .wa-layout {
  padding-top: 0.85rem;
}

.wa-toolbar .container.wa-toolbar-row {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: clamp(0.2rem, 0.55vw, 0.4rem);
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.wa-filter {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  border: 1px solid var(--wa-line);
  background: #fff;
  color: var(--wa-navy);
  border-radius: 999px;
  padding: 0.48rem clamp(0.2rem, 1vw, 0.75rem);
  font: inherit;
  font-size: clamp(0.68rem, 1.15vw, 0.8rem);
  font-weight: 650;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.wa-filter-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 1.05em;
  height: 1.05em;
  min-width: 16px;
  min-height: 16px;
  color: inherit;
  opacity: 0.92;
}

.wa-filter-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.wa-filter-label {
  min-width: 0;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wa-filter:hover,
.wa-filter.is-active {
  background: var(--wa-navy);
  border-color: var(--wa-navy);
  color: #fff;
}

.wa-filter[data-group="all"].is-active {
  background: var(--wa-gold-deep);
  border-color: var(--wa-gold-deep);
}

.wa-page .footer-brand .logo-text {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.wa-page .footer-brand .logo-text:hover {
  color: var(--wa-gold);
}

.wa-page .site-header .logo-sub {
  display: none;
}

/* Narrow phones: equal icon-only chips — one full-width row, no scroll/wrap */
@media (max-width: 560px) {
  .wa-toolbar .container.wa-toolbar-row {
    gap: 0.28rem;
  }

  .wa-filter {
    height: 2.55rem;
    padding: 0;
    gap: 0;
  }

  .wa-filter-icon {
    width: 17px;
    height: 17px;
    min-width: 17px;
    min-height: 17px;
  }

  .wa-filter-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .wa-filter {
    position: relative;
  }
}

/* ─── Content layout ─── */
.wa-layout {
  padding: 1.5rem 0 4rem;
}

.wa-layout .container {
  max-width: 1120px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.wa-toc {
  position: sticky;
  top: calc(var(--header-height, 72px) + 4.25rem);
  max-height: calc(100vh - var(--header-height, 72px) - 5rem);
  overflow: auto;
  padding: 1rem 0.85rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--wa-line);
  border-radius: 14px;
  box-shadow: var(--wa-shadow);
  scrollbar-width: thin;
}

.wa-toc-label {
  margin: 0 0 0.65rem;
  padding: 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wa-muted);
}

.wa-toc nav {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.wa-toc a {
  display: block;
  padding: 0.36rem 0.45rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 550;
  line-height: 1.35;
  color: var(--wa-navy);
  text-decoration: none;
  border-left: 2px solid transparent;
}

.wa-toc a:hover {
  background: var(--wa-mist);
  color: var(--wa-gold-deep);
}

.wa-toc a.is-active {
  background: rgba(201, 169, 98, 0.14);
  border-left-color: var(--wa-gold);
  font-weight: 650;
}

.wa-toc a.is-dimmed {
  opacity: 0.28;
  pointer-events: none;
}

.wa-main {
  min-width: 0;
}

.wa-group {
  margin-bottom: 1.5rem;
  scroll-margin-top: calc(var(--header-height, 72px) + 4.75rem);
}

.wa-group.is-hidden {
  display: none;
}

.wa-group-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 220px;
  margin-bottom: 0.9rem;
  border-radius: 20px;
  overflow: hidden;
  background: var(--wa-navy);
  color: #fff;
  box-shadow: var(--wa-shadow);
}

.wa-group-banner:not(:has(.wa-group-banner-media)),
.wa-group-banner--solo {
  grid-template-columns: 1fr;
}

.wa-group-banner-copy {
  padding: clamp(1.25rem, 3vw, 1.85rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 0% 100%, rgba(201, 169, 98, 0.22), transparent 50%),
    linear-gradient(135deg, #0c1b33, #16304f);
}

.wa-group-banner-copy span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wa-gold);
  margin-bottom: 0.45rem;
}

.wa-group-banner-copy h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  color: #fff;
}

.wa-group-banner-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 36ch;
}

.wa-group-banner-media {
  position: relative;
  min-height: 220px;
}

.wa-group-banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.wa-group-banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #0c1b33 0%, transparent 35%);
}

.wa-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--wa-line);
  border-radius: 16px;
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
  box-shadow: var(--wa-shadow);
  margin-bottom: 0.85rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.wa-card.is-hidden {
  display: none;
}

.wa-card.is-match {
  box-shadow: 0 0 0 2px rgba(201, 169, 98, 0.55), var(--wa-shadow);
}

.wa-section {
  scroll-margin-top: calc(var(--header-height, 72px) + 5.5rem);
}

.wa-section h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--wa-navy);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.wa-section h3 {
  margin: 1.25rem 0 0.5rem;
  font-size: 1.02rem;
  font-weight: 650;
  color: var(--wa-navy-mid);
}

.wa-section h4 {
  margin: 1rem 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--wa-navy);
}

.wa-section p,
.wa-section li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--wa-text);
}

.wa-section p {
  margin: 0 0 0.85rem;
}

.wa-section ul,
.wa-section ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.wa-section li {
  margin-bottom: 0.35rem;
}

.wa-section a {
  color: var(--wa-navy);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 98, 0.75);
  text-underline-offset: 2px;
}

.wa-section a:hover {
  color: var(--wa-gold-deep);
}

.wa-lead {
  font-size: 1.02rem;
  color: #1a2332;
}

.wa-note,
.wa-warn,
.wa-tip {
  margin: 1rem 0;
  padding: 0.9rem 1.05rem;
  border-radius: 0 12px 12px 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--wa-text);
}

.wa-note {
  background: rgba(201, 169, 98, 0.12);
  border-left: 3px solid var(--wa-gold);
}

.wa-warn {
  background: rgba(180, 70, 50, 0.08);
  border-left: 3px solid #b44632;
}

.wa-tip {
  background: rgba(22, 48, 79, 0.06);
  border-left: 3px solid var(--wa-navy-mid);
}

.wa-note strong,
.wa-warn strong,
.wa-tip strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wa-muted);
}

.wa-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.65rem;
  margin: 0.85rem 0 1.1rem;
}

.wa-link-card {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--wa-line);
  border-radius: 12px;
  background: var(--wa-mist);
  text-decoration: none !important;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.wa-link-card:hover {
  border-color: var(--wa-gold);
  background: #fff;
  transform: translateY(-2px);
}

.wa-link-card .wa-lc-title {
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--wa-navy);
}

.wa-link-card .wa-lc-meta {
  font-size: 0.78rem;
  color: var(--wa-muted);
  line-height: 1.4;
}

/* Cultural venue recommendation cards */
.wa-lede-tight {
  margin: 0.35rem 0 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--wa-muted);
}

.wa-venue-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.wa-venue {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--wa-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(12, 27, 51, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.wa-venue:hover {
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow: 0 12px 26px rgba(12, 27, 51, 0.08);
  transform: translateY(-1px);
}

.wa-venue-media {
  position: relative;
  min-height: 100%;
  background: #1a2740;
}

.wa-venue-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 148px;
  object-fit: cover;
  object-position: center;
}

.wa-venue-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1rem;
}

.wa-venue-body h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: var(--wa-navy);
}

.wa-venue-body > p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--wa-ink, #243044);
}

.wa-venue-get {
  margin-top: 0.15rem !important;
  padding-top: 0.45rem;
  border-top: 1px solid var(--wa-line);
  font-size: 0.8rem !important;
  line-height: 1.45 !important;
  color: var(--wa-muted) !important;
}

.wa-venue-get strong {
  display: block;
  margin-bottom: 0.12rem;
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wa-gold-deep);
}

.wa-venue-get em {
  font-style: normal;
  font-weight: 650;
  color: var(--wa-navy);
}

.wa-venue-link {
  margin-top: 0.25rem;
  align-self: flex-start;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wa-navy);
  text-decoration: none !important;
  border-bottom: 1px solid rgba(201, 169, 98, 0.55);
}

.wa-venue-link:hover {
  color: var(--wa-gold-deep);
  border-bottom-color: var(--wa-gold-deep);
}

@media (max-width: 640px) {
  .wa-venue {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .wa-venue-media img {
    min-height: 168px;
  }

  .wa-venue-body {
    padding: 0.75rem 0.8rem 0.9rem;
  }

  .wa-venue-body h4 {
    font-size: 0.94rem;
  }
}

.wa-phone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.65rem;
  margin: 0.85rem 0 1.1rem;
}

.wa-phone {
  padding: 0.9rem 1rem;
  border: 1px solid var(--wa-line);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff, var(--wa-mist));
}

.wa-phone .wa-ph-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wa-muted);
  margin-bottom: 0.25rem;
}

.wa-phone a {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--wa-navy);
  text-decoration: none !important;
}

.wa-phone a:hover {
  color: var(--wa-gold-deep);
}

.wa-phone .wa-ph-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: var(--wa-muted);
  line-height: 1.4;
}

.wa-table-wrap {
  overflow-x: auto;
  margin: 0.85rem 0 1.15rem;
  border: 1px solid var(--wa-line);
  border-radius: 12px;
}

.wa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 520px;
}

.wa-table th,
.wa-table td {
  padding: 0.65rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--wa-line);
  vertical-align: top;
  line-height: 1.45;
}

.wa-table th {
  background: var(--wa-mist);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--wa-muted);
}

.wa-table tr:last-child td {
  border-bottom: none;
}

.wa-table td {
  color: var(--wa-text);
}

.wa-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 0.85rem 0 1.1rem;
}

.wa-split-box {
  padding: 0.95rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--wa-line);
}

.wa-split-box.good {
  background: rgba(40, 120, 80, 0.06);
  border-color: rgba(40, 120, 80, 0.2);
}

.wa-split-box.caution {
  background: rgba(180, 70, 50, 0.06);
  border-color: rgba(180, 70, 50, 0.18);
}

.wa-split-box h4 {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wa-split-box ul {
  margin: 0;
  padding-left: 1.05rem;
}

.wa-split-box li {
  font-size: 0.88rem;
  margin-bottom: 0.3rem;
}

.wa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.5rem 0 0.9rem;
}

.wa-tag {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  background: var(--wa-mist);
  border: 1px solid var(--wa-line);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--wa-navy-mid);
}

.wa-faq .faq-item {
  border: 1px solid var(--wa-line);
  border-radius: 12px;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: var(--wa-mist);
  border-bottom: 1px solid var(--wa-line);
}

.wa-faq .faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  background: transparent;
  border: none;
  font: inherit;
  font-weight: 650;
  font-size: 0.95rem;
  color: var(--wa-navy);
  text-align: left;
  cursor: pointer;
}

.wa-faq .faq-answer {
  padding-left: 1rem;
  padding-right: 1rem;
}

.wa-faq .faq-item.active .faq-answer {
  max-height: 480px;
  padding-bottom: 0.95rem;
}

.wa-faq .faq-answer p {
  margin: 0;
  font-size: 0.92rem;
}

.wa-faq .faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--wa-gold-deep);
}

.wa-dir {
  columns: 2;
  column-gap: 1.5rem;
  margin: 0.5rem 0 0;
}

.wa-dir li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.wa-updated {
  margin: 1.25rem 0 0;
  font-size: 0.82rem;
  color: var(--wa-muted);
}

.wa-empty {
  display: none;
  padding: 2rem 1.25rem;
  text-align: center;
  border: 1px dashed var(--wa-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--wa-muted);
}

.wa-empty.is-visible {
  display: block;
}

.wa-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.wa-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (max-width: 960px) {
  .wa-layout .container {
    grid-template-columns: 1fr;
  }

  .wa-toc {
    display: none;
  }

  .wa-facts-shell {
    grid-template-columns: 1fr 1fr;
  }

  .wa-fact--flag {
    grid-column: 1 / -1;
    grid-row: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    min-height: auto;
    padding: 1rem 1.1rem;
  }

  .wa-flag {
    width: 5.5rem;
    max-width: none;
    flex-shrink: 0;
  }

  .wa-hubs {
    grid-template-columns: repeat(2, 1fr);
  }

  .wa-group-banner {
    grid-template-columns: 1fr;
  }

  .wa-group-banner-media {
    min-height: 160px;
  }

  .wa-group-banner-media::after {
    background: linear-gradient(180deg, transparent 30%, rgba(12, 27, 51, 0.35));
  }
}

@media (max-width: 640px) {
  .wa-facts-shell {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .wa-fact {
    padding: 0.85rem 0.85rem 0.8rem;
  }

  .wa-fact strong {
    font-size: 0.95rem;
  }

  .wa-fact-hint {
    display: none;
  }

  .wa-fact--flag .wa-fact-hint {
    display: block;
    font-size: 0.68rem;
  }

  .wa-fact--flag strong {
    font-size: 1.1rem;
  }

  .wa-fact--live .wa-fact-hint {
    display: block;
    opacity: 0.9;
    transform: none;
    font-size: 0.68rem;
  }

  .wa-flag {
    width: 4.75rem;
  }

  .wa-hubs {
    grid-template-columns: 1fr;
  }

  .wa-hub {
    min-height: 170px;
  }

  .wa-split {
    grid-template-columns: 1fr;
  }

  .wa-dir {
    columns: 1;
  }

  .wa-hero h1 {
    max-width: none;
  }

  .wa-hero {
    min-height: 520px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-hero-media img,
  .wa-hub-bg img,
  .wa-reveal,
  .wa-fact,
  .wa-hub,
  .wa-link-card {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .wa-reveal {
    opacity: 1;
  }
}

/* ─── Middle/later upgrades: brands, mosaics, pickers ─── */

.wa-brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.7rem;
  margin: 1rem 0 1.25rem;
}

.wa-brand {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem;
  border-radius: 14px;
  border: 1px solid var(--wa-line);
  background: #fff;
  text-decoration: none !important;
  color: var(--wa-navy);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.wa-brand:hover,
.wa-brand:focus-visible,
.wa-brand.is-active {
  transform: translateY(-3px);
  border-color: rgba(201, 169, 98, 0.7);
  box-shadow: 0 14px 28px rgba(12, 27, 51, 0.1);
  outline: none;
}

.wa-brand img {
  width: 100%;
  height: 40px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
  background: transparent;
}

.wa-brand-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--wa-navy);
}

.wa-brand-meta {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--wa-muted);
}

.wa-brand-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(201, 169, 98, 0.16);
  color: var(--wa-gold-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Editor’s pick — full-width recommendation, not a brand tile */
.wa-brand--editors {
  grid-column: 1 / -1;
  gap: 0.45rem;
  padding: 1.05rem 1.1rem 1.15rem;
  border-color: transparent;
  background:
    linear-gradient(135deg, rgba(201, 169, 98, 0.14), transparent 42%),
    linear-gradient(160deg, #0c1b33 0%, #152a4a 55%, #1a3358 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(12, 27, 51, 0.18);
}

.wa-brand--editors:hover,
.wa-brand--editors:focus-visible {
  border-color: rgba(201, 169, 98, 0.55);
  box-shadow: 0 16px 34px rgba(12, 27, 51, 0.28);
  transform: translateY(-2px);
}

.wa-editors-top {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.15rem;
}

.wa-editors-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(201, 169, 98, 0.2);
  color: var(--wa-gold);
}

.wa-editors-mark svg {
  width: 1.05rem;
  height: 1.05rem;
}

.wa-brand--editors .wa-brand-badge {
  margin-top: 0;
  background: rgba(201, 169, 98, 0.22);
  color: #f0e2b8;
}

.wa-brand--editors .wa-brand-title {
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.01em;
  color: #fff;
}

.wa-brand--editors .wa-brand-meta {
  max-width: 42rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.wa-editors-action {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--wa-gold);
}

.wa-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.55rem;
  margin: 1rem 0 1.25rem;
  min-height: 240px;
}

.wa-mosaic figure {
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  min-height: 110px;
}

.wa-mosaic figure:first-child {
  grid-row: 1 / span 2;
  min-height: 240px;
}

.wa-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wa-mosaic figure:hover img {
  transform: scale(1.05);
}

.wa-mosaic figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.7rem 0.85rem;
  background: linear-gradient(transparent, rgba(12, 27, 51, 0.82));
  color: #fff;
  font-size: 0.8rem;
  font-weight: 650;
}

.wa-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.85rem 0 1rem;
}

.wa-picker-btn {
  border: 1px solid var(--wa-line);
  background: #fff;
  color: var(--wa-navy);
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.wa-picker-btn:hover,
.wa-picker-btn.is-active {
  background: var(--wa-navy);
  border-color: var(--wa-navy);
  color: #fff;
}

.wa-panel {
  display: none;
  margin: 0 0 1rem;
  padding: 1rem 1.05rem;
  border-radius: 14px;
  border: 1px solid var(--wa-line);
  background: linear-gradient(180deg, #fff, var(--wa-mist));
}

.wa-panel.is-active {
  display: block;
  animation: waPanelIn 0.28s ease;
}

@keyframes waPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: none; }
}

.wa-panel h4 {
  margin: 0 0 0.45rem;
}

.wa-panel p:last-child {
  margin-bottom: 0;
}

.wa-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1rem 0 1.2rem;
}

.wa-dest {
  position: relative;
  display: block;
  min-height: 180px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: #fff;
  box-shadow: var(--wa-shadow);
  isolation: isolate;
}

.wa-dest img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.wa-dest:hover img {
  transform: scale(1.06);
}

.wa-dest::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 27, 51, 0.08), rgba(12, 27, 51, 0.82));
}

.wa-dest-body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.wa-dest-body strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.wa-dest:hover .wa-dest-body strong,
.wa-dest:focus-visible .wa-dest-body strong {
  color: var(--wa-gold);
}

.wa-dest-body span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.4;
}

.wa-cta-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.75rem;
  margin: 1rem 0;
}

.wa-cta-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid var(--wa-line);
  background: #fff;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wa-cta-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(12, 27, 51, 0.1);
}

.wa-cta-card.is-dark {
  background: linear-gradient(145deg, #0c1b33, #1a3a5c);
  border-color: transparent;
  color: #fff;
}

.wa-cta-card.is-dark .wa-brand-meta,
.wa-cta-card.is-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.wa-cta-card img {
  height: 34px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: left center;
}

.wa-cta-card strong {
  font-size: 1.02rem;
  color: inherit;
}

.wa-cta-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--wa-muted);
}

.wa-cta-card .wa-cta-action {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--wa-gold-deep);
}

.wa-cta-card.is-dark .wa-cta-action {
  color: var(--wa-gold);
}

.wa-stat-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
}

.wa-stat-pill {
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--wa-line);
  font-size: 0.82rem;
  color: var(--wa-navy);
}

.wa-stat-pill strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.1rem;
}

@media (max-width: 900px) {
  .wa-dest-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wa-cta-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .wa-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .wa-mosaic figure:first-child {
    grid-row: auto;
    min-height: 180px;
  }
  .wa-dest-grid {
    grid-template-columns: 1fr;
  }
  .wa-brand-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.wa-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}

/* ─── Enhanced interactive search ─── */
.wa-search.is-enhanced {
  max-width: 40rem;
  z-index: 5;
}

.wa-search-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 100%;
  max-height: min(50vh, 360px);
  overflow: auto;
  background: rgba(255, 255, 255, 0.98);
  color: var(--wa-navy);
  border: 1px solid rgba(201, 169, 98, 0.45);
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 22px 48px rgba(12, 27, 51, 0.28);
  backdrop-filter: blur(16px);
  scrollbar-width: thin;
  z-index: 6;
}

.wa-search-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem 0.45rem;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  z-index: 1;
  border-bottom: 1px solid var(--wa-line);
}

.wa-search.is-enhanced .wa-search-meta {
  margin: 0;
  color: var(--wa-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.wa-search-close {
  flex: 0 0 auto;
  border: none;
  background: transparent;
  color: var(--wa-muted);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
}

.wa-search-close:hover {
  color: var(--wa-navy);
}

.wa-search-results {
  display: grid;
  gap: 0.2rem;
  padding: 0.4rem 0.5rem 0.65rem;
}

.wa-sr {
  display: block;
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.wa-sr:hover,
.wa-sr:focus-visible,
.wa-sr.is-active {
  background: rgba(12, 27, 51, 0.04);
  border-color: rgba(201, 169, 98, 0.35);
  outline: none;
}

.wa-sr--submit {
  background: rgba(201, 169, 98, 0.12);
  border-color: rgba(201, 169, 98, 0.35);
  margin-bottom: 0.2rem;
}

.wa-sr-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.wa-sr-cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--wa-gold-deep);
}

.wa-sr-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--wa-navy);
  line-height: 1.3;
}

.wa-sr-blurb {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--wa-muted);
}

.wa-sr-empty {
  margin: 0.35rem 0.45rem 0.2rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--wa-muted);
}

.wa-hero.has-search-open {
  z-index: 50;
}

@media (min-width: 640px) {
  .wa-search-input {
    font-size: 1rem;
    padding-left: 3rem;
  }

  .wa-search-submit {
    padding: 0 1.2rem;
    font-size: 0.88rem;
  }
}

@media (max-width: 420px) {
  .wa-search-input {
    font-size: 0.9rem;
    padding-right: 0.4rem;
  }

  .wa-search-input::placeholder {
    font-size: 0.86rem;
  }

  .wa-search-submit {
    padding: 0 0.85rem;
    font-size: 0.78rem;
  }

  .wa-search-panel {
    max-height: min(42vh, 300px);
  }
}
