/* ─── TOKENS (shared with landing) ─────────────── */
:root {
  --cream:   #FFFFFF;
  --sand:    #E4EBFE;
  --navy:    #151B35;
  --ink:     #1E2442;
  --terra:   #428bca;
  --terra-l: #6aaed6;
  --sage:    #3a7abf;
  --mist:    #bdd4ec;
  --white:   #FFFFFF;
  --text:    #2C3152;
  --muted:   #6B7280;
  --border:  #D4DCF0;
  --card-bg: #FFFFFF;
  --primary: #2563EB;
  --bg:      #F7F9FB;
  --surface: #ECEEF0;

  --r-sm: 12px;
  --r-md: 16px;
  --r-lg: 28px;

  --shadow-card: 0 2px 0 0 rgba(21,27,53,.04), 0 4px 16px -4px rgba(21,27,53,.08);
  --shadow-hover: 0 8px 24px rgba(30,41,59,.06);
  --ease-soft: cubic-bezier(.4,0,.2,1);
}

/* ─── RESET ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Rubik', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; }
.hidden { display: none !important; }

/* ─── NAV (Dribbble-style: logo | search | CTA + signup) ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center;
  padding: 12px 28px; gap: 16px;
}
.nav::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,190,172,.25);
  z-index: -1;
}
.nav-logo {
  font-size: 24px; font-weight: 600; color: var(--navy);
  letter-spacing: -.3px; display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 28px; height: 28px; background: var(--terra);
  border-radius: 8px; display: grid; place-items: center;
}
.nav-logo-mark svg { width: 14px; height: 14px; fill: white; }
.nav-search {
  flex: 1; 
  max-width: 70%; 
  position: relative;
  display: flex; 
  align-items: center; 
  margin: 0 auto;
}
.nav-search-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 20px; pointer-events: none;
}
.nav-search-input {
  width: 100%; padding: 10px 44px 10px 42px;
  border: 1px solid var(--border); border-radius: 999px;
  background: var(--bg); font-size: 14px; font-weight: 500;
  color: var(--text); outline: none; font-family: inherit;
  transition: border-color .15s, box-shadow .15s;
}
.nav-search-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.nav-search-input::placeholder { color: var(--muted); }
.nav-search-btn {
  position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff; border: none;
  display: grid; place-items: center; cursor: pointer;
  transition: opacity .15s;
}
.nav-search-btn:hover { opacity: .85; }
.nav-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-create {
  padding: 9px 20px; border-radius: 999px;
  background: var(--navy); color: #fff;
  font-size: 13px; font-weight: 600;
  transition: opacity .15s; white-space: nowrap;
}
.btn-create:hover { opacity: .88; }
.btn-signup {
  padding: 9px 20px; border-radius: 999px;
  background: transparent; color: var(--text);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border);
  cursor: pointer; transition: background .15s; white-space: nowrap;
}
.btn-signup:hover { background: var(--surface); }
.btn-primary {
  background: var(--primary); color: #fff; border: none;
  padding: 10px 22px; border-radius: 999px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: opacity .15s;
}
.btn-primary:hover { opacity: .9; }

/* ─── MAIN ──────────────────────────── */
.discover-main {
  max-width: 1500px; margin: 0 auto;
  padding: 100px 24px 60px;
}

/* ─── HERO ──────────────────────────── */
.discover-hero { margin-bottom: 32px; }
.discover-label {
  display: block; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 8px;
}
.discover-title {
  font-size: 45px; font-weight: 800; color: var(--ink);
  letter-spacing: -.5px; line-height: 1.15;
}
.discover-title-dest {
  font-style: italic; color: var(--primary);
}
@media (max-width: 767px) {
  .discover-title { font-size: 28px; }
}

/* ─── FILTER BAR (Dribbble-style: chips left, actions right) ── */
.filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 32px;
  /*border-bottom: 1px solid var(--border); */
  padding-bottom: 14px;
}

.filter-actions { display: flex; gap: 8px; }
.filter-dropdown-wrap { position: relative; }
.filter-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 18px; border-radius: 999px;
  background: var(--surface); color: var(--ink);
  font-size: 13px; font-weight: 600;
  border: 1px solid var(--border);
  transition: background .15s;
}
.filter-btn:hover { background: var(--border); }
.filter-dropdown {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border-radius: 16px;
  box-shadow: 0 12px 40px rgba(21,27,53,.12);
  padding: 20px; min-width: 280px; z-index: 50;
  border: 1px solid var(--border);
}
.fd-section { margin-bottom: 16px; }
.fd-section:last-child { margin-bottom: 0; }
.fd-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 8px; }
.fd-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.sort-select {
  padding: 10px 16px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border);
  font-size: 13px; font-weight: 600; color: var(--text);
  cursor: pointer; outline: none;
}

