@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #008060;
  --dark-green:   #004C3F;
  --lime:         #95BF47;
  --green-light:  #F1F8F5;
  --green-soft:   #E3F1EB;
  --gold:         #F9A825;
  --text:         #1a1a2e;
  --muted:        #666;
  --border:       #e0e0e0;
  --white:        #ffffff;
  --radius:       14px;
  --shadow:       0 4px 20px rgba(0,0,0,.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: #f8f9fa;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── SITE HEADER ── */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--green-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,128,96,.08);
}
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,128,96,.25);
  flex-shrink: 0;
}
.logo-text {
  font-size: 19px;
  font-weight: 800;
  color: var(--text);
}
.logo-text em {
  font-style: normal;
  color: var(--green);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.header-nav a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: background .15s, color .15s;
}
.header-nav a:hover {
  background: var(--green-soft);
  color: var(--green);
}
@media (max-width: 600px) { .header-nav { display: none; } }

/* ── BREADCRUMB ── */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--green); font-weight: 500; }
.breadcrumb-inner a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: .4; }

/* ── ARTICLE HERO ── */
.article-hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 60%, var(--lime) 100%);
  color: #fff;
  padding: 60px 24px 70px;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.07) 0%, transparent 60%),
                    radial-gradient(ellipse at 20% 80%, rgba(0,0,0,.1) 0%, transparent 50%);
  pointer-events: none;
}
.article-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}
.category-tag {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.article-hero h1 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  opacity: .85;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.hero-intro {
  font-size: 17px;
  opacity: .9;
  line-height: 1.65;
  max-width: 720px;
}

/* ── PAGE WRAP ── */
.page-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 80px;
}

/* ── AFFILIATE NOTICE ── */
.affiliate-notice {
  background: #fffbea;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 14px;
  color: #78350f;
  margin-bottom: 36px;
  line-height: 1.6;
}
.affiliate-notice a { color: var(--green); font-weight: 600; }
.affiliate-notice strong { color: #92400e; }

/* ── SECTION TITLE ── */
.section-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.02em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--green);
  display: inline-block;
}

