/* ============================================================
   TCG Value — Landing Page Styles
   Extends /css/design-system.css (tokens, reset, base components).
   Only landing-specific layouts and sections live here.
   ============================================================ */

/* === LAYOUT ================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* ============================================================
   NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 60px;
  display: flex;
  align-items: center;
  background: rgba(7, 11, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.site-nav .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}
.nav-logo-icon {
  width: 30px; height: 30px;
  background: var(--primary);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 16px; height: 16px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: var(--text-2);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-cta {
  background: var(--primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  transition: background 0.15s !important;
}
.nav-cta:hover { background: var(--primary-h) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}

/* Background grid */
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 107, 44, 0.05) 0%, transparent 40%),
    radial-gradient(ellipse 60% 40% at 60% 40%, rgba(255, 107, 44, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 20%, transparent 80%);
}

/* Floating card elements */
.hero-card-float {
  position: absolute;
  border-radius: 8px;
  border: 1px solid var(--border-2);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.hero-card-float-1 {
  width: 180px;
  top: 15%;
  right: 8%;
  background: var(--surface);
  transform: rotate(6deg);
}
.hero-card-float-2 {
  width: 140px;
  bottom: 20%;
  right: 14%;
  background: var(--surface-2);
  transform: rotate(-4deg);
}
.hero-card-float-3 {
  width: 120px;
  top: 25%;
  right: 22%;
  background: var(--surface);
  transform: rotate(10deg);
}
.card-float-inner {
  padding: 12px;
}
.card-float-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 6px;
}
.card-float-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 4px;
}
.card-float-change {
  font-size: 0.7rem;
  color: var(--primary);
  font-weight: 600;
}
.card-float-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.card-float-fill {
  height: 100%;
  background: var(--success);
  border-radius: 2px;
}

/* Hero content */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-dim);
  border: 1px solid rgba(255, 107, 44, 0.25);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-headline em {
  font-style: normal;
  color: var(--primary);
}
.hero-subhead {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}
.hero-subhead strong { color: var(--text); font-weight: 600; }

/* Waitlist form */
.hero-form-wrap { margin-bottom: 16px; }
.hero-form {
  display: flex;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
  max-width: 460px;
}
.hero-form:focus-within { border-color: var(--primary); }
.hero-form-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  padding: 15px 18px;
  font-family: inherit;
  min-width: 0;
}
.hero-form-input::placeholder { color: var(--text-3); }
.hero-form-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 15px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  transition: background 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}
.hero-form-btn:hover { background: var(--primary-h); }
.hero-form-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.hero-form-status {
  margin-top: 10px;
  font-size: 0.85rem;
  min-height: 20px;
}
.hero-form-status.ok { color: var(--success); }
.hero-form-status.err { color: var(--danger); }
.hero-form-sub {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 4px;
}

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 96px 0;
  position: relative;
}
.how-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 500px;
}
.how-header { margin-bottom: 64px; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--border));
  z-index: 0;
}
.how-step {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.how-step:hover { border-color: var(--border-2); }
.step-num {
  width: 48px; height: 48px;
  background: var(--primary-dim);
  border: 1px solid rgba(255, 107, 44, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}
.step-icon {
  width: 52px; height: 52px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.step-icon svg { width: 24px; height: 24px; }
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-section {
  padding: 96px 0;
  background: var(--bg-2);
  position: relative;
}
.features-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.features-header { margin-bottom: 56px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover .feat-icon-bg { border-color: rgba(255, 107, 44, 0.4); }
.feat-icon-wrap {
  flex-shrink: 0;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-icon-bg {
  width: 48px; height: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  transition: border-color 0.2s;
}
.feat-icon-bg svg { width: 22px; height: 22px; }
.feat-body { flex: 1; min-width: 0; }
.feat-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.feat-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.6;
}
.feat-tag {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-dim2);
  border: 1px solid rgba(255, 107, 44, 0.15);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ============================================================
   SOCIAL PROOF / WAITLIST
   ============================================================ */
.social-section {
  padding: 96px 0;
  text-align: center;
  position: relative;
}
.social-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.social-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-dim);
  border: 1px solid rgba(255, 107, 44, 0.2);
  border-radius: 999px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.social-badge svg { color: var(--primary); }
.social-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.social-sub {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.social-collector-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}
.avatars-stack {
  display: flex;
}
.avatar-chip {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-2);
}
.avatar-chip:first-child { margin-left: 0; }
.count-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.count-label {
  font-size: 0.85rem;
  color: var(--text-2);
  margin-top: 2px;
}
.social-cta {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--text-3);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 80px 0 96px;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.cta-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(255, 107, 44, 0.08), transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
.cta-sub {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 36px;
}
.cta-form {
  display: flex;
  gap: 0;
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 460px;
  margin: 0 auto 24px;
  transition: border-color 0.2s;
}
.cta-form:focus-within { border-color: var(--primary); }
.cta-form .hero-form-input { background: var(--bg-2); }
.cta-form .hero-form-btn { background: var(--primary); }
.cta-form .hero-form-btn:hover { background: var(--primary-h); }
.cta-note {
  font-size: 0.78rem;
  color: var(--text-3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}
.footer-brand { max-width: 300px; }
.footer-brand .nav-logo { margin-bottom: 12px; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-3);
  line-height: 1.6;
}
.footer-links { display: flex; gap: 40px; }
.footer-link-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 12px;
}
.footer-link-col ul li { margin-bottom: 8px; }
.footer-link-col ul li a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.15s;
}
.footer-link-col ul li a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-3);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  color: var(--text-3);
  transition: color 0.15s;
}
.footer-bottom-links a:hover { color: var(--text-2); }

