:root {
  --bg: #07111f;
  --panel: rgba(11, 24, 40, 0.88);
  --text: #f2f7ff;
  --muted: #9fb6d0;
  --line: rgba(180, 205, 235, 0.16);
  --accent: #d6a53b;
  --accent-soft: #f1d08d;
  --social-icon-size: 2.45rem;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
}

.mini-editor-host .jodit_theme_dark,
.jodit-popup.jodit_theme_dark,
.jodit-dialog_theme_dark.jodit-dialog {
  --jd-dark-background-color: #081725;
  --jd-dark-background-ligher: #102338;
  --jd-dark-toolbar-color: #081421; /* #081421; */
  --jd-dark-toolbar-seperator-color1: rgba(132, 173, 221, 0.08);
  --jd-dark-toolbar-seperator-color2: rgba(132, 173, 221, 0.18);
  --jd-dark-toolbar-seperator-color3: #102338;
  --jd-dark-border-color: rgba(132, 173, 221, 0.22);
  --jd-dark-icon-color: #eaf3ff;
  --jd-dark-text-color: #eaf3ff;
  --jd-dark-text-color-opacity80: rgba(234, 243, 255, 0.8);
  --jd-color-background-default: #123555;
  --jd-color-background-light-gray: #081421;
  --jd-color-background-gray: #081421;
  --jd-color-background-selection: rgba(214, 165, 59, 0.28);
  --jd-color-border: rgba(132, 173, 221, 0.22);
  --jd-color-border-selected: rgba(214, 165, 59, 0.82);
  --jd-color-button-background-hover: rgba(214, 165, 59, 0.16);
  --jd-color-button-background-hover-opacity40: rgba(214, 165, 59, 0.24);
  --jd-color-button-background-hover-opacity60: rgba(214, 165, 59, 0.32);
  --jd-color-dark: #eaf3ff;
  --jd-color-gray: #102338;
  --jd-color-icon: #eaf3ff;
  --jd-color-label: #aac1d9;
  --jd-color-red: #ff8d8d;
  --jd-color-text-icons: #eaf3ff;
  --jd-color-white: #0d1b2c;
  color-scheme: dark;
}

.mini-editor-host .jodit_theme_dark .jodit-ui-button[aria-pressed=true]:not([disabled]),
.jodit-popup.jodit_theme_dark .jodit-ui-button[aria-pressed=true]:not([disabled]),
.jodit-dialog_theme_dark.jodit-dialog .jodit-ui-button[aria-pressed=true]:not([disabled]),
.mini-editor-host .jodit_theme_dark .jodit-ui-button-group .jodit-ui-button[aria-pressed=true]:not([disabled]),
.jodit-popup.jodit_theme_dark .jodit-ui-button-group .jodit-ui-button[aria-pressed=true]:not([disabled]),
.jodit-dialog_theme_dark.jodit-dialog .jodit-ui-button-group .jodit-ui-button[aria-pressed=true]:not([disabled]) {
  background-color: var(--jd-color-border);
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top left, rgba(214, 165, 59, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(73, 110, 170, 0.22), transparent 24%),
    linear-gradient(180deg, #081120 0%, #0a1727 58%, #061019 100%);
  color: var(--text);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.2) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 15%, rgba(255,255,255,0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 55% 80%, rgba(255,255,255,0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 85% 65%, rgba(255,255,255,0.16) 0 1px, transparent 1px);
  background-size: 280px 280px;
  opacity: 0.25;
  pointer-events: none;
}
html.mobile-nav-scroll-lock,
body.mobile-nav-scroll-lock {
  overflow: hidden;
  overscroll-behavior: none;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-offset, 0px);
}
.header, .section-header, .hero-meta, .actions, .detail-meta, .nav, .list, .poi-list {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.header, .section-header {
  justify-content: space-between;
  align-items: center;
}


.flag-button, .ghost-button, .primary-button, .secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
}

.flag-button.active, .primary-button {
  background: linear-gradient(135deg, var(--accent) 0%, #b07b16 100%);
  color: #1c1404;
  border-color: transparent;
  font-weight: 700;
}

.flag-button:disabled, .ghost-button:disabled, .primary-button:disabled, .secondary-button:disabled {
  background: #6d737d;
  color: #d6d9de;
  border-color: #6d737d;
  cursor: not-allowed;
  opacity: 1;
  box-shadow: none;
}
.primary-button.is-disabled {
  background: #6d737d;
  color: #d6d9de;
  border-color: #6d737d;
  cursor: not-allowed;
  opacity: 1;
  box-shadow: none;
}

.header {
  padding: 0.55rem 0 0.55rem 1.4rem;
  border-bottom: 1px solid var(--line);
  background: rgba(4, 12, 22, 0.54);
  backdrop-filter: blur(14px);
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000;
  display: grid;
  gap: 0.75rem;
}

.header-main-row {
  display: grid;
  grid-template-columns: auto minmax(0, var(--header-spacer-width, 0px)) minmax(0, max-content) max-content;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  width: 100%;
}
.header-spacer {
  min-width: 0;
}
.header-center-block,
.header-right-block {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: nowrap;
  min-width: 0;
  max-width: 100%;
}
.header-center-block {
  justify-content: flex-end;
  gap: 0.75rem;
  justify-self: end;
  width: max-content;
}
.header-right-block {
  justify-content: flex-end;
  justify-self: end;
  width: max-content;
}
.branding {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 0 0 auto;
}
.mobile-nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
}
.mobile-nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}
.header-admin-auth {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 1.6rem;
}
.header-center-block > .nav {
  flex: 0 0 auto;
  min-width: 0;
  flex-wrap: nowrap;
}
.header-center-block > .header-search-shell {
  flex: 0 0 7rem;
  min-width: 7rem;
  max-width: 7rem;
}
.header-center-block > .locale-switch {
  flex: 0 0 auto;
}
.header-right-block > .header-social-row {
  flex: 0 0 auto;
}
.header-right-block > .header-admin-auth {
  flex: 0 0 auto;
}
.header-center-block .nav a {
  white-space: nowrap;
}
.header-menu-panel {
  display: none;
}
.header.is-compact-nav {
  gap: 0.75rem;
  padding-right: 0;
}
.header.is-compact-nav .branding {
  gap: 0.5rem;
  min-width: 0;
}
.header.is-compact-nav .brand-logo {
  height: 32.5px;
}
.header.is-compact-nav .brand-wordmark {
  height: 20px;
}
.header.is-compact-nav .brand-subtitle {
  font-size: 0.5rem;
}
.header.is-compact-nav .header-main-row {
  display: grid;
  grid-template-columns: auto minmax(0, var(--header-spacer-width, 0px)) minmax(0, max-content) max-content;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}
