/* ════════════════════════════════════════════════
   GO.Summit — Global Stylesheet
   public/css/app.css
   ════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────── */
:root {
  --green-900: #2d4a2d;
  --green-800: #2d4a2d;
  --green-700: #1a5c26;
  --green-600: #22772f;
  --green-500: #2d9142;
  --green-400: #3aad52;
  --green-300: #5cc970;
  --green-200: #65826b;
  --green-100: #c2f0ca;
  --green-50:  #edfaf0;
  --sage-100:  #dff0e0;
  --sage-50:   #f4fbf5;
  --amber:     #d97706;
  --amber-lt:  #fef3c7;
  --amber-md:  #f59e0b;
  --stone-900: #1c1917;
  --stone-700: #44403c;
  --stone-500: #78716c;
  --stone-300: #d6d3d1;
  --stone-100: #f5f5f4;
  --white:     #ffffff;
  --cream:     #f9fafb;
  --nav-bg:    #344b2f;
  --nav-accent:#a8d5a2;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--cream);
  color: var(--stone-900);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── NAVBAR ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 5vw;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(168,213,162,0.15);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.2); }

/* Logo */
.logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: #fff; text-decoration: none;
  letter-spacing: -0.02em;
}
.logo img {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
  flex-shrink: 0;
}
.logo span { color: var(--nav-accent); }

/* Nav Links */
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-links a {
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.8); text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s, transform 0.2s;
}
.nav-links a:hover {
  color: var(--nav-accent);
  transform: translateY(-1px);
}

/* Nav Auth Buttons */
.nav-cta { display: flex; gap: 0.75rem; align-items: center; }
.nav-auth { display: flex; gap: 0.75rem; align-items: center; }

.btn-ghost-nav {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85); background: transparent;
  border-radius: 8px;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s ease;
}
.btn-ghost-nav:hover {
  border-color: var(--nav-accent);
  color: var(--nav-accent);
  transform: translateY(-2px);
  background: rgba(168,213,162,0.08);
}

.btn-primary {
  padding: 0.45rem 1.2rem;
  background: var(--nav-accent); color: var(--nav-bg);
  border: none; border-radius: 8px;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 0.875rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s ease;
}
.btn-primary:hover {
  background: #fff;
  color: var(--nav-bg);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(168,213,162,0.4);
}

