/* ============================================================
   DuraLibid — styles.css
   Mobile-first, vanilla CSS
   ============================================================ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --navy:       #0d1b2a;
  --wine:       #7a0020;
  --wine-light: #9b1030;
  --cream:      #f8f6f2;
  --white:      #ffffff;
  --text:       #1a1a1a;
  --muted:      #6b6b6b;
  --border:     #e5e0d8;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:  12px;
  --radius-lg: 20px;
  --shadow:  0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 32px rgba(0,0,0,0.12);
}

/* ── Reset ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Container ───────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* ── Header ──────────────────────────────────────────────────── */
.site-header {
  background: #1e2d3d;
  padding: 0.4rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255,255,255,0.85));
}
.header-tag {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Botão CTA ───────────────────────────────────────────────── */
.btn-cta {
  display: inline-block;
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn-cta:hover,
.btn-cta:focus-visible {
  background: var(--wine-light);
  transform: translateY(-1px);
  outline: 2px solid var(--wine-light);
  outline-offset: 3px;
}
.btn-cta-large {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  width: 100%;
  max-width: 360px;
}
.btn-cta-small {
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  white-space: nowrap;
}

/* ── Animações ───────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ── Seções base ─────────────────────────────────────────────── */
section { padding: clamp(3rem, 8vw, 5.5rem) 0; }

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.6rem;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin-inline: auto;
  line-height: 1.6;
}
.section-banner {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
}

/* ── Hero ────────────────────────────────────────────────────── */
.section-hero {
  position: relative;
  background: #0d1b2a;
  color: var(--white);
  padding: 0;
  overflow: hidden;
  min-height: 520px;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 20, 35, 0.92) 0%,
    rgba(10, 20, 35, 0.65) 50%,
    rgba(10, 20, 35, 0.25) 100%
  );
  z-index: 1;
}
.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  max-width: 560px;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}
.hero-subheadline {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  max-width: 440px;
}
.hero-product-img {
  width: clamp(220px, 48vw, 420px);
  filter: drop-shadow(0 16px 48px rgba(0,0,0,0.7));
}

@media (min-width: 768px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .hero-content {
    align-items: flex-start;
    text-align: left;
    flex: 1;
  }
}

/* ── Vídeo ───────────────────────────────────────────────────── */
.section-video {
  background: linear-gradient(135deg, #0d1b2a 0%, #1e2d3d 60%, #2a1a2e 100%);
  padding: clamp(3rem, 7vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.section-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(122,0,32,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.video-title { color: var(--white) !important; }
.video-subtitle { color: rgba(255,255,255,0.6) !important; }

.video-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.video-responsive {
  position: relative;
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);
  padding-bottom: 56.25%;
  height: 0;
}
.video-responsive video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: block;
}
.video-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.video-badge {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ── Benefícios ──────────────────────────────────────────────── */
.section-beneficios { background: var(--cream); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  border: 1px solid var(--border);
  text-align: left;
}
.benefit-svg {
  width: 28px;
  height: 28px;
  color: var(--wine);
  flex-shrink: 0;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}
.benefit-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Ativos ──────────────────────────────────────────────────── */
.section-ativos { background: var(--white); }

.actives-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .actives-grid { grid-template-columns: repeat(3, 1fr); }
}

.active-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
}
.active-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.6rem;
}
.active-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Como Funciona ───────────────────────────────────────────── */
.section-como-funciona { background: #1e2d3d; }
.section-como-funciona .section-title,
.section-como-funciona .section-subtitle { color: var(--white); }
.section-como-funciona .section-subtitle { color: rgba(255,255,255,0.55); }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .steps-list { flex-direction: row; gap: 1.5rem; }
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.step-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--wine-light);
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}
.step-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

/* ── Depoimentos ─────────────────────────────────────────────── */
.section-depoimentos { background: var(--cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.testimonial-stars {
  color: #c8a84b;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar-initials {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.875rem;
  color: var(--text);
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ── ANVISA ──────────────────────────────────────────────────── */
.section-anvisa { background: #1e2d3d; }
.section-anvisa .section-title { color: var(--white); }

.anvisa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .anvisa-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.anvisa-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.anvisa-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.anvisa-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.anvisa-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.anvisa-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

/* ── CTA Final ───────────────────────────────────────────────── */
.section-cta-final {
  background: var(--cream);
  text-align: center;
}
.cta-final-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-final-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.cta-final-subtitle {
  font-size: 1rem;
  color: var(--muted);
}
.cta-product-img-wrap { display: flex; justify-content: center; }
.cta-product-img {
  width: clamp(140px, 30vw, 220px);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.15));
}
.cta-guarantee {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ── Sticky CTA ──────────────────────────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e2d3d;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 1.25rem;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer {
  background: #1e2d3d;
  color: var(--muted);
  padding: 2.5rem 0;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer-legal {
  font-size: 0.78rem;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1rem;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

/* ── Modal ───────────────────────────────────────────────────── */
.checkout-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.checkout-modal.open { display: flex; }

.checkout-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(3px);
  cursor: pointer;
}
.checkout-modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-md);
  animation: modalIn 0.25s ease;
  z-index: 1;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.checkout-modal-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  background: var(--cream);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.checkout-modal-close svg { width: 16px; height: 16px; color: var(--text); }
.checkout-modal-close:hover { background: var(--border); }

.checkout-modal-img-wrap { display: flex; justify-content: center; margin-bottom: 1rem; }
.checkout-modal-img {
  width: clamp(90px, 25vw, 130px);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
}
.checkout-modal-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.checkout-modal-subtitle {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.checkout-modal-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.75rem;
  margin-bottom: 1.5rem;
}
.checkout-modal-benefits li {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.checkout-modal-guarantee {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ── Kits ────────────────────────────────────────────────────── */
.section-kits { background: var(--cream); }

.kits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .kits-grid { grid-template-columns: repeat(3, 1fr); }
}

.kit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  transition: box-shadow 0.2s;
}
.kit-card:hover { box-shadow: var(--shadow-md); }

.kit-card--featured {
  border-color: var(--wine);
  border-width: 2px;
  box-shadow: var(--shadow-md);
}

.kit-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wine);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.kit-qty {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.kit-img {
  width: clamp(80px, 20vw, 120px);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.12));
}

.kit-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wine);
  line-height: 1;
}

.kit-price-old {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
  margin-top: -0.25rem;
}

.kit-discount {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: #2a7a3b;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  align-self: center;
}

.kit-per {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: -0.25rem;
}

.kit-card .btn-cta {
  width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
}

/* Preço no modal */
.checkout-modal-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 0.5rem;
}

/* ── Logo em contextos ───────────────────────────────────────── */
.sticky-cta-logo {
  height: 28px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(255,255,255,0.5));
  opacity: 0.85;
}
.footer-logo {
  height: 56px;
  width: auto;
  display: block;
  margin-inline: auto;
  margin-bottom: 0.75rem;
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255,255,255,0.85));
}
.modal-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-inline: auto;
}
.cta-logo {
  height: 36px;
  width: auto;
  display: block;
  margin-inline: auto;
  vertical-align: middle;
  margin-right: 0.2rem;
}

/* ── Nav Menu ────────────────────────────────────────────────── */
.nav-menu { display: flex; align-items: center; }

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta { margin-left: 0.5rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1e2d3d;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.25rem;
    gap: 0.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 99;
  }
  .nav-list.open { display: flex; }
  .nav-link { padding: 0.65rem 0.5rem; font-size: 1rem; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.section-faq { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--cream);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--border); }

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--wine);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer p {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}