.header.is-compact-nav .header-spacer {
  min-width: 0;
}
.header.is-compact-nav .header-center-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 0;
  width: max-content;
  max-width: 100%;
  justify-self: end;
}
.header.is-compact-nav .header-right-block {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  min-width: 0;
  justify-self: end;
  width: max-content;
  max-width: 100%;
}
.header.is-compact-nav .header-search-shell {
  width: 5rem;
  min-width: 5rem;
  max-width: 5rem;
}
.header.is-compact-nav .header-search-input {
  padding-left: 1.9rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239fb6d0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0.7rem 50%;
  background-size: 0.95rem 0.95rem;
}
.header.is-compact-nav .header-search-input::placeholder {
  color: transparent;
}
.header.is-compact-nav .header-search-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: min(300px, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  max-height: calc(5 * 4.7rem);
}
.header.is-compact-nav .mobile-nav-toggle {
  display: inline-flex;
  margin-right: 1.6rem;
}
.header.is-compact-nav .header-menu-panel {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0.75rem;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0.8rem;
  width: min(18rem, calc(100vw - 0.75rem));
  margin-left: 0;
  padding: 0.55rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 15, 27, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  max-height: calc(100dvh - 4.5rem);
  overflow-y: auto;
  scrollbar-gutter: stable both-edges;
  z-index: 1100;
}
.header.is-compact-nav .header-menu-panel.is-open {
  display: flex;
}
.header.is-compact-nav .nav {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
}
.header.is-compact-nav .nav-item-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.header.is-compact-nav .nav a {
  width: 100%;
  white-space: normal;
}
.header.is-compact-nav .header-right-block > .header-search-shell,
.header.is-compact-nav .header-right-block > .locale-switch,
.header.is-compact-nav .header-right-block > .mobile-nav-toggle-slot {
  flex: 0 0 auto;
}
.header.is-compact-nav .header-center-block > .header-search-shell,
.header.is-compact-nav .header-center-block > .locale-switch {
  flex: 0 0 auto;
}
.header.is-compact-nav .mobile-nav-toggle-slot {
  display: inline-flex;
}
.header.is-compact-nav .nav-popup {
  position: static;
  display: flex;
  min-width: 100%;
  padding-left: 0.35rem;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.02);
}
.header.is-compact-nav .header-admin-auth {
  width: 100%;
  justify-content: flex-start;
  margin-right: 0;
}
.header-search-shell {
  position: relative;
  flex: 0 1 13rem;
  min-width: 11rem;
  max-width: 14rem;
}
.header-search-form {
  width: 100%;
}
.header-search-input {
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  outline: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.header-search-input::placeholder {
  color: rgba(159, 182, 208, 0.82);
}
.header-search-input:hover,
.header-search-input:focus {
  border-color: rgba(214, 165, 59, 0.5);
  background: rgba(214, 165, 59, 0.06);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.18);
}
.header-search-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  z-index: 60;
  display: grid;
  gap: 0.4rem;
  width: min(300px, calc(100vw - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(6, 15, 27, 0.98);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  max-height: calc(5 * 4.7rem);
  overflow-y: auto;
}
.header-search-dropdown[hidden] {
  display: none;
}
.search-suggestion-item {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: center;
  width: 100%;
  padding: 0.55rem;
  border: 1px solid transparent;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  cursor: pointer;
  text-align: left;
}
.search-suggestion-item:hover,
.search-suggestion-item:focus-visible {
  border-color: rgba(214, 165, 59, 0.42);
  background: rgba(214, 165, 59, 0.12);
  outline: none;
}
.search-suggestion-thumb {
  width: 4rem;
  height: 3rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}
.search-suggestion-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-suggestion-body {
  min-width: 0;
  display: grid;
  gap: 0.22rem;
}
.search-suggestion-kind {
  color: var(--accent-soft);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.search-suggestion-title {
  font-size: 0.98rem;
  line-height: 1.35;
  color: var(--text);
}
.search-suggestion-meta {
  font-size: 0.82rem;
  line-height: 1.35;
}
.search-suggestion-empty {
  padding: 0.75rem 0.9rem;
}
.header-auth-button {
  white-space: nowrap;
}
.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}
.brand-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.brand-logo {
  display: block;
  width: 43px;
  height: 43px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.28));
}
.brand-wordmark {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
}

