/* ============================================
   NewzTiQ Redesign - Editorial Void Sections
   Typography as Design - Floating in Space
   ============================================ */

/* ============================================
   FLOATING NAV (appears on scroll)
   ============================================ */
.floating-nav {
  position: fixed;
  top: var(--space-5);
  left: var(--space-6);
  right: var(--space-6);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-nav.visible {
  opacity: 1;
}

.floating-logo,
.floating-cta {
  pointer-events: auto;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  border-radius: 100px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-logo {
  color: var(--text-primary);
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.floating-logo:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.floating-cta {
  color: var(--bg-void);
  background: var(--accent);
  border: 1px solid transparent;
  box-shadow: 0 4px 20px rgba(0, 229, 204, 0.2);
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 229, 204, 0.3);
}

@media (max-width: 480px) {
  .floating-nav {
    top: var(--space-4);
    left: var(--space-4);
    right: var(--space-4);
  }

  .floating-logo,
  .floating-cta {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
  }
}

/* === BASE SECTION === */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: var(--space-20) var(--space-6);
  overflow: hidden;
  isolation: isolate;
}

/* Section background container */
.section-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

/* Gradient orbs for sections */
.section-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  animation: sectionFloat 25s ease-in-out infinite;
}

.section-glow--cyan {
  background: var(--accent);
}

.section-glow--blue {
  background: var(--accent-secondary);
}

.section-glow--offset {
  animation-delay: -12s;
}

/* Grid overlay for sections */
.section-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 100%);
}

@keyframes sectionFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.03); }
  66% { transform: translate(-15px, 15px) scale(0.97); }
}

.section-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.section-content--wide {
  max-width: 1000px;
}

/* === EDITORIAL TYPOGRAPHY === */
.section-statement {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.section-statement--small {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.section-statement-accent {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

/* Subtle glow behind accent text */
.section-statement-accent::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  filter: blur(30px);
  opacity: 0.5;
  z-index: -1;
}

.section-subtext {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: var(--weight-normal);
  line-height: var(--leading-relaxed);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-subtext--small {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  margin-top: var(--space-8);
  color: var(--text-muted);
}

.section-subtext--small strong {
  color: var(--text-secondary);
}

/* === SCROLL REVEAL ANIMATIONS === */

/* Base reveal - Fade + Rise */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Blur to Sharp variant */
.reveal-blur {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Scale + Fade variant */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Glow pulse animation */
@keyframes glowPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

.glow-pulse::after {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Number counter animation */
.counter {
  display: inline-block;
}

/* Staggered list items */
.stagger-item {
  opacity: 0;
  transform: translateX(-20px);
  transition:
    opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-item:nth-child(1) { transition-delay: 0.1s; }
.stagger-item:nth-child(2) { transition-delay: 0.2s; }
.stagger-item:nth-child(3) { transition-delay: 0.3s; }
.stagger-item:nth-child(4) { transition-delay: 0.4s; }
.stagger-item:nth-child(5) { transition-delay: 0.5s; }

/* Checkmark draw animation */
@keyframes checkDraw {
  from { stroke-dashoffset: 20; }
  to { stroke-dashoffset: 0; }
}

.check-icon {
  stroke-dasharray: 20;
  stroke-dashoffset: 20;
}

.stagger-item.visible .check-icon,
.visible .check-icon {
  animation: checkDraw 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: inherit;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-blur,
  .reveal-scale,
  .stagger-item {
    transition: opacity 0.3s ease;
    transform: none;
    filter: none;
  }

  .section-glow,
  .hero-glow {
    animation: none;
  }

  .audio-wave span {
    animation: none;
  }
}


/* ============================================
   SECTION: FINITE FEED
   ============================================ */
.section--finite {
  background: var(--bg-void);
}

.section--finite .section-glow {
  width: 450px;
  height: 450px;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: -5s;
}

/* Inline feature items - centered container, left-aligned items */
.feature-list--centered {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-8);
  text-align: left;
}

.feature-item-inline {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: var(--text-secondary);
}

.feature-icon-circle {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-icon-circle svg {
  width: 18px;
  height: 18px;
}


/* ============================================
   SECTION: TIME BENEFIT
   ============================================ */
.section--time {
  background: var(--bg-elevated);
}

.section--time .section-glow {
  width: 500px;
  height: 500px;
  left: -150px;
  top: 50%;
  transform: translateY(-50%);
  animation-delay: -8s;
}

.section--time .section-statement {
  margin-bottom: var(--space-8);
}

/* Time visual - animated counter feel */
.time-visual {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-10);
}

.time-number {
  font-size: clamp(5rem, 15vw, 12rem);
  font-weight: var(--weight-bold);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tighter);
  color: var(--text-primary);
  position: relative;
}

.time-number::after {
  content: '';
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 70%);
  z-index: -1;
  opacity: 0.5;
}

.time-unit {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
}


/* ============================================
   SECTION: UNDERSTANDING ENGINE
   ============================================ */
.section--understanding {
  background: var(--bg-void);
}

.section--understanding .section-glow {
  width: 400px;
  height: 400px;
  left: -80px;
  bottom: -80px;
  animation-delay: -12s;
}

/* Four pillars grid */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.pillar-item {
  text-align: left;
  padding: var(--space-4);
  border-left: 2px solid var(--border-subtle);
  transition: border-color 0.3s ease;
}

.pillar-item:hover {
  border-color: var(--accent);
}

.pillar-label {
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.pillar-desc {
  font-size: var(--text-small);
  color: var(--text-muted);
}


/* ============================================
   SECTION: PERSONALIZATION
   ============================================ */
.section--personal {
  background: var(--bg-elevated);
}

.section--personal .section-glow {
  width: 400px;
  height: 400px;
  right: -80px;
  top: -80px;
  animation-delay: -15s;
}

/* Feature list - centered container, left-aligned items */
.feature-list {
  display: inline-flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-10);
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-body);
  color: var(--text-secondary);
}

.feature-item-icon {
  width: 20px;
  height: 20px;
  color: var(--accent);
  flex-shrink: 0;
}


/* ============================================
   SECTION: AUDIO
   ============================================ */
.section--audio {
  background: var(--bg-void);
}

.section--audio .section-glow {
  width: 350px;
  height: 350px;
  left: 50%;
  top: 30%;
  transform: translateX(-50%);
  animation-delay: -18s;
}

/* Audio wave visualization */
.audio-visual {
  margin-top: var(--space-12);
}

.audio-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 60px;
}

.audio-wave span {
  width: 4px;
  background: var(--accent);
  border-radius: 2px;
  animation: audioWave 1s ease-in-out infinite;
}

.audio-wave span:nth-child(1) { height: 20px; animation-delay: 0s; }
.audio-wave span:nth-child(2) { height: 35px; animation-delay: 0.1s; }
.audio-wave span:nth-child(3) { height: 50px; animation-delay: 0.2s; }
.audio-wave span:nth-child(4) { height: 35px; animation-delay: 0.3s; }
.audio-wave span:nth-child(5) { height: 20px; animation-delay: 0.4s; }

@keyframes audioWave {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(1.5); opacity: 1; }
}