/* ─── CHIPS ─────────────────────────── */
.chip-row {
  display: flex; gap: 6px; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
}
.chip-row::-webkit-scrollbar { display: none; }
.chip {
  padding: 8px 14px; border-radius: 999px;
  background: transparent; color: var(--muted);
  font-size: 14px; font-weight: 500;
  transition: all .15s; border: none;
  white-space: nowrap; flex-shrink: 0;
  position: relative;
}
.chip:hover { color: var(--text); }
.chip.active {
  background-color: var(--ink); 
  color: white; 
  font-weight: 600;
}
.chip.active::after {
  content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%);
  width: calc(100% - 16px); height: 2px; background: var(--ink); border-radius: 1px;
}
/* Chips inside filter dropdown keep pill style */
.fd-chips .chip {
  padding: 6px 14px; border-radius: 999px;
  background: var(--surface); font-size: 12px; font-weight: 600;
}
.fd-chips .chip:hover { background: var(--border); color: var(--text); }
.fd-chips .chip.active {
  background: var(--ink); color: #fff;
}
.fd-chips .chip.active::after { display: none; }
.chip.dest-chip.active { background: var(--primary); color: #fff; }
.chip.dest-chip.active::after { display: none; }
.chip .chip-count {
  font-size: 10px; opacity: .7; margin-left: 4px;
}

/* ─── GUIDE GRID ────────────────────── */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1024px) {
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .guide-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ─── GUIDE CARD ────────────────────── */
.guide-card {
  background: var(--card-bg); border-radius: var(--r-md);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .3s var(--ease-soft);
  cursor: pointer;
}
.guide-card:hover { box-shadow: var(--shadow-hover); }

.guide-card-hero {
  position: relative; aspect-ratio: 12/9; overflow: hidden;
  background: var(--surface);
}
.guide-card-hero img,
.guide-card-hero .guide-card-thumb {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease-soft), opacity .3s ease;
}
.guide-card:hover .guide-card-hero .guide-card-thumb { transform: scale(1.05); }
.guide-card-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: none; z-index: 2;
}
.guide-card-motion-icon {
  position: absolute; bottom: 10px; left: 10px;
  width: 28px; height: 28px; border-radius: 6px;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  display: grid; place-items: center;
  color: #fff; z-index: 3;
  transition: opacity .2s;
}
.guide-card:hover .guide-card-motion-icon { opacity: 0; }
.guide-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--sand), var(--mist));
  display: grid; place-items: center;
}

.guide-card-badge {
  position: absolute; top: 12px; right: 12px;
  padding: 4px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
}
.guide-card-badge .badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.guide-card-badge.free { color: #008542; }
.guide-card-badge.free .badge-dot { background: #008542; }
.guide-card-badge.paid { color: var(--primary); }
.guide-card-badge.paid .badge-dot { background: var(--primary); }
.guide-card-badge.new-badge {
  top: 12px; left: 12px; right: auto;
  background: #DBEAFE; color: var(--primary);
  border: none; font-size: 10px; letter-spacing: .5px;
}

/* ── Bookmark button ─────────────────── */
.guide-card-bookmark {
  position: absolute; bottom: 10px; right: 10px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--muted);
  display: grid; place-items: center;
  cursor: pointer; z-index: 4;
  opacity: 0;
  transition: opacity .2s, background .15s, color .15s, transform .15s;
}
.guide-card-bookmark .material-symbols-outlined { font-size: 20px; }
.guide-card:hover .guide-card-bookmark { opacity: 1; }
.guide-card-bookmark:hover {
  background: #fff;
  color: var(--primary);
  transform: scale(1.1);
}
.guide-card-bookmark.saved {
  opacity: 1;
  color: var(--primary);
  background: rgba(255,255,255,.95);
  font-variation-settings: 'FILL' 1;
}
.guide-card-bookmark.saved .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
}

.guide-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }

.guide-card-dest {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; color: var(--muted); margin-bottom: 6px;
}
.guide-card-dest .material-symbols-outlined {
  font-size: 14px; color: var(--primary);
}