.section-title { font-family: var(--font-display); }
.brand-subtitle, .muted { color: var(--muted); }
.locale-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.locale-switch .flag-button {
  min-width: auto;
  padding: 0.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 0;
  background: transparent;
  border-radius: 8px;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.locale-switch .flag-button:hover,
.locale-switch .flag-button:focus-visible {
  background: rgba(214, 165, 59, 0.08);
  transform: translateY(-1px);
  outline: none;
}
.locale-switch .flag-button.active {
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
}
.flag-icon {
  display: block;
  width: 1.45rem;
  height: 1.05rem;
  object-fit: cover;
  border-radius: 2px;
}
.nav a {
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.nav a:hover,
.nav a:focus-visible {
  color: var(--accent-soft);
  background: rgba(214, 165, 59, 0.08);
  transform: translateY(-1px);
  outline: none;
}
.nav a.active { background: rgba(255, 255, 255, 0.08); color: var(--text); }
.nav-item-group {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  position: relative;
}
.nav-item-group.has-children::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.75rem;
}
.nav-popup {
  position: absolute;
  top: calc(100% + 0.12rem);
  left: 0;
  min-width: 13rem;
  display: none;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 13, 24, 0.96);
  box-shadow: var(--shadow);
  z-index: 60;
}
.nav-popup a {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
}
.nav-item-group.has-children:hover .nav-popup,
.nav-item-group.has-children:focus-within .nav-popup {
  display: flex;
}
.main {
  padding: 2rem 1.4rem 2.4rem;
  flex: 1 0 auto;
}
.admin-create-bar {
  width: min(1240px, calc(30% - 2.8rem));
  margin: 1rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(214, 165, 59, 0.28);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(214, 165, 59, 0.12), rgba(15, 28, 49, 0.9));
  box-shadow: var(--shadow);
}
.admin-create-bar .eyebrow {
  margin-bottom: 0.35rem;
}
.admin-create-bar-actions {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.admin-create-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  min-width: 14rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 13, 24, 0.96);
  box-shadow: var(--shadow);
  z-index: 80;
}
.admin-create-menu.is-open {
  display: flex;
}
.photo-filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}
.photos-type-filter {
  display: inline-flex;
  min-width: 0;
}
.photos-type-filter-select {
  min-width: 8.7rem;
  width: 100%;
  max-width: 100%;
  height: 2.35rem;
  padding: 0 2.65rem 0 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background-color: rgba(255, 255, 255, 0.06);
  background-image: none;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  box-shadow: none;
  text-shadow: none;
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.photos-type-filter-select:hover {
  border-color: rgba(214, 165, 59, 0.36);
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text);
  transform: translateY(-1px);
}
.photos-type-filter-select:focus {
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.18);
}
.photos-type-filter-select:active {
  transform: translateY(1px);
}
.photos-type-filter-select option {
  background: #08111f;
  color: var(--text);
}
.photos-pagination {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 1rem 0 1.6rem;
}
.photos-pagination .chip {
  display: inline-flex;
  min-width: 2.2rem;
  text-align: center;
  justify-content: center;
}
.photos-pagination a.chip {
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.photos-pagination a.chip:hover,
.photos-pagination a.chip:focus-visible {
  color: var(--accent-soft);
  background: rgba(214, 165, 59, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.18);
  outline: none;
}
.photos-pagination-gap {
  min-width: 2.2rem;
  justify-content: center;
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}
.photos-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.28rem;
  padding-bottom: 0.56rem;
}
.photos-toolbar-filters,
.photos-toolbar-switch {
  min-width: 0;
  margin-bottom: 0;
  flex-wrap: nowrap;
}
.photos-toolbar-filters {
  justify-self: start;
}
.photos-toolbar-pagination {
  justify-self: center;
  min-width: 0;
  display: flex;
  align-items: center;
}
.photos-toolbar-pagination .photos-pagination {
  margin: 0;
}
.photos-toolbar-pagination .photos-pagination .chip,
.photos-toolbar-pagination .photos-pagination-gap {
  min-width: 2rem;
  padding-top: 0.28rem;
  padding-bottom: 0.28rem;
}
.photos-toolbar-switch {
  justify-self: end;
  justify-content: flex-end;
}
.photos-view-switch {
  display: flex;
  gap: 0.6rem;
  flex-wrap: nowrap;
}
.photos-view-switch-button {
  min-width: 2.2rem;
  min-height: 2.2rem;
  padding: 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.photos-view-switch-button:hover,
.photos-view-switch-button:focus-visible {
  color: var(--accent-soft);
  background: rgba(214, 165, 59, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.18);
  outline: none;
}
.photos-view-switch-button svg {
  width: 0.95rem;
  height: 0.95rem;
  display: block;
  pointer-events: none;
}
.entry-list {
  display: grid;
  gap: 0.85rem;
}
.entry-list-row {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(180px, 260px) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  transform-origin: center center;
}
.entry-list-row:hover,
.entry-list-row:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
  border-color: rgba(214, 165, 59, 0.45);
}
.entry-list-row-unpublished {
  border-color: rgba(220, 70, 70, 0.95);
  box-shadow: 0 0 0 1px rgba(220, 70, 70, 0.45), var(--shadow);
}
.entry-list-row-unpublished::before {
  content: "Nincs publikÃ¡lva";
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(110, 20, 20, 0.92);
  color: #ffd7d7;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.entry-list-thumb {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.18s ease;
}
.entry-list-row:hover .entry-list-thumb,
.entry-list-row:focus-within .entry-list-thumb {
  transform: scale(1.02);
}
.entry-list-meta {
  display: grid;
  gap: 0.2rem;
}
.entry-list-date {
  color: var(--accent-soft);
  font-size: 0.85rem;
}
.entry-list-object {
  color: var(--muted);
}
.entry-list-row h3 {
  margin: 0;
  font-size: 1rem;
}
.grid, .detail-layout, .search-layout, .admin-layout, .split-layout, .form-grid {
  display: grid;
  gap: 1.2rem;
}
.detail-layout > *,
.search-layout > *,
.admin-layout > *,
.split-layout > *,
.form-grid > * {
  min-width: 0;
}
.grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.latest-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.detail-layout, .search-layout, .split-layout { grid-template-columns: minmax(0, 1fr) 340px; }
.admin-layout { grid-template-columns: minmax(0, 1.9fr) 280px; align-items: start; }
.photos-admin-layout { grid-template-columns: minmax(0, 1fr); }
.photos-admin-layout .admin-sidebar { display: none; }
.photos-admin-layout .photos-admin-editor-panel { width: 100%; }
.blog-admin-layout { grid-template-columns: minmax(0, 1fr); }
.blog-admin-layout .admin-sidebar { display: none; }
.blog-admin-layout .blog-admin-editor-panel { width: 100%; }
.form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.panel, .entry-card, .page-card, .search-result, .admin-card, .poi-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.panel { padding: 1.2rem; }
.page-not-found {
  overflow: hidden;
}
.page-not-found .main {
  padding: 0;
}
.page-not-found .not-found-page {
  position: fixed;
  inset: var(--header-offset, 0px) 0 calc(6.25rem + env(safe-area-inset-bottom)) 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  z-index: 1;
}
.page-not-found .not-found-page .content {
  width: 100%;
  height: 100%;
  padding: 0;
}
.page-not-found .not-found-page img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 0;
}
.eyebrow { color: var(--accent-soft); letter-spacing: 0.18em; text-transform: uppercase; font-size: 0.76rem; margin-bottom: 1rem; }
.entry-card img, .search-result img, .detail-image, .poi-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

