/* ═══════════════════════════════════════════════════════════
   PETO — Global Stylesheet
   Pure CSS, no framework.
   Font: Inter (loaded via <link> in HTML)
═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #25D366;
  --green-dark:   #1ebd5c;
  --green-glow:   rgba(37, 211, 102, 0.32);
  --green-shadow: rgba(37, 211, 102, 0.39);
  --bg:           #fafafa;
  --white:        #ffffff;
  --zinc-900:     #18181b;
  --zinc-700:     #3f3f46;
  --zinc-600:     #52525b;
  --zinc-500:     #71717a;
  --zinc-400:     #a1a1aa;
  --zinc-200:     #e4e4e7;
  --zinc-100:     #f4f4f5;
  --zinc-50:      #fafafa;
  --orange:       #f97316;
  --orange-50:    #fff7ed;
  --orange-100:   #ffedd5;
  --orange-200:   #fed7aa;
  --blue-600:     #2563eb;
  --teal-600:     #0d9488;
  --emerald-50:   #ecfdf5;
  --emerald-100:  #d1fae5;
  --emerald-500:  #10b981;
  --emerald-600:  #059669;
  --radius-sm:    0.5rem;
  --radius:       1rem;
  --radius-lg:    1.5rem;
  --radius-full:  9999px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:       0 4px 16px rgba(0,0,0,.06);
  --shadow-lg:    0 8px 32px rgba(0,0,0,.08);
  --transition:   all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--zinc-900);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utilities ── */