/* ============================================================
   LIVE DEALS SECTION
   ============================================================ */
.deals-section {
  padding: 96px 0;
  background: var(--bg-2);
  position: relative;
}
.deals-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}
.deals-header { margin-bottom: 48px; }
.deals-header .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

/* Deal card */
.deal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.deal-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(255,107,44,0.15), var(--shadow-sm);
  transform: translateY(-2px);
}

.deal-img-wrap {
  position: relative;
  background: var(--surface-2);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.deal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.deal-card:hover .deal-img-wrap img { transform: scale(1.04); }

/* % off badge */
.deal-pct-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Game badge */
.deal-game-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(7,11,18,0.75);
  color: var(--text-2);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
}

.deal-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.deal-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
  /* clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.deal-set {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.deal-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
.deal-price-main {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--success);
  letter-spacing: -0.02em;
}
.deal-price-market {
  font-size: 0.78rem;
  color: var(--text-3);
  text-decoration: line-through;
}
.deal-shipping-note {
  font-size: 0.7rem;
  color: var(--text-3);
  margin-bottom: 14px;
}

.deal-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
  margin-top: auto;
  gap: 6px;
  white-space: nowrap;
}
.deal-buy-btn:hover { background: var(--primary-h); }
.deal-buy-btn--ebay {
  background: #0064d2;
}
.deal-buy-btn--ebay:hover { background: #0050a8; }

/* Skeleton loading state */
.deal-skeleton {
  pointer-events: none;
}
.skeleton-box {
  width: 100%;
  height: 180px;
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
.skeleton-line {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 4px;
  display: block;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* FTC disclosure */
.deals-disclosure {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-3);
  margin-top: 8px;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-card-float { display: none; }
  .hero-stats { gap: 20px; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .how-steps::before { display: none; }
  .how-step { text-align: left; display: flex; align-items: flex-start; gap: 20px; padding: 24px; }
  .step-num { margin: 0; flex-shrink: 0; }
  .step-icon { margin: 0; flex-shrink: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .cta-card { padding: 40px 28px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { gap: 28px; }
  .nav-links .nav-links-label { display: none; }
}

@media (max-width: 600px) {
  .nav-links a:not(.nav-cta) { display: none; }
  .hero { padding: 90px 0 60px; }
  .hero-stats { flex-direction: row; gap: 16px; flex-wrap: wrap; }
  .hero-form { flex-direction: column; border-radius: var(--radius-lg); }
  .hero-form-btn { border-radius: 0; justify-content: center; }
  .cta-form { flex-direction: column; }
  .cta-form .hero-form-btn { border-radius: 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .faq-section { padding: 60px 0; }
  .faq-question { padding: 16px 20px; }
  .faq-answer { padding: 0 20px 16px; }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-header .section-title {
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  margin: 12px 0 0;
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: var(--primary);
}
.faq-question {
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
}