.detail-image-fit {
  max-height: 70vh;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.28);
}
.detail-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.detail-layout .panel.has-admin-edit .detail-toolbar,
.blog-detail-card.has-admin-edit .detail-toolbar {
  padding-right: 3.2rem;
}
.detail-toolbar-group {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.detail-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.72rem;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  transform-origin: center center;
}
.detail-nav-button:hover,
.detail-nav-button:focus-visible {
  color: var(--accent-soft);
  background: rgba(214, 165, 59, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.18);
  outline: none;
}
.detail-nav-icon {
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.detail-nav-button[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}
.blog-detail {
  display: grid;
  gap: 1.2rem;
  min-width: 0;
}
.blog-detail-card {
  width: 100%;
  max-width: none;
  position: relative;
  min-width: 0;
}
.blog-detail-card .admin-card-edit-button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 4;
}
.detail-layout .panel.has-admin-edit .admin-card-edit-button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 4;
}

.entry-card .content, .search-result .content, .page-card .content, .admin-card .content { padding: 1rem 1.1rem 1.2rem; }
.inline-editor-panel,
.awards-list,
.blog-list {
  margin-top: 1.2rem;
}
.home-sky-strip {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 18rem;
  padding-bottom: 1.8rem;
  margin-bottom: 1.4rem;
  overflow: hidden;
}
.home-sky-strip-panel-actions {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 4;
  display: flex;
  gap: 0.5rem;
}
.home-sky-strip-stage {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
.home-sky-strip-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 22rem;
  touch-action: none;
  overscroll-behavior: contain;
  user-select: none;
  -webkit-user-select: none;
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(214, 165, 59, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.98), rgba(6, 14, 26, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), var(--shadow);
}
.home-sky-strip-control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 1px solid rgba(214, 165, 59, 0.45);
  border-radius: 999px;
  background: rgba(5, 13, 24, 0.88);
  color: var(--text);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  backdrop-filter: blur(10px);
}
.home-sky-strip-control:hover,
.home-sky-strip-control:focus-visible {
  border-color: rgba(214, 165, 59, 0.8);
  background: rgba(15, 28, 49, 0.96);
}
.home-sky-strip-control-left {
  position: absolute;
  top: 0.75rem;
  right: auto;
  left: 0.75rem;
}
.home-sky-strip-canvas {
  position: absolute;
  inset: 0;
}
.home-sky-strip-map canvas,
.detail-sky-map-canvas canvas,
.shared-sky-map-host canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.home-sky-strip-status {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.55rem;
  min-height: 1.3rem;
  margin: 0;
  pointer-events: none;
}
.home-sky-strip-overlay {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
}
.home-sky-strip.is-expanded .home-sky-strip-overlay {
  display: block;
}
.home-sky-strip-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 7, 14, 0.9);
}
.home-sky-strip-overlay-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.home-sky-strip-overlay-center {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-sky-strip-overlay-stage {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-sky-strip-overlay .home-sky-strip-map {
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  min-height: 0;
  border-radius: 0;
}
.shared-sky-map-host {
  position: absolute;
  inset: 0;
  touch-action: none;
  overscroll-behavior: contain;
  user-select: none;
  -webkit-user-select: none;
}
.home-sky-strip.is-expanded .shared-sky-map-host,
.shared-sky-map-host.is-expanded {
  inset: auto;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100vw;
  height: 100vw;
  max-width: none;
  max-height: none;
}
.home-sky-strip-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
}
.home-sky-strip.is-expanded [data-home-sky-expand] {
  display: none;
}
.awards-list,
.blog-list {
  display: grid;
  gap: 1rem;
}
.blog-page-list {
  display: grid;
  gap: 1rem;
}
.blog-page-list .photos-pagination a.chip {
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.blog-page-list .photos-pagination a.chip:hover,
.blog-page-list .photos-pagination a.chip:focus-visible {
  color: var(--accent-soft);
  background: rgba(214, 165, 59, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.18);
  outline: none;
}
.blog-page-list .blog-list {
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  align-items: stretch;
}
.home-blog-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
}
.home-latest-photo-card,
.home-latest-blog-card {
  position: relative;
  overflow: hidden;
  isolation: auto;
}
.home-latest-photo-card {
  transition: none;
}
.blog-card {
  position: relative;
  cursor: pointer;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
  height: 100%;
  padding: 0;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  transform-origin: center center;
}
.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
  border-color: rgba(214, 165, 59, 0.45);
}
.blog-card-media {
  position: relative;
  flex: 0 0 clamp(180px, 28vw, 320px);
  min-height: 100%;
  max-height: 220px;
  overflow: hidden;
}
.blog-card-media img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.18s ease;
}
.blog-card:hover .blog-card-media img,
.blog-card:focus-within .blog-card-media img {
  transform: scale(1.02);
}
.blog-card-body {
  display: grid;
  grid-template-rows: auto auto;
  align-content: center;
  gap: 0.6rem;
  height: 100%;
  padding: 1.1rem 1.15rem 1.15rem;
  box-sizing: border-box;
  flex: 1 1 auto;
}
.blog-card h2 {
  margin: 0;
  font-size: 1.18rem;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-blog-card {
  padding: 0;
  aspect-ratio: 4 / 3;
  height: 100%;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.home-blog-card:hover,
.home-blog-card:focus-within {
  border-color: var(--line);
}
.home-blog-card-body {
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  height: 100%;
  width: 100%;
  padding: 1.2rem;
  box-sizing: border-box;
}
.home-blog-card .award-date,
.home-blog-card h2,
.home-blog-card .rich-content,
.home-blog-card-body {
  min-width: 0;
  overflow: hidden;
}
.home-blog-card h2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.home-blog-card .rich-content {
  display: block;
  height: 100%;
  max-height: 100%;
  overflow: hidden;
  word-break: break-word;
}
.home-blog-card.has-media .home-blog-card-body {
  grid-template-rows: auto auto;
}
.home-blog-card-media {
  flex: 0 0 43%;
  min-height: 0;
  overflow: hidden;
}
.home-blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}
.home-blog-card-preview {
  line-height: 1.6;
  font-size: 0.96rem;
}
.award-card h3 {
  margin: 0.35rem 0 0.5rem;
}
.award-card {
  position: relative;
  height: 80px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  transform-origin: center center;
}
.award-card:hover,
.award-card:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
  border-color: rgba(214, 165, 59, 0.45);
}
.award-card a,
.award-card button {
  cursor: pointer;
}
.award-card.has-award-logo {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 0;
  padding: 0;
  align-items: stretch;
}
.award-card:not(.has-award-logo) {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding: 0;
  align-items: stretch;
}
.award-card-logo {
  width: 80px;
  height: 80px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.award-card-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.18s ease;
}
.award-card:hover .award-card-logo img,
.award-card:focus-within .award-card-logo img {
  transform: scale(1.02);
}
.award-card-content {
  min-width: 0;
  height: 100%;
  align-content: center;
  display: grid;
  gap: 0.15rem;
  padding: 0.5rem 0.8rem;
  overflow: hidden;
}
.award-card:not(.has-award-logo) .award-card-content {
  padding: 0.5rem 0.8rem;
}
.award-date {
  color: var(--accent-soft);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.1;
}
.award-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.15;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.award-link {
  color: var(--accent-soft);
  word-break: break-word;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  line-height: 1.1;
  font-size: 0.78rem;
}
.award-image-field {
  gap: 0.55rem;
}
.award-image-upload-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.award-image-hint {
  font-size: 0.84rem;
  line-height: 1.4;
}
.award-image-preview {
  width: 8.5rem;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}