.guide-card-title {
  font-size: 18px; font-weight: 600; color: var(--ink);
  line-height: 1.3; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

.guide-card-creator {
  font-size: 13px; color: var(--muted); margin-bottom: 16px;
  display: flex; align-items: center; gap: 6px;
}
.guide-card-creator span { font-weight: 500; color: var(--text); }
.guide-card-visited {
  margin-left: auto;
  padding: 2px 8px; border-radius: 999px;
  background: #ecfdf5; font-size: 11px; font-weight: 600;
  color: #059669; white-space: nowrap;
}
.creator-country-pill {
  /*margin-left: auto;*/
  padding: 2px 8px; border-radius: 999px;
  background: var(--surface); font-size: 11px; font-weight: 600;
  color: var(--muted); display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}

.guide-card-footer {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--surface);
  display: flex; flex-direction: column; gap: 10px;
}

.guide-card-stat {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700; color: var(--primary);
}
.guide-card-stat .material-symbols-outlined { font-size: 16px; }

.guide-card-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.guide-card-tag {
  padding: 4px 10px; border-radius: 999px;
  background: var(--surface); font-size: 10px;
  font-weight: 700; text-transform: uppercase;
  letter-spacing: .8px; color: var(--muted);
}
.guide-card-tag.tag-more {
  background: var(--border); color: var(--text);
}