/* ============================================
   SECTION: NO NOISE
   ============================================ */
.section--noise {
  background: var(--bg-elevated);
}

.section--noise .section-glow {
  width: 400px;
  height: 400px;
  right: -100px;
  bottom: -100px;
  animation-delay: -20s;
}

/* Noise list - what we filter out */
.noise-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
  margin-top: var(--space-10);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.noise-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-body);
  color: var(--text-muted);
}

.noise-x {
  color: #ff6b6b;
  font-weight: var(--weight-bold);
}


/* ============================================
   SECTION: HOW IT WORKS
   ============================================ */
.section--how {
  background: var(--bg-void);
}

.section--how .section-glow--cyan {
  width: 350px;
  height: 350px;
  left: -100px;
  top: 30%;
  animation-delay: -8s;
}

.section--how .section-glow--blue {
  width: 300px;
  height: 300px;
  right: -100px;
  bottom: 30%;
  animation-delay: -20s;
}

/* Steps list */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-top: var(--space-12);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  text-align: left;
}

.step-number {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: var(--weight-bold);
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.6;
}

.step-content {
  flex: 1;
}

.step-title {
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-1);
}

.step-desc {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
}


/* ============================================
   SECTION: SOCIAL PROOF
   ============================================ */
.section--proof {
  background: var(--bg-elevated);
  min-height: 70vh;
  padding: var(--space-16) var(--space-6);
}