.award-image-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.award-image-preview.empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: center;
}
.entry-card h3, .search-result h3, .page-card h3, .poi-card h3 { margin: 0 0 0.55rem; font-size: 1.2rem; }
.search-page {
  display: grid;
  gap: 1.2rem;
}
.search-main-panel,
.search-sidebar {
  min-width: 0;
}
.search-results-grid {
  display: grid;
  gap: 1rem;
}
.search-result {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  transform-origin: center center;
}
.search-result:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.4);
  border-color: rgba(214, 165, 59, 0.45);
  z-index: 2;
}
.search-result:hover .search-result-media img {
  transform: scale(1.03);
}
.search-result-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: rgba(0, 0, 0, 0.18);
}
.search-result-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}
.search-result .content {
  display: grid;
  gap: 0.55rem;
}
.search-result-meta,
.search-result-excerpt {
  line-height: 1.55;
}
.search-summary {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 1rem;
}
.search-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}
.search-summary-item strong {
  font-size: 1.25rem;
  color: var(--accent-soft);
}
.search-sidebar-note {
  line-height: 1.6;
}
.entry-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
  transform-origin: center center;
}
.entry-card-unpublished {
  position: relative;
  border-color: rgba(220, 70, 70, 0.95);
  box-shadow: 0 0 0 1px rgba(220, 70, 70, 0.45), var(--shadow);
}
.entry-card-unpublished::before {
  content: "Nincs publikÃ¡lva";
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(110, 20, 20, 0.92);
  color: #ffd7d7;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.entry-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.entry-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.02) 0%, rgba(5, 11, 20, 0.18) 45%, rgba(5, 11, 20, 0.88) 100%);
  pointer-events: none;
}
.entry-card img {
  aspect-ratio: 16 / 10;
  transition: none;
  transform-origin: center center;
  border-radius: 0;
}
.entry-card .content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0.7rem 0.8rem 0.9rem;
  gap: 0.2rem;
}
.entry-card:hover,
.entry-card.home-glow-enabled.is-home-active {
  border-color: rgba(214, 165, 59, 0.45);
  z-index: 2;
}
.home-latest-photo-card:hover,
.home-latest-photo-card:focus-within,
.home-latest-photo-card.is-home-active,
.home-latest-blog-card:hover,
.home-latest-blog-card:focus-within {
  border-color: rgba(214, 165, 59, 0.45);
}
.entry-card .eyebrow {
  margin-bottom: 0.55rem;
  font-size: 0.65rem;
  color: #f1d08d;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.entry-card h3 {
  font-size: 1rem;
  margin: 0;
  color: #f2f7ff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.65);
}
.entry-card .muted {
  font-size: 0.9rem;
  line-height: 1.45;
}
.entry-card .chip {
  font-size: 0.74rem;
  padding: 0.25rem 0.55rem;
}
.admin-card-edit-button {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 165, 59, 0.35);
  background: rgba(5, 13, 24, 0.88);
  color: var(--accent-soft);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.28);
}
.admin-card-edit-button:hover {
  border-color: rgba(214, 165, 59, 0.6);
  background: rgba(18, 30, 50, 0.96);
}
.chip {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}
.chip-active {
  background: linear-gradient(135deg, var(--accent) 0%, #b07b16 100%);
  color: #1c1404;
  border-color: transparent;
}

.field { display: grid; gap: 0.45rem; }
.field input, .field textarea, .field select {
  width: 100%;
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-sizing: border-box;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.field input[type="date"],
.field input[type="time"],
.field input[type="datetime-local"],
.field input[type="month"],
.field input[type="week"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  background: rgba(255, 255, 255, 0.04);
}
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator,
.field input[type="datetime-local"]::-webkit-calendar-picker-indicator,
.field input[type="month"]::-webkit-calendar-picker-indicator,
.field input[type="week"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(0.8);
  opacity: 0.9;
  cursor: pointer;
}
.field input[type="date"]::-webkit-clear-button,
.field input[type="time"]::-webkit-clear-button,
.field input[type="datetime-local"]::-webkit-clear-button,
.field input[type="month"]::-webkit-clear-button,
.field input[type="week"]::-webkit-clear-button {
  display: none;
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: dark;
  background-color: rgba(255, 255, 255, 0.04);
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 1rem) 52%,
    calc(100% - 0.7rem) 52%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.4rem;
}
.field select.dark-select {
  background-color: rgba(255, 255, 255, 0.04);
}
.field textarea { min-height: 150px; resize: vertical; }
.contact-panel .field.wide textarea {
  min-height: 220px;
}
.contact-panel .field.wide {
  width: 100%;
}
.contact-panel .field input:hover,
.contact-panel .field textarea:hover,
.contact-panel .field select:hover,
.contact-panel .field input:focus,
.contact-panel .field textarea:focus,
.contact-panel .field select:focus {
  border-color: rgba(214, 165, 59, 0.36);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.18);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}