/* ─── PROMO BANNER (fills remaining grid columns) ── */
.promo-banner {
  background: var(--primary); color: #fff;
  border-radius: var(--r-md); padding: 0;
  display: flex; align-items: stretch;
  overflow: hidden;
  grid-column: span 2;
}
@media (max-width: 1024px) { .promo-banner { grid-column: span 1; } }
@media (max-width: 600px) { .promo-banner { grid-column: span 1; flex-direction: column; } }
.promo-banner-text { max-width: 420px; padding: 40px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.promo-banner-img-wrap {
  position: relative; flex: 0 0 45%; min-height: 240px; overflow: hidden;
}
.promo-banner-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.promo-banner-city-pill {
  position: absolute; bottom: 16px; left: 16px;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(0,0,0,.55); backdrop-filter: blur(8px);
  color: #fff; font-size: 12px; font-weight: 600;
}
.promo-banner-city-pill .material-symbols-outlined { font-size: 16px; }
.promo-banner-label {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: rgba(255,255,255,.2); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px; 
  margin-bottom: 16px;
      width: fit-content;
}
.promo-banner-title {
  font-size: 24px; font-weight: 700; line-height: 1.25; margin-bottom: 12px;
}
.promo-banner-desc {
  font-size: 14px; opacity: .85; line-height: 1.5; margin-bottom: 20px;
}
.promo-banner-cta {
  display: inline-block; padding: 12px 28px; border-radius: 999px;
  background: #fff; color: var(--primary); font-size: 14px; font-weight: 700;
  transition: background .15s; border: none; cursor: pointer;
  
    width: fit-content;
}
.promo-banner-cta:hover { background: #f0f0f0; }
@media (max-width: 767px) {
  .promo-banner-text { padding: 28px; }
  .promo-banner-img-wrap { min-height: 180px; }
  .promo-banner-title { font-size: 20px; }
}

/* ─── EMPTY STATE ───────────────────── */
.empty-state {
  text-align: center; padding: 80px 20px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.empty-state h3 { font-size: 20px; font-weight: 600; color: var(--ink); }
.empty-state p { font-size: 14px; color: var(--muted); }

/* ─── LOAD MORE ─────────────────────── */
.load-more-wrap { text-align: center; padding: 40px 0; }
.btn-load-more {
  padding: 12px 32px; border-radius: 999px;
  background: var(--surface); color: var(--text);
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--border);
  transition: background .15s;
}
.btn-load-more:hover { background: var(--border); }

/* ─── LOADING ───────────────────────── */
.grid-loading {
  text-align: center; padding: 60px 0;
}
.loading-dots { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--muted); }
.loading-dots::after {
  content: ''; width: 16px; height: 16px;
  border: 2px solid var(--border); border-top-color: var(--primary);
  border-radius: 50%; animation: spin .6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── FOOTER ────────────────────────── */
.discover-footer {
  background: #0F172A; padding: 48px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  text-align: center;
}
.footer-logo { font-size: 24px; font-weight: 700; color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer-links a { font-size: 13px; color: #9CA3AF; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; color: #6B7280; }

/* ─── MOBILE ────────────────────────── */
@media (max-width: 767px) {
  .nav { padding: 10px 12px; gap: 8px; }
  .nav-search { max-width: none; }
  .nav-right { gap: 6px; }
  .btn-create { display: none; }
  .btn-signup { padding: 8px 14px; font-size: 12px; }
  .discover-main { padding: 72px 16px 40px; }
  .filter-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
  .filter-actions { width: 100%; justify-content: flex-end; }
}

/* ═══════════════════════════════════════════════
   REGION DISCOVERY — hero, city chips, badges,
   seeding banner, region grid, context footer
   ═══════════════════════════════════════════════ */

/* ── Region Hero (dark overlay + bottom text) ── */
.discover-hero.region-hero {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px 32px 24px;
  border-radius: 0;
  margin: -24px -24px 0;
  min-height: 380px;
}
.discover-hero.region-hero .discover-title {
  color: #fff;
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
  letter-spacing: -.02em;
}
.discover-tagline {
  font-size: 16px;
  color: rgba(255,255,255,.75);
  margin-top: 6px;
  max-width: 600px;
}

/* ── City Chips (inside hero or below) ── */
.city-chips-row {
  display: flex; gap: 8px; flex-wrap: nowrap;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 14px 0 4px;
  scrollbar-width: none;
}
.city-chips-row::-webkit-scrollbar { display: none; }
.city-chip {
  flex-shrink: 0;
  padding: 7px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: all .15s ease;
  backdrop-filter: blur(4px);
}
.city-chip:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); }
.city-chip.active {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

/* ── Guide Type Badges (on cards) ── */
.guide-card-type-badge {
  position: absolute; top: 10px; left: 10px;
  padding: 3px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 700; letter-spacing: .02em;
  text-transform: uppercase;
}
.guide-card-type-badge.verified { background: #d1fae5; color: #059669; }
.guide-card-type-badge.hybrid { background: #dbeafe; color: #1e40af; }
.guide-card-type-badge.planned { background: #ede9fe; color: #6d28d9; }

/* ── Score Tier Badges (on cards) ── */
.guide-card-tier-badge {
  position: absolute; top: 10px; right: 10px;
  padding: 3px 10px; border-radius: 6px;
  font-size: 10px; font-weight: 700;
  display: flex; align-items: center; gap: 3px;
}
.guide-card-tier-badge.signature { background: #d1fae5; color: #059669; }
.guide-card-tier-badge.featured { background: #fef3c7; color: #92400e; }

/* ── Seeding Banner ── */
.seeding-banner { margin-bottom: 20px; }
.seeding-banner-inner {
  display: flex; align-items: center; gap: 12px;
  background: #FEF3C7; border-radius: var(--r-md);
  padding: 16px 20px; position: relative;
}
.seeding-cta {
  margin-left: auto; flex-shrink: 0;
  font-size: 13px; font-weight: 700; color: #92400e;
  text-decoration: none;
}
.seeding-cta:hover { text-decoration: underline; }
.seeding-dismiss {
  position: absolute; top: 8px; right: 12px;
  background: none; font-size: 18px; color: #92400e; opacity: .5;
  cursor: pointer;
}
.seeding-dismiss:hover { opacity: 1; }

/* ── Region Grid (global /discover) ── */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.region-card {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none;
  display: block;
}
.region-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.region-card-hero {
  height: 180px;
  background-size: cover; background-position: center;
  position: relative;
}
.region-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.65) 100%);
}
.region-card-name {
  position: absolute; bottom: 14px; left: 16px;
  color: #fff; font-size: 22px; font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.region-card-tagline {
  padding: 14px 16px;
  font-size: 13px; color: var(--muted);
  line-height: 1.5;
}

/* ── Empty Region State ── */
.empty-region {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 60px 20px;
}
.empty-region h2 { font-size: 20px; font-weight: 700; color: var(--navy); margin: 12px 0 6px; }
.empty-region p { font-size: 14px; color: var(--muted); max-width: 380px; }

/* ── Region Context Footer ── */
.region-footer {
  max-width: 1200px; margin: 40px auto 0; padding: 40px 24px;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px;
}
.region-footer h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.region-footer ul { list-style: none; padding: 0; }
.region-footer li { margin-bottom: 8px; }
.region-footer li a { font-size: 13px; color: var(--terra); }
.region-footer li a:hover { text-decoration: underline; }

/* ── Mobile overrides for region elements ── */
@media (max-width: 768px) {
  .discover-hero.region-hero {
    min-height: 280px;
    padding: 24px 16px 16px;
  }
  .discover-hero.region-hero .discover-title {
    font-size: 36px;
    text-align: center;
  }
  .discover-tagline { text-align: center; font-size: 14px; }
  .city-chips-row { padding: 10px 0; }
  .region-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .region-card-hero { height: 140px; }
  .region-card-name { font-size: 18px; }
  .region-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .seeding-banner-inner {
    flex-direction: column; text-align: center; gap: 8px;
  }
  .seeding-cta { margin-left: 0; }
}

@media (max-width: 480px) {
  .region-grid { grid-template-columns: 1fr; }
}