/* Testimonial carousel - one at a time */
.testimonial-carousel {
  position: relative;
  margin-top: var(--space-12);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  min-height: 200px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.testimonial-quote-large {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  font-weight: var(--weight-normal);
  color: var(--text-primary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  position: relative;
}

.testimonial-quote-large::before {
  content: '"';
  position: absolute;
  top: -0.3em;
  left: -0.5em;
  font-size: 3em;
  color: var(--accent);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author-large {
  font-size: var(--text-body);
  color: var(--text-muted);
}

.testimonial-author-large strong {
  color: var(--text-secondary);
  font-weight: var(--weight-medium);
}

/* Carousel indicators */
.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dim);
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dot:hover {
  background: var(--text-muted);
}

.carousel-dot.active {
  background: var(--accent);
  transform: scale(1.2);
}


/* ============================================
   SECTION: FINAL CTA
   ============================================ */
.section--cta {
  background: var(--bg-void);
  min-height: 80vh;
}

.section--cta .section-glow--cyan {
  width: 400px;
  height: 400px;
  left: 30%;
  top: 20%;
  animation-delay: -8s;
}

.section--cta .section-glow--blue {
  width: 350px;
  height: 350px;
  right: 30%;
  bottom: 20%;
  animation-delay: -18s;
}

.section--cta .section-statement {
  margin-bottom: var(--space-10);
}


/* ============================================
   SECTION: FAQ
   ============================================ */
.section--faq {
  background: var(--bg-elevated);
  min-height: auto;
  padding: var(--space-20) var(--space-6);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-top: var(--space-10);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item[open] {
  border-color: var(--border-light);
}

.faq-question {
  padding: var(--space-4) var(--space-5);
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  color: var(--text-primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  padding: 0 var(--space-5) var(--space-4);
  font-size: var(--text-small);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-void);
  padding: var(--space-16) var(--space-6) var(--space-8);
  border-top: 1px solid var(--border-subtle);
}

.footer-content {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid var(--border-subtle);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: var(--weight-bold);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.footer-tagline {
  font-size: var(--text-small);
  color: var(--text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bg-surface);
  color: var(--text-muted);
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-social-link:hover {
  background: var(--accent-subtle);
  color: var(--accent);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
}

.footer-email {
  margin-top: var(--space-4);
}

.footer-email-link {
  color: var(--text-muted);
  font-size: var(--text-small);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email-link:hover {
  color: var(--accent);
}

.footer-grant img {
  transition: opacity 0.3s ease;
}

.footer-grant img:hover {
  opacity: 1;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-column-title {
  font-size: var(--text-small);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
  margin-bottom: var(--space-2);
}

.footer-link {
  font-size: var(--text-small);
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: var(--space-6);
  text-align: center;
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--text-dim);
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .footer-brand {
    grid-column: span 2;
    max-width: 100%;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-column {
    text-align: center;
  }
}

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

  .footer-brand {
    grid-column: span 1;
  }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .section {
    padding: var(--space-12) var(--space-4);
    min-height: auto;
  }

  .section--proof {
    min-height: auto;
    padding: var(--space-12) var(--space-4);
  }

  .section--cta {
    min-height: auto;
  }

  .section-statement {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .time-number {
    font-size: clamp(4rem, 20vw, 8rem);
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .testimonial-quote-large {
    font-size: clamp(1.125rem, 4vw, 1.5rem);
  }

  .testimonial-quote-large::before {
    font-size: 2.5em;
    left: 0;
    top: -0.2em;
  }

  .noise-list {
    flex-direction: column;
    align-items: center;
  }

  .step-item {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }

  .step-number {
    font-size: 1.5rem;
  }

  /* Tighten inner element spacing on mobile */
  .feature-list,
  .feature-list--centered {
    margin-top: var(--space-6);
  }

  .pillars-grid {
    margin-top: var(--space-8);
  }

  .steps-list {
    margin-top: var(--space-8);
    gap: var(--space-6);
  }

  .testimonial-carousel {
    margin-top: var(--space-8);
  }

  .time-visual {
    margin-top: var(--space-6);
  }

  .audio-visual {
    margin-top: var(--space-8);
  }

  .noise-list {
    margin-top: var(--space-6);
  }

  .faq-list {
    margin-top: var(--space-6);
  }

  .section--cta .section-statement {
    margin-bottom: var(--space-8);
  }
}

@media (max-width: 480px) {
  .section-subtext {
    font-size: 1rem;
  }

  .pillar-item {
    padding: var(--space-3);
  }

  .testimonial-card {
    padding: var(--space-4);
  }

  .testimonial-quote-large::before {
    font-size: 2em;
    top: -0.2em;
    left: -0.3em;
  }

  .faq-question {
    font-size: var(--text-small);
    padding: var(--space-3) var(--space-4);
  }

  .faq-answer {
    font-size: var(--text-xs);
    padding: 0 var(--space-4) var(--space-3);
  }
}