.field select option {
  background: #08111f;
  color: var(--text);
}
.field input:focus,
.field textarea:focus,
.field select:focus,
.captcha-actions input:focus {
  outline: none;
  border-color: rgba(214, 165, 59, 0.65);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.16);
}
.contact-captcha {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
  align-items: end;
}
.captcha-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}
.captcha-actions input {
  min-width: 9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  box-sizing: border-box;
}
.contact-panel .primary-button {
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.contact-panel .primary-button:hover,
.contact-panel .primary-button:focus-visible {
  color: var(--accent-soft);
  background: rgba(214, 165, 59, 0.08);
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.18);
  outline: none;
}
.wide { grid-column: 1 / -1; }
.admin-editor-panel { min-width: 0; }
.admin-sidebar { position: sticky; top: 5.5rem; }
.upload-panel {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
}
.admin-image-preview {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.22);
}
.admin-image-preview img {
  display: block;
  width: 100%;
  max-height: 28rem;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.28);
}
.admin-image-empty {
  margin-top: 1rem;
  min-height: 12rem;
}
.mini-editor-host {
  min-width: 0;
}
.editor-transfer-actions {
  margin-top: 0.55rem;
}
.mini-editor {
  border-color: rgba(214, 165, 59, 0.6);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.mini-editor:focus-within {
  box-shadow: 0 0 0 1px rgba(214, 165, 59, 0.24);
}
.rich-content { line-height: 1.7; }
.rich-content p:first-child, .rich-content h3:first-child, .rich-content ul:first-child { margin-top: 0; }
.rich-content p:last-child, .rich-content h3:last-child, .rich-content ul:last-child { margin-bottom: 0; }
.rich-content ul { padding-left: 1.2rem; }
.blog-card .rich-content img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}
.blog-detail .rich-content img,
.admin-entry-view .rich-content img,
.admin-entry-view .rich-content .lightbox-media-frame,
.detail-layout [data-entry-details] img,
.detail-layout [data-entry-details] .lightbox-media-frame {
  display: block;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.blog-detail .rich-content .lightbox-media-frame {
  display: inline-block;
  line-height: 0;
  vertical-align: top;
}
.detail-layout [data-photo-detail-content] img {
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.detail-layout [data-photo-detail-content] a[href],
.detail-layout [data-entry-details] a[href],
.blog-detail .rich-content a[href],
.rich-viewer-panel .rich-content a[href] {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.detail-layout [data-photo-detail-content] iframe,
.detail-layout [data-entry-details] iframe,
.rich-viewer-panel .rich-content iframe {
  display: block;
  width: 560px;
  max-width: 100%;
  aspect-ratio: 560 / 315;
  height: auto;
}
.detail-layout [data-photo-detail-content] video,
.detail-layout [data-entry-details] video,
.rich-viewer-panel .rich-content video {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}
.blog-card .rich-content iframe,
.admin-entry-view .rich-content iframe {
  display: block;
  width: 560px;
  max-width: 100%;
  aspect-ratio: 560 / 315;
  height: auto;
}
.rich-page-panel .rich-content,
.rich-viewer-panel .rich-content {
  overflow-x: auto;
}
.rich-page-shell {
  position: relative;
}
.blog-detail .rich-content {
  overflow-x: auto;
}
.lightbox-media-frame {
  position: relative;
  max-width: 100%;
}
.rich-content .lightbox-media-frame {
  display: inline-block;
}
.photo-detail-lightbox-frame {
  display: inline-block;
  line-height: 0;
  vertical-align: top;
}
.photo-detail-lightbox-frame img {
  display: block;
}
.rich-content video,
.admin-entry-view video {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.22);
}
.detail-lightbox-frame {
  display: block;
  width: 100%;
}
.lightbox-media-open {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
}
.allsky-page {
  display: grid;
  gap: 1.2rem;
}
.allsky-embed-panel {
  overflow: hidden;
}
.allsky-embed-link-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.6rem;
}
.allsky-embed-link {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: underline;
  word-break: break-all;
}
.allsky-embed-shell {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}
.allsky-embed-frame {
  display: block;
  width: 100%;
  height: 1px;
  border: 0;
  background: #061019;
  overflow: hidden;
}

.list { flex-direction: column; }
.list-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
}
.admin-list-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-list-copy {
  min-width: 0;
  flex: 1;
}
.admin-list-action {
  min-width: 2.4rem;
  padding: 0.45rem 0.7rem;
}
.platesolve-indicator {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  flex: 0 0 auto;
  border: 1px solid rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.14);
}
.platesolve-indicator.solved {
  background: #7fda79;
}
.platesolve-indicator.failed {
  background: #ff7e7e;
}
.platesolve-indicator.running {
  background: #d6a53b;
  box-shadow: 0 0 0 4px rgba(214, 165, 59, 0.14);
}
.admin-view-sections {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}
.admin-view-panel {
  padding: 1rem 1.1rem;
}
.admin-view-panel h3 {
  margin-top: 0;
}
.list-item.active {
  border-color: rgba(214, 165, 59, 0.7);
  background: rgba(214, 165, 59, 0.08);
}