.container {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px)  { .container { padding-inline: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

.hide-sm { display: inline; }
.show-sm  { display: none; }
@media (max-width: 639px) { .hide-sm { display: none; } .show-sm { display: inline; } }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(135deg, #10b981, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ════════════════════════════════════════════
   AMBIENT BACKGROUND
════════════════════════════════════════════ */
.ambient {
  display: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.blob-1 {
  top: -10%; left: -10%;
  width: 40%; height: 40%;
  background: rgba(167, 243, 208, 0.25);
}
.blob-2 {
  top: 20%; right: -5%;
  width: 30%; height: 30%;
  background: rgba(153, 246, 228, 0.18);
}

/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: max(0.75rem, env(safe-area-inset-top)) 1rem 0;
  transition: var(--transition);
}
.nav-inner {
  width: 100%;
  max-width: 1024px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0.5rem 0.5rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled .nav-inner {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: rgba(228,228,231,0.6);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  padding: 0.5rem 1.25rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-left: 0.25rem;
}
.nav-logo-img {
  height: 2.125rem; width: 2.125rem;
  object-fit: contain;
  background: #000;
  border-radius: 0.75rem;
  padding: 0.25rem;
  box-shadow: var(--shadow-sm);
}
.nav-logo-text {
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--zinc-900);
}

/* ── WhatsApp Button ── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-whatsapp:hover  { background: var(--green-dark); transform: translateY(-1px); }
.btn-whatsapp:active { transform: scale(0.96); }

.btn-sm {
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  box-shadow: 0 4px 14px var(--green-shadow);
}
.btn-lg {
  font-size: 1rem;
  padding: 1rem 2rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
  border: 1px solid rgba(37,211,102,0.2);
}
@media (min-width: 640px) { .btn-lg { font-size: 1.125rem; padding: 1rem 2.5rem; } }

.btn-white {
  background: #fff;
  color: var(--green-dark);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.btn-white:hover { background: var(--emerald-50); transform: translateY(-2px); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 7rem 1rem 3.5rem;
  max-width: 860px;
  margin-inline: auto;
}
@media (min-width: 640px)  { .hero { padding: 9rem 1.5rem 5rem; } }
@media (min-width: 768px)  { .hero { padding: 11rem 2rem 7rem; } }

/* Animal icon row */
.animal-row {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .animal-row { display: flex; } }
@media (min-width: 768px) { .animal-row { gap: 1.25rem; } }

.animal-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  border-radius: 0.875rem;
  border: 1px solid transparent;
  color: var(--zinc-200);
  cursor: default;
  transition: var(--transition);
}
.animal-chip:hover { background: var(--white); box-shadow: var(--shadow-sm); border-color: var(--zinc-100); transform: translateY(-3px); }
.animal-chip svg   { width: 22px; height: 22px; transition: color 0.25s; }

.animal-chip[data-color="emerald"]:hover svg { color: #10b981; }
.animal-chip[data-color="teal"]:hover    svg { color: #0d9488; }
.animal-chip[data-color="blue"]:hover    svg { color: #3b82f6; }
.animal-chip[data-color="pink"]:hover    svg { color: #ec4899; }
.animal-chip[data-color="green"]:hover   svg { color: #16a34a; }
.animal-chip[data-color="orange"]:hover  svg { color: #f97316; }

@media (min-width: 768px) { .animal-chip { padding: 0.75rem; } .animal-chip svg { width: 28px; height: 28px; } }

/* Hero text */
.hero-heading {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.07;
  color: var(--zinc-900);
  margin-bottom: 1.25rem;
}
.hero-br { display: none; }
@media (min-width: 640px) { .hero-br { display: block; } }

.hero-sub {
  font-size: 1rem;
  color: var(--zinc-500);
  line-height: 1.7;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }

/* Hero CTA */
.hero-cta-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: var(--green);
  filter: blur(24px);
  opacity: 0.1;
  border-radius: var(--radius-full);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.1; transform: scale(1); }
  50%       { opacity: 0.2; transform: scale(1.03); }
}

.hero-note {
  font-size: 0.8125rem;
  color: var(--zinc-400);
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

/* ════════════════════════════════════════════
   SECTIONS (shared)
════════════════════════════════════════════ */
.section {
  position: relative;
  z-index: 10;
  padding: 3.5rem 0;
}
@media (min-width: 640px)  { .section { padding: 5rem 0; } }
@media (min-width: 768px)  { .section { padding: 6rem 0; } }

.section-white {
  background: var(--white);
  border-top: 1px solid var(--zinc-100);
  border-bottom: 1px solid var(--zinc-100);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .section-header { margin-bottom: 3.5rem; } }

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--zinc-900);
}
.section-sub {
  color: var(--zinc-500);
  margin-top: 0.5rem;
  font-size: 1rem;
}
@media (min-width: 640px) { .section-sub { font-size: 1.125rem; } }

/* ════════════════════════════════════════════
   HOW IT WORKS — STEP CARDS
════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px)  { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }

.step-card {
  background: var(--white);
  border: 1px solid var(--zinc-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.02);
  transition: var(--transition);
}
.step-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.05);
  transform: translateY(-4px);
}
@media (min-width: 640px) { .step-card { padding: 2rem; } }

.step-icon {
  width: 3rem; height: 3rem;
  border-radius: 0.875rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid;
  transition: transform 0.3s ease;
}
.step-card:hover .step-icon { transform: scale(1.1); }
.step-icon svg { width: 22px; height: 22px; }
@media (min-width: 640px) { .step-icon { width: 3.5rem; height: 3.5rem; } .step-icon svg { width: 26px; height: 26px; } }

.step-icon-emerald { background: var(--emerald-50); border-color: var(--emerald-100); color: var(--emerald-600); }
.step-icon-teal    { background: #f0fdfa; border-color: #ccfbf1; color: var(--teal-600); }
.step-icon-blue    { background: #eff6ff; border-color: #dbeafe; color: var(--blue-600); }

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--zinc-900);
  margin-bottom: 0.5rem;
}
.step-desc {
  font-size: 0.9375rem;
  color: var(--zinc-500);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   TRUST & FAQ GRID
════════════════════════════════════════════ */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .trust-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; } }

/* Safety Card */
.safety-card { position: relative; }
.safety-glow {
  display: none;
}
.safety-inner {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(253,186,116,0.3);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 4px 30px rgba(251,146,60,.04);
}
@media (min-width: 640px) { .safety-inner { padding: 2rem; } }

.safety-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}
.safety-icon {
  width: 2.75rem; height: 2.75rem;
  background: var(--orange-100);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.safety-icon svg { width: 20px; height: 20px; }
@media (min-width: 640px) { .safety-icon { width: 3rem; height: 3rem; } .safety-icon svg { width: 22px; height: 22px; } }

.safety-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--zinc-900);
}
.safety-subtitle {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(249,115,22,.75);
  margin-top: 0.125rem;
}

.safety-list { display: flex; flex-direction: column; gap: 1rem; }
.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--zinc-700);
  line-height: 1.55;
}
.check-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #fb923c;
}

/* FAQ Column */
.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--zinc-100);
  color: var(--zinc-600);
  font-size: 0.8125rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.faq-heading {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--zinc-900);
  margin-bottom: 1.75rem;
}

.faq-list { display: flex; flex-direction: column; gap: 1.5rem; }
.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--zinc-900);
  margin-bottom: 0.375rem;
}
@media (min-width: 640px) { .faq-q { font-size: 1.0625rem; } }
.faq-a {
  font-size: 0.9375rem;
  color: var(--zinc-500);
  line-height: 1.65;
}
.faq-divider { height: 1px; background: var(--zinc-100); margin-top: 1.5rem; }