/* Tombol Masuk & Daftar di inline style navbar */
.nav-auth a,
.nav-auth button {
  transition: all 0.25s ease !important;
}
.nav-auth a:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.nav-auth button:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom, #8cb395, #e3e8e5 100%);
  padding-top: 5px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(58,173,82,0.12) 0%, transparent 55%),
    radial-gradient(circle at 10% 85%, rgba(44,145,66,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 3rem 5vw;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero h1 {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: clamp(3.2rem, 5vw, 5.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.03em; color: var(--green-900);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero h1 .hi { color: var(--green-400); }
.hero h1 .em {
  font-style: italic;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-weight: 400; color: var(--amber);
}
.hero-desc {
  font-size: 1.1rem; color: var(--stone-500); line-height: 1.75;
  max-width: 500px; margin-bottom: 2.5rem;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-cta-lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9rem 2.2rem; background: var(--green-500); color: var(--white);
  border: none; border-radius: 12px;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 20px rgba(44,145,66,0.35);
  transition: all 0.25s;
}
.btn-cta-lg:hover { background: var(--green-600); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(44,145,66,0.4); }

.btn-outline-lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.8rem; background: transparent;
  color: var(--green-700); border: 2px solid var(--green-200);
  border-radius: 12px;
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem; font-weight: 600;
  cursor: pointer; text-decoration: none; transition: all 0.25s;
}
.btn-outline-lg:hover { background: var(--green-50); border-color: var(--green-400); transform: translateY(-2px); }

.hero-stats {
  display: none;
  animation: fadeUp 0.7s 0.4s ease both;
}
.stat-item .stat-num {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: 2rem; font-weight: 800;
  color: var(--green-600); letter-spacing: -0.02em;
}
.stat-item .stat-lbl {
  font-size: 0.78rem; font-weight: 600; color: var(--stone-500);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.hero-visual { position: relative; animation: fadeUp 0.8s 0.2s ease both; }
.hero-img-wrap {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 80px rgba(13,46,24,0.18);
  aspect-ratio: 4/5;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover img { transform: scale(1.04); }
.hero-chip {
  position: absolute; top: 2rem; right: -2rem;
  background: var(--white); border-radius: 14px;
  padding: 1rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 0.75rem;
  min-width: 200px;
}
.hero-chip-icon { font-size: 1.8rem; }
.hero-chip-label { font-size: 0.72rem; font-weight: 700; color: var(--stone-500); text-transform: uppercase; letter-spacing: 0.07em; }
.hero-chip-val { font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: 1rem; font-weight: 800; color: var(--green-700); }

@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes pulse  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

/* ── LAYOUT UMUM ─────────────────────────────────────── */
.sec { padding: 6rem 0; }
.sec-alt { background: linear-gradient(to bottom, #8cb395, #e3e8e5 100%); }
.sec-inner { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.sec-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green-500); margin-bottom: 0.75rem;
}
.sec-title {
  font-family: 'Montserrat', 'Arial Black', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 800;
  letter-spacing: -0.03em; color: var(--green-900); line-height: 1.1;
  margin-bottom: 1rem;
}
.sec-title .hi { color: var(--green-400); }
.sec-sub { color: var(--stone-500); font-size: 1.05rem; max-width: 520px; line-height: 1.75; }

/* ── FITUR ───────────────────────────────────────────── */
.fitur-header { margin-bottom: 1.5rem; }
.fitur-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: var(--white); border: 1.5px solid rgba(44,145,66,0.15);
  border-radius: 16px; padding: 2rem;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(44,145,66,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.feature-card:hover { border-color: var(--green-300); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,145,66,0.12); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-50); border: 1.5px solid var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.2rem; transition: background 0.3s;
}
.feature-card:hover .feature-icon-wrap { background: var(--green-100); }
.feature-card h3 { font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--green-900); margin-bottom: 0.6rem; }
.feature-card p { font-size: 0.9rem; color: var(--stone-500); line-height: 1.7; }

/* ── GUNUNG ──────────────────────────────────────────── */
.mountains-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.mountain-card { position: relative; overflow: hidden; border-radius: 16px; aspect-ratio: 3/4; cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.mountain-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; filter: brightness(0.88); }
.mountain-card:hover img { transform: scale(1.06); filter: brightness(0.7); }
.mountain-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem 1.25rem; background: linear-gradient(to top, rgba(13,46,24,0.88) 0%, transparent 100%); }
.mountain-tag { display: inline-block; background: rgba(58,173,82,0.25); border: 1px solid rgba(58,173,82,0.5); padding: 0.18rem 0.65rem; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #8fde9f; border-radius: 6px; margin-bottom: 0.5rem; }
.mountain-overlay h3 { font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: 1.6rem; font-weight: 800; color: #fff; line-height: 1.1; }
.mountain-meta { display: flex; gap: 0.75rem; margin-top: 0.35rem; }
.mountain-meta span { font-size: 0.78rem; color: rgba(255,255,255,0.72); }
.mountain-meta .alt { color: #fbbf24; font-weight: 700; }

/* ── PRODUK ──────────────────────────────────────────── */
.products-row { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }
.product-card { background: var(--white); border: 1.5px solid rgba(44,145,66,0.15); border-radius: 16px; overflow: hidden; transition: all 0.3s; }
.product-card:hover { border-color: var(--green-300); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(44,145,66,0.12); }
.product-img { height: 160px; background: var(--green-50); display: flex; align-items: center; justify-content: center; font-size: 3.5rem; border-bottom: 1.5px solid rgba(44,145,66,0.12); overflow: hidden; }
.product-body { padding: 1.25rem; }
.product-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-500); margin-bottom: 0.35rem; }
.product-name { font-weight: 700; font-size: 0.95rem; color: var(--green-900); margin-bottom: 0.5rem; }
.product-price { font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--amber); letter-spacing: -0.01em; }
.product-btn { display: block; width: 100%; margin-top: 1rem; padding: 0.6rem; background: var(--green-50); border: 1.5px solid var(--green-200); color: var(--green-700); font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 0.83rem; font-weight: 700; letter-spacing: 0.04em; cursor: pointer; border-radius: 10px; transition: all 0.2s; text-decoration: none; text-align: center; }
.product-btn:hover { background: var(--green-500); color: var(--white); border-color: var(--green-500); }
.products-more { text-align: center; margin-top: 2.5rem; }
.btn-outline-grn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.75rem 2rem; color: var(--green-600); border: 2px solid var(--green-200); background: transparent; border-radius: 12px; font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 0.95rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.btn-outline-grn:hover { background: var(--green-50); border-color: var(--green-400); }

/* ── KOMUNITAS ───────────────────────────────────────── */
.komunitas-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; align-items: center; }
.posts-wrap { display: flex; flex-direction: column; gap: 1rem; }
.post-card { background: var(--white); border: 1.5px solid var(--stone-300); border-radius: 14px; padding: 1.2rem 1.4rem; display: flex; gap: 1rem; align-items: flex-start; transition: border-color 0.2s, box-shadow 0.2s; }
.post-card:hover { border-color: var(--green-300); box-shadow: 0 4px 20px rgba(44,145,66,0.08); }
.post-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--green-50); border: 2px solid var(--green-100); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.post-user { font-size: 0.82rem; font-weight: 700; color: var(--green-600); margin-bottom: 0.3rem; }
.post-text { font-size: 0.9rem; color: var(--stone-700); line-height: 1.6; }
.post-meta { font-size: 0.72rem; color: var(--stone-500); margin-top: 0.4rem; }
.komunitas-cta h3 { font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--green-900); margin-bottom: 1rem; line-height: 1.1; letter-spacing: -0.02em; }
.komunitas-cta h3 .hi { color: var(--green-400); }
.komunitas-cta p { color: var(--stone-500); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }

/* ── CARA KERJA ──────────────────────────────────────── */
.steps-header { text-align: center; margin-bottom: 4rem; }
.steps-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.steps-row::before { content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%; height: 2px; background: linear-gradient(to right, var(--green-200), var(--green-300), var(--green-200)); z-index: 0; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--green-500); color: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: 1.1rem; font-weight: 800; box-shadow: 0 4px 16px rgba(44,145,66,0.35); }
.step h4 { font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--green-900); margin-bottom: 0.6rem; }
.step p { font-size: 0.88rem; color: var(--stone-500); line-height: 1.65; }

/* ── TESTIMONI ───────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.testi-card { background: var(--white); border: 1.5px solid var(--stone-300); border-radius: 16px; padding: 2rem; position: relative; transition: all 0.3s; }
.testi-card:hover { border-color: var(--green-200); box-shadow: 0 8px 32px rgba(44,145,66,0.10); transform: translateY(-3px); }
.testi-card::before { content: '"'; position: absolute; top: 1.25rem; right: 1.6rem; font-size: 5rem; line-height: 1; color: var(--green-100); font-family: Georgia, serif; }
.testi-stars { color: var(--amber-md); font-size: 0.95rem; margin-bottom: 1rem; }
.testi-text { font-size: 0.93rem; line-height: 1.75; color: var(--stone-700); margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 0.85rem; }
.testi-ava { width: 40px; height: 40px; border-radius: 50%; background: var(--green-100); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }
.testi-name { font-weight: 700; font-size: 0.9rem; color: var(--green-900); }
.testi-loc { font-size: 0.75rem; color: var(--stone-500); }

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner { background: var(--cream); padding: 5rem 5vw; text-align: center; position: relative; overflow: hidden; }
.cta-banner::before { content: 'GO.SUMMIT'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: 14vw; font-weight: 800; letter-spacing: 0.06em; color: rgba(35,32,32,0.15); white-space: nowrap; pointer-events: none; z-index: 0; }
.cta-banner h2 { font-family: 'Montserrat', 'Arial Black', sans-serif; font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 800; color: var(--green-900); margin-bottom: 1rem; letter-spacing: -0.07em; position: relative; z-index: 1; }
.cta-banner h2 em { font-style: italic; font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-weight: 400; color: var(--amber); }
.cta-banner h2 span { font-style: normal; font-family: 'Montserrat', 'Arial Black', sans-serif; color: var(--green-900); margin-left: 0.30em; }
.cta-banner p { color: var(--stone-500); font-size: 1.1rem; max-width: 500px; margin: 0 auto 2.5rem; position: relative; z-index: 1; line-height: 1.75; }
.btn-white-cta { position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 0.5rem; padding: 1rem 2.4rem; background: var(--green-500); color: var(--white); border: none; border-radius: 12px; font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; font-size: 1rem; font-weight: 700; cursor: pointer; text-decoration: none; box-shadow: 0 4px 20px rgba(44,145,66,0.35); transition: all 0.25s; }
.btn-white-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(44,145,66,0.4); }

/* ── FOOTER ──────────────────────────────────────────── */
footer { background: var(--nav-bg); color: rgba(255,255,255,0.7); padding: 4rem 0 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 5vw; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { color: #fff; margin-bottom: 1rem; display: flex; }
.footer-brand .logo span { color: var(--nav-accent); }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--nav-accent); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--nav-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 1rem; text-decoration: none; transition: all 0.2s; }
.social-links a:hover { border-color: var(--nav-accent); color: var(--nav-accent); }

/* ── REVEAL ANIMATION ────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 5vw 3rem; }
  .hero-visual { display: none; }
  .mountains-grid { grid-template-columns: repeat(2, 1fr); }
  .komunitas-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: repeat(2, 1fr); }
  .steps-row::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: 3rem; }
  .hero-stats { gap: 1.5rem; }
  .mountains-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
}