.detail-sidebar-stack {
  display: grid;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: 5.8rem;
}
.detail-sky-map-panel {
  display: grid;
  gap: 0.85rem;
}
.detail-sky-map-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at center, rgba(214, 165, 59, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(4, 10, 18, 0.98), rgba(6, 14, 26, 0.98));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02), var(--shadow);
  touch-action: none;
  overscroll-behavior: contain;
  user-select: none;
  -webkit-user-select: none;
}
.detail-sky-map-frame {
  position: relative;
  width: 100%;
  height: 100%;
}
.detail-sky-map-canvas {
  position: absolute;
  inset: 0;
}
.detail-sky-map-reset {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  width: 2.4rem;
  height: 2.4rem;
}
.detail-sky-map-reset svg { width: 1rem; height: 1rem; fill: currentColor; stroke: currentColor; }
.detail-sky-map-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}
.detail-sky-map-status {
  margin-top: 0;
}
.detail-sticky-panel {
  padding: 1rem;
}
.detail-tech-grid {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: 0.7rem 1rem;
  align-items: start;
}
.detail-tech-label {
  color: var(--accent-soft);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.detail-details-label {
  grid-column: 1 / -1;
  margin-top: 0.35rem;
}
.detail-details-label-inline {
  margin-top: 0;
}
.detail-details-label-inline.detail-tech-label {
  font-size: 0.88rem;
}
.detail-details-content {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.5rem;
}
.detail-details-empty {
  color: var(--muted);
}
.detail-info-block {
  display: grid;
  gap: 0.3rem;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.85rem;
  line-height: 1.3;
}
.detail-info-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-soft);
  font-weight: 600;
  font-size: 0.85rem;
  line-height: 1.2;
}
.detail-info-icon {
  font-family: "Segoe UI Emoji", "Apple Color Emoji", "Noto Color Emoji", sans-serif;
  line-height: 1;
}
.detail-info-heading-text {
  color: var(--text);
}
.detail-info-list {
  margin: 0;
  padding-left: 1.45rem;
  display: grid;
  gap: 0.22rem;
  list-style: none;
}
.detail-info-list li {
  position: relative;
  color: var(--text);
  padding-left: 0;
}
.detail-info-list li::before {
  content: "\2022";
  position: absolute;
  left: -0.65rem;
  color: var(--accent-soft);
}
.detail-details-text {
  margin: 0;
  color: var(--text);
}
.detail-info-total {
  margin-top: 0.15rem;
  color: var(--accent-soft);
  font-size: 0.85rem;
  line-height: 1.25;
}
.poi-card { padding: 0.9rem; }