/* ════════════════════════════════════════════
   CTA BANNER
════════════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
  padding: 4rem 0;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .cta-sub { font-size: 1.125rem; } }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  padding: 2rem 0;
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  position: relative; z-index: 10;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-logo  { font-size: 1.125rem; font-weight: 700; color: var(--zinc-900); }
.footer-by    { font-size: 0.75rem; font-weight: 500; color: var(--zinc-400); background: var(--zinc-100); padding: 0.125rem 0.5rem; border-radius: 0.375rem; }

.footer-links {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.footer-links a { color: var(--zinc-400); transition: color 0.2s; }
.footer-links a:hover { color: var(--emerald-600); }

.footer-copy { font-size: 0.8125rem; color: var(--zinc-400); }

/* ════════════════════════════════════════════
   LEGAL PAGES (privacy.html / terms.html)
════════════════════════════════════════════ */
.legal-header {
  position: fixed;
  top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(244,244,245,0.9);
  padding-top: env(safe-area-inset-top);
}
.legal-nav {
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 1rem;
  height: 3.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 640px) { .legal-nav { padding-inline: 1.5rem; height: 4rem; } }

.back-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--zinc-600);
  transition: var(--transition);
}
.back-link:hover { color: var(--zinc-900); }
.back-link:hover .back-arrow { transform: translateX(-3px); }
.back-arrow { transition: transform 0.2s; }
.back-arrow svg { width: 16px; height: 16px; display: block; }

/* Legal layout */
.legal-body {
  max-width: 1024px;
  margin-inline: auto;
  padding: 5.5rem 1rem 5rem;
}
@media (min-width: 640px) { .legal-body { padding: 6rem 1.5rem 5rem; } }
@media (min-width: 1024px) {
  .legal-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
  }
}

/* Legal TOC sidebar */
.legal-toc {
  display: none;
}
@media (min-width: 1024px) {
  .legal-toc {
    display: block;
  }
  .legal-toc-inner {
    position: sticky;
    top: 6rem;
  }
}
.toc-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--zinc-400);
  margin-bottom: 0.75rem;
}
.toc-links { display: flex; flex-direction: column; gap: 0.5rem; }
.toc-links a {
  font-size: 0.75rem;
  color: var(--zinc-500);
  transition: color 0.2s;
  line-height: 1.4;
}
.toc-links a:hover { color: var(--emerald-600); }

/* Legal content */
.legal-content {}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  color: var(--emerald-600);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.legal-badge svg { width: 14px; height: 14px; }

.legal-h1 {
  font-size: clamp(1.875rem, 5vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--zinc-900);
  margin-bottom: 0.625rem;
}
.legal-meta { font-size: 0.875rem; color: var(--zinc-400); }
.legal-intro {
  font-size: 0.9375rem;
  color: var(--zinc-600);
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 680px;
}
.legal-intro a { color: var(--emerald-600); }
.legal-intro a:hover { text-decoration: underline; }
.legal-divider { height: 1px; background: var(--zinc-100); margin: 2.5rem 0; }

.legal-sections { display: flex; flex-direction: column; gap: 2.5rem; }

.legal-section {}
.legal-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.legal-section-icon {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  background: var(--emerald-50);
  border: 1px solid var(--emerald-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--emerald-600);
}
.legal-section-icon svg { width: 14px; height: 14px; }
.legal-section-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--zinc-900);
}
@media (min-width: 640px) { .legal-section-title { font-size: 1.125rem; } }

.legal-body-text {
  padding-left: 2.75rem;
  font-size: 0.9375rem;
  color: var(--zinc-600);
  line-height: 1.7;
}
.legal-body-text p   { margin-bottom: 0.75rem; }
.legal-body-text a   { color: var(--emerald-600); }
.legal-body-text a:hover { text-decoration: underline; }
.legal-body-text strong { color: var(--zinc-800); }
.legal-body-text ul  { list-style: disc; padding-left: 1.25rem; margin-top: 0.5rem; }
.legal-body-text li  { margin-bottom: 0.5rem; }
.legal-body-text .sub-heading { font-weight: 600; color: var(--zinc-800); margin-top: 1rem; margin-bottom: 0.25rem; }

.info-box {
  border-radius: 0.75rem;
  padding: 1rem;
  border: 1px solid;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}
.info-box.zinc    { background: var(--zinc-50); border-color: var(--zinc-200); color: var(--zinc-900); }
.info-box.emerald { background: var(--emerald-50); border-color: var(--emerald-100); color: #064e3b; }
.info-box.orange  { background: var(--orange-50); border-color: var(--orange-200); color: #7c2d12; }
.info-box strong  { display: block; margin-bottom: 0.25rem; }
.info-box a       { text-decoration: underline; font-weight: 500; }

.rights-list { display: flex; flex-direction: column; gap: 0.625rem; }
.rights-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  font-size: 0.875rem; color: #064e3b;
}
.rights-num {
  flex-shrink: 0;
  width: 1.125rem; height: 1.125rem;
  border-radius: 50%;
  background: var(--emerald-100);
  color: var(--emerald-600);
  font-size: 0.625rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-top: 0.125rem;
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.75rem; color: var(--zinc-400);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--emerald-600); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ════════════════════════════════════════════
   SCROLL-IN ANIMATIONS
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Mobile last-card center fix for 2-col grid ── */
@media (min-width: 640px) and (max-width: 1023px) {
  .steps-grid .step-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 360px;
    margin-inline: auto;
  }
}