/* ── COMPARISON TABLE ── */
.table-wrap {
  overflow-x: auto;
  margin-bottom: 52px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 14px;
}
.comparison-table thead tr {
  background: var(--dark-green);
  color: #fff;
}
.comparison-table thead th {
  padding: 13px 14px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  white-space: nowrap;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.comparison-table tbody tr:hover { background: var(--green-light); }
.comparison-table tbody tr.top-row { background: #f0fdf4; }
.comparison-table tbody tr.top-row:hover { background: #dcfce7; }
.comparison-table tbody td {
  padding: 14px 14px;
  vertical-align: middle;
}
.rank-num {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.rank-num.r1 { background: #f59e0b; color: #fff; }
.rank-num.r2 { background: #94a3b8; color: #fff; }
.rank-num.r3 { background: #b45309; color: #fff; }
.rank-num.rn { background: var(--green-soft); color: var(--dark-green); font-size: 13px; }
.thumb-placeholder {
  width: 48px; height: 48px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.t-name { font-weight: 600; }
.t-name strong { display: block; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.t-name small { font-size: 12px; color: var(--muted); font-weight: 400; display: block; }
.badge-best {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 4px;
}
.t-stars { color: var(--gold); font-size: 13px; }
.t-score { font-weight: 800; font-size: 15px; color: var(--green); margin-left: 4px; }
@media (max-width: 520px) { .col-spec { display: none; } }

/* ── ALZA BUTTONS ── */
.btn-alza {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 50px;
  transition: background .15s, transform .15s;
  text-align: center;
  white-space: nowrap;
  line-height: 1.2;
}
.btn-alza:hover { background: var(--dark-green); transform: translateY(-1px); }
.btn-alza-sm {
  padding: 8px 14px;
  font-size: 13px;
}
.btn-sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
  letter-spacing: 0;
}

/* ── REVIEWS LIST ── */
.reviews-list { display: flex; flex-direction: column; gap: 28px; margin-bottom: 52px; }

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.review-card.pick1 { border-color: var(--green); border-width: 2px; }

.rv-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--green-light);
}
.pick1 .rv-header { background: #f0fdf4; }
.rv-rank {
  font-size: 13px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-soft);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.rv-header h2 {
  flex: 1;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 800;
  letter-spacing: -.01em;
}
.rv-score {
  font-size: 22px;
  font-weight: 900;
  color: var(--green);
  flex-shrink: 0;
}

.rv-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
}
@media (max-width: 640px) { .rv-body { grid-template-columns: 1fr; } }

.rv-img {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-right: 1px solid var(--border);
  background: #f8faf8;
}
.rv-img img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  display: block;
}
.rv-img .btn-alza {
  display: block;
  width: 100%;
  text-align: center;
  white-space: normal;
  border-radius: 12px;
  padding: 11px 14px 8px;
  font-size: 14px;
  box-sizing: border-box;
}
@media (max-width: 640px) {
  .rv-img {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 16px;
  }
  .rv-img img { width: 160px; height: 160px; }
}

.rv-content { padding: 24px; }

/* ── SPECS TABLE ── */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 14px 0 18px;
  font-size: 13px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.specs-table tr:nth-child(even) { background: #f8faf8; }
.specs-table td {
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
  vertical-align: top;
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table td:first-child {
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  width: 130px;
}
.rv-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 8px; }
.rv-verdict {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 12px;
  line-height: 1.45;
}
.rv-content p { font-size: 14px; color: #374151; line-height: 1.7; margin-bottom: 16px; }

/* ── PROS / CONS ── */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 4px;
}
@media (max-width: 480px) { .pros-cons { grid-template-columns: 1fr; } }
.pros, .cons {
  border-radius: 10px;
  padding: 14px 16px;
}
.pros { background: #f0fdf4; border: 1px solid #bbf7d0; }
.cons { background: #fff7f7; border: 1px solid #fecaca; }
.pros h4, .cons h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}
.pros h4 { color: #16a34a; }
.cons h4 { color: #dc2626; }
.pros ul, .cons ul { list-style: none; padding: 0; }
.pros li, .cons li { font-size: 13px; line-height: 1.5; padding: 3px 0 3px 18px; position: relative; color: #374151; }
.pros li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-weight: 700; }
.cons li::before { content: '✗'; position: absolute; left: 0; color: #dc2626; font-weight: 700; }

/* ── BUYING GUIDE ── */
.buying-guide {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 640px) { .buying-guide { padding: 24px 20px; } }
.buying-guide h2 {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.01em;
  margin-bottom: 12px;
  margin-top: 28px;
  padding-left: 14px;
  border-left: 4px solid var(--green);
}
.buying-guide h2:first-child { margin-top: 0; }
.buying-guide p {
  font-size: 15px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 8px;
  padding-left: 18px;
}

/* ── FAQ ── */
.faq-title {
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 52px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.faq-q {
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background .15s;
}
.faq-q:hover { background: var(--green-light); }
.faq-q::after { content: '+'; font-size: 22px; color: var(--green); flex-shrink: 0; transition: transform .25s; font-weight: 400; }
.faq-item.open .faq-q { background: var(--green-light); color: var(--dark-green); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: #374151;
  line-height: 1.75;
  border-top: 1px solid var(--green-soft);
}
.faq-item.open .faq-a { display: block; }

/* ── HOMEPAGE HERO ── */
.home-hero {
  background: linear-gradient(135deg, var(--dark-green) 0%, var(--green) 60%, var(--lime) 100%);
  color: #fff;
  padding: 90px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.08) 0%, transparent 60%),
                    radial-gradient(ellipse at 20% 80%, rgba(0,0,0,.12) 0%, transparent 50%);
  pointer-events: none;
}
.home-hero-inner { max-width: 740px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 22px;
  letter-spacing: .04em;
}
.home-hero h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.home-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #fff 0%, var(--lime) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.home-hero p {
  font-size: 18px;
  opacity: .88;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.home-stats {
  display: flex;
  justify-content: center;
  gap: 52px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.home-stat .num { font-size: 34px; font-weight: 900; display: block; }
.home-stat .lbl { font-size: 13px; opacity: .72; font-weight: 500; }

/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
}
.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  border: 1px solid #c8e6c9;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-green);
}

/* ── CATEGORIES SECTION ── */
.categories-section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.categories-section h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}
.categories-section .section-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px 22px;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green);
}
.cat-card.soon {
  opacity: .35;
  cursor: default;
  pointer-events: none;
  filter: grayscale(1);
}
.cat-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 14px;
}
.cat-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.cat-desc { font-size: 13px; color: var(--muted); line-height: 1.55; margin-bottom: 14px; }
.cat-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}
.cat-soon-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--green-soft);
  color: var(--dark-green);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: .05em;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark-green);
  color: rgba(255,255,255,.8);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer-brand { font-size: 18px; font-weight: 800; color: #fff; }
.footer-brand em { font-style: normal; color: var(--lime); }
.footer-desc { font-size: 14px; max-width: 440px; line-height: 1.6; }
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  transition: color .15s;
}
.footer-links a:hover { color: #fff; }
.footer-copy { font-size: 12px; opacity: .5; }

/* ── MOBILE: HERO COLLAPSE ── */
@media (max-width: 640px) {
  .article-hero {
    padding: 24px 20px 28px;
  }
  .article-hero h1 {
    font-size: 22px;
    margin-bottom: 0;
  }
  .category-tag,
  .hero-meta,
  .hero-intro {
    display: none;
  }
  .page-wrap {
    padding-top: 20px;
  }
  .section-title {
    font-size: 17px;
    margin-bottom: 14px;
  }
}

/* ── MOBILE: TABLE → PRODUCT CARDS ── */
@media (max-width: 640px) {
  .table-wrap {
    background: transparent;
    box-shadow: none;
    overflow: visible;
    border-radius: 0;
    padding: 0;
  }
  .comparison-table {
    background: transparent;
    display: block;
  }
  .comparison-table thead { display: none; }
  .comparison-table tbody { display: flex; flex-direction: column; gap: 14px; }
  .comparison-table tbody tr {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 18px 16px 14px;
    box-shadow: 0 3px 14px rgba(0,0,0,.07);
    margin: 0;
    gap: 0;
  }
  .comparison-table tbody tr.top-row {
    border-color: var(--green);
    border-width: 2px;
    background: #f6fef9;
  }

  /* all tds become block */
  .comparison-table tbody td { display: block; padding: 0; width: 100%; }

  /* 1 — rank: small pill, top-left */
  .comparison-table tbody td:nth-child(1) {
    margin-bottom: 10px;
  }
  .comparison-table tbody td:nth-child(1) .rank-num {
    width: 30px; height: 30px; font-size: 13px;
  }

  /* 2 — image: large, centered */
  .comparison-table tbody td:nth-child(2) {
    display: flex;
    justify-content: center;
    padding: 6px 0 14px;
  }
  .comparison-table tbody td:nth-child(2) img {
    width: 170px !important;
    height: 170px !important;
    object-fit: contain;
    border-radius: 0;
  }

  /* 3 — name + badge */
  .comparison-table tbody td:nth-child(3) {
    margin-bottom: 10px;
  }
  .comparison-table tbody td:nth-child(3) strong {
    font-size: 15px;
    line-height: 1.3;
  }
  .comparison-table tbody td:nth-child(3) small {
    display: block;
    font-size: 12px;
    color: var(--muted);
    margin-top: 3px;
  }
  .comparison-table tbody td:nth-child(3) .badge-best {
    margin-top: 6px;
  }

  /* 4 — rating: stars + score, styled row */
  .comparison-table tbody td:nth-child(4) {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
  }
  .comparison-table tbody td:nth-child(4) .t-score {
    font-size: 20px;
    font-weight: 900;
  }
  .comparison-table tbody td:nth-child(4) .t-stars {
    font-size: 15px;
  }

  /* 5 — spec: hidden */
  .comparison-table tbody td:nth-child(5) { display: none !important; }

  /* 6 — button: full width */
  .comparison-table tbody td:nth-child(6) {
    margin-top: auto;
  }
  .comparison-table tbody td:nth-child(6) .btn-alza-sm {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 14px 9px;
    font-size: 15px;
    border-radius: 12px;
    white-space: normal;
  }
}

/* ── LEGAL PAGES ── */
.legal-wrap {
  max-width: 860px;
  margin: 40px auto;
  padding: 0 24px 80px;
}
.legal-wrap h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.legal-updated, .legal-date {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 32px;
  display: block;
}
.legal-wrap h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 32px 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--green);
}
.legal-wrap p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 14px;
  line-height: 1.75;
}
.legal-wrap ul { margin: 0 0 14px 20px; }
.legal-wrap li { font-size: 15px; color: #374151; margin-bottom: 6px; line-height: 1.65; }
.legal-wrap a { color: var(--green); font-weight: 600; }
.legal-wrap code { background: var(--green-light); padding: 2px 6px; border-radius: 4px; font-size: 13px; }