.empty-state {
  padding: 1.2rem;
  border: 1px dashed var(--line);
  border-radius: 16px;
  color: var(--muted);
}
.status { margin-top: 0.9rem; min-height: 1.2rem; color: var(--muted); }
.status.error { color: #ffb6b6; }
.footer { padding: 2rem 1.4rem 3rem; color: var(--muted); }

.bottom-nav-shell {
  position: static;
  transform: none;
  opacity: 1;
  pointer-events: auto;
  transition: none;
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.bottom-nav-shell .nav {
  justify-content: center;
  width: 100%;
  padding: 0.175rem 0.85rem calc(0.175rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(180, 205, 235, 0.18);
  border-radius: 0;
  background: rgba(5, 13, 24, 0.62);
  backdrop-filter: blur(10px);
  box-shadow: none;
  gap: 0.45rem;
  flex-wrap: wrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0;
}
.bottom-nav-shell .nav a {
  background: transparent;
  padding: 0.42rem 0.65rem;
}
.bottom-nav-shell .nav a.active {
  background: rgba(214, 165, 59, 0.12);
}
.footer-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  padding-left: 0.2rem;
}
.social-links-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: visible;
}
.header-social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 0;
  box-shadow: none;
  transition: color 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease;
}
.footer-social-link svg {
  width: 1.2em;
  height: 1.2em;
  display: block;
}
.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--accent-soft);
  background: rgba(214, 165, 59, 0.08);
  transform: translateY(-1px);
  outline: none;
}
.scroll-to-top {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(214, 165, 59, 0.45);
  border-radius: 999px;
  background: rgba(5, 13, 24, 0.94);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.6rem);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  z-index: 70;
}
.scroll-to-top-icon {
  width: 1.35rem;
  height: 1.35rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.scroll-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-to-top:hover,
.scroll-to-top:focus-visible {
  border-color: rgba(214, 165, 59, 0.8);
  background: rgba(15, 28, 49, 0.98);
  outline: none;
}

.global-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.global-popup[open="true"] {
  opacity: 1;
  pointer-events: auto;
}
.global-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.72);
}
.global-popup-panel {
  position: relative;
  width: min(92vw, 32rem);
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid rgba(214, 165, 59, 0.32);
  border-radius: 22px;
  background: rgba(8, 17, 31, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.global-popup-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}
.global-popup-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-soft);
}
.global-popup-body {
  margin-top: 0.85rem;
  color: var(--text);
  line-height: 1.6;
}
.global-popup[open="true"] .global-popup-panel {
  animation: global-popup-pop 0.18s ease-out;
}
@keyframes global-popup-pop {
  from { transform: translateY(0.5rem) scale(0.98); opacity: 0.4; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.global-popup-close {
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.admin-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}
.admin-auth-modal[open="true"] {
  opacity: 1;
  pointer-events: auto;
}
.admin-auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 12, 0.72);
}
.admin-auth-modal-panel {
  position: relative;
  width: min(92vw, 32rem);
  padding: 1rem 1.1rem 1.15rem;
  border: 1px solid rgba(214, 165, 59, 0.32);
  border-radius: 22px;
  background: rgba(8, 17, 31, 0.98);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}
.admin-auth-modal[open="true"] .admin-auth-modal-panel {
  animation: global-popup-pop 0.18s ease-out;
}
.admin-auth-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.9rem;
}
.admin-auth-modal-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--accent-soft);
}
.admin-auth-modal-body {
  margin-top: 0.85rem;
  color: var(--text);
  line-height: 1.6;
}
.admin-auth-form {
  margin-top: 0.95rem;
  grid-template-columns: 1fr;
}
.admin-auth-modal-close {
  width: 2.1rem;
  height: 2.1rem;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 7, 14, 0.92);
  z-index: 12000;
  display: block;
}

.lightbox-stage {
  overflow: hidden;
  position: absolute;
  inset: 0;
  touch-action: none;
  cursor: crosshair;
}

.lightbox-zoom-chip {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}

.lightbox-stage img {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: none;
  max-height: none;
  transform-origin: center center;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .grid, .detail-layout, .search-layout, .admin-layout, .split-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .photos-admin-layout { grid-template-columns: 1fr; }
  .blog-admin-layout { grid-template-columns: 1fr; }
  .home-blog-list { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .photos-toolbar {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 0.75rem;
  }
  .photos-toolbar-filters {
    display: flex;
    justify-self: start;
  }
  .photos-toolbar-pagination {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  .photos-toolbar-switch {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
.photos-type-filter-select {
    min-width: 7.7rem;
  }
}
.photos-page {
  margin-top: -0.5rem;
}

@media (max-width: 780px), (max-height: 500px) and (orientation: landscape) {
  .footer-social-links {
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    padding-left: 0;
  }
  .footer-social-link {
    flex: 0 0 auto;
  }
  .form-grid { grid-template-columns: 1fr; }
  .contact-captcha { grid-template-columns: 1fr; }
  .admin-create-bar {
    width: calc(100% - 4rem);
    flex-direction: column;
    align-items: stretch;
  }
  .admin-create-bar-actions {
    width: 100%;
  }
  .admin-create-menu {
    position: static;
    margin-top: 0.75rem;
  }
  .grid,
  .latest-grid,
  .blog-list {
    grid-template-columns: 1fr;
  }
  .blog-card {
    flex-direction: column;
  }
  .blog-card-media {
    flex-basis: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .entry-list-row { grid-template-columns: 72px 1fr; }
  .entry-list-row h3 { grid-column: 1 / -1; }
  .detail-sidebar-stack { position: static; }
  .main { padding: 1.2rem 1rem 3rem; }
  .blog-detail .rich-content img,
  .admin-entry-view .rich-content img,
  .blog-detail .rich-content .lightbox-media-frame,
  .admin-entry-view .rich-content .lightbox-media-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
  .blog-detail .rich-content iframe,
  .admin-entry-view .rich-content iframe,
  .blog-detail .rich-content video,
  .admin-entry-view .rich-content video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .detail-layout [data-photo-detail-content] img,
  .detail-layout [data-entry-details] img,
  .detail-layout [data-photo-detail-content] .lightbox-media-frame,
  .detail-layout [data-entry-details] .lightbox-media-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
  .rich-viewer-panel .rich-content img,
  .rich-viewer-panel .rich-content .lightbox-media-frame {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: auto;
  }
  .rich-viewer-panel .rich-content iframe,
  .rich-viewer-panel .rich-content video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .detail-layout [data-photo-detail-content] iframe,
  .detail-layout [data-entry-details] iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .detail-layout [data-photo-detail-content] video,
  .detail-layout [data-entry-details] video,
  .rich-viewer-panel .rich-content video {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  .header-search-dropdown {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(300px, calc(100vw - 1.5rem));
    max-width: calc(100vw - 1.5rem);
    max-height: calc(5 * 4.7rem);
  }
  .search-layout {
    grid-template-columns: 1fr;
  }
  .scroll-to-top {
    right: 0.85rem;
    bottom: 0.85rem;
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.25rem;
  }
  .global-popup-panel {
    width: min(92vw, 24rem);
    padding: 0.95rem 1rem 1rem;
  }
}
