:root {
  --font-sans: "Rubik", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", monospace;
  --brand: #1e4ed8;
  --brand-hover: #1b46c4;
  --accent: #60a5fa;
  --accent-dim: rgba(96, 165, 250, 0.15);
  --ink: #f1f5f9;
  --body: #cbd5e1;
  --muted: #94a3b8;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.28);
  --surface: rgba(255,255,255,0.07);
  --surface-hover: rgba(255,255,255,0.11);
  --canvas: #0a1930;
  --canvas-2: #0a1930;
}

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

html { background: var(--canvas); font-size: 17px; }

body {
  font-family: var(--font-sans);
  background: var(--canvas);
  color: var(--body);
  overflow-x: hidden;
  margin: 0; padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main {
  overflow-x: clip;
  max-width: 100%;
}

/* ── Breadcrumb ─────────────────────────── */
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 150ms; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }
.breadcrumb-current { color: rgba(203,213,225,0.7); }

/* ── Product badge ──────────────────────── */
.product-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent);
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.25);
  border-radius: 9999px;
  padding: 4px 14px;
}

/* ── Hero heading ───────────────────────── */
.product-title {
  font-size: clamp(1rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
  margin: 0;
}
.product-title-accent {
  display: block;
  font-size: clamp(0.85rem, 1.8vw, 1.1rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #60a5fa;
  text-transform: none;
  -webkit-text-fill-color: #60a5fa;
  margin-top: 0.25rem;
  line-height: 1.3;
}
.product-subtitle {
  font-size: 0.9375rem;
  font-weight: 400;
  color: rgba(148,163,184,0.85);
  margin: 0.5rem 0 0;
  line-height: 1.4;
}
@media (max-width: 599px) { .product-subtitle { font-size: 19px !important; text-transform: none !important; letter-spacing: 0.02em !important; } .product-pn { font-size: 0.8rem !important; } }
.product-pn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  margin-top: 0.35rem;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
@media (max-width: 767px) {
  .product-pn {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .product-hero-wrap {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .meta-row {
    gap: 0.65rem 1rem;
  }
}

/* ── Trust badges (PMA, Replacement for) ── */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; margin-top: 1.25rem; align-items: stretch; }
.trust-card {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 0.75rem 0.875rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--line-strong);
  border-radius: 0.75rem;
}
.trust-card-icon {
  flex-shrink: 0; width: 30px; height: 30px;
  background: rgba(96,165,250,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.trust-card-icon svg { width: 15px; height: 15px; color: var(--accent); }
.trust-card-label { font-size: 0.75rem; font-weight: 700; color: #e2e8f0; line-height: 1.2; }
.trust-card-sub { font-size: 0.6875rem; color: var(--muted); margin-top: 3px; line-height: 1.4; font-family: var(--font-mono); }

/* ── Meta row (warranty, USA-made) ─────── */
.meta-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 0.875rem; font-size: 0.75rem; color: rgba(148,163,184,0.75); }
.meta-row span { display: flex; align-items: center; gap: 5px; }
.meta-row svg { color: var(--accent); flex-shrink: 0; }

/* ── Approvals inline ───────────────────── */
.approvals-block {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(148,163,184,0.7);
  line-height: 1.6;
}
.approvals-block strong { color: var(--accent); font-weight: 600; }

/* ── Description ────────────────────────── */
.product-desc {
  margin-top: 1.25rem;
  padding: 1.25rem 1.375rem;
  background: linear-gradient(135deg, rgba(30,78,216,0.1) 0%, rgba(96,165,250,0.04) 100%);
  border: 1px solid rgba(96,165,250,0.15);
  border-radius: 0.875rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(203,213,225,0.9);
  position: relative;
}
.product-desc-label { margin-top: 0;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.product-desc-label svg { width: 11px; height: 11px; }

/* ── CTA buttons ── */
.cta-row .btn-primary,
.product-hero-section .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  color: #fff;
  background: #1e4ed8;
  border: 1px solid #1e4ed8;
  transition: background 180ms ease, border-color 180ms ease;
}
.cta-row .btn-primary:hover,
.product-hero-section .btn-primary:hover {
  background: #1b46c4;
  border-color: #1b46c4;
  color: #fff;
}
.cta-row .btn-secondary,
.product-hero-section .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-sizing: border-box;
  color: #e2e8f0;
  background: var(--pwi-btn-ghost-bg, rgba(255, 255, 255, 0.1));
  border: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.cta-row .btn-secondary:hover,
.product-hero-section .btn-secondary:hover {
  color: #fff;
  background: var(--pwi-btn-ghost-hover-bg, rgba(255, 255, 255, 0.15));
  border-color: transparent;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.625rem; margin-top: 1.5rem; }
.approvals-block .model-pill { font-size: 0.65rem; padding: 2px 9px; border-radius: 0.25rem; }

@media (max-width: 639px) {
  /* Multi-manufacturer lists: 2 columns after the first (title + primary) group */
  .approvals-block:has(> div:nth-child(3)) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 0.85rem;
    align-items: start;
  }
  .approvals-block:has(> div:nth-child(3)) > div:first-child {
    grid-column: 1 / -1;
  }
}

/* ── Product image column ───────────────── */
.product-img-wrap {
  position: relative;
  border-radius: 1.125rem;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 0 60px rgba(30,78,216,0.18), 0 24px 48px rgba(0,0,0,0.5);
}
.product-img-wrap img { display: block; width: 100%; height: 100%; object-fit: cover; }
.hero-media .product-img-wrap { flex: none !important; height: 456px; }
.hero-media--single .product-img-wrap {
  flex: none !important;
  height: 520px !important;
  min-height: 520px;
  max-height: 520px;
}
.product-img-wrap-2 {
  position: relative;
  border-radius: 0.875rem;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  margin-top: 0.875rem;
  background: var(--canvas-2);
  height: 300px;
}
.product-img-wrap-2 img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.gallery-link {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--accent); text-decoration: none;
  margin-top: 0.75rem;
  transition: opacity 150ms;
}
.gallery-link:hover { opacity: 0.75; }

/* ── Stats strip ────────────────────────── */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  margin-top: 3.5rem;
}
.stat-cell {
  padding: 1.5rem 2rem;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.stat-cell:last-child { border-right: none; }
.stat-num {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.stat-num-accent {
  color: #60a5fa;
  -webkit-text-fill-color: #60a5fa;
}
.stat-label {
  font-size: 0.625rem;
  text-transform: none;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ── Feature cards ──────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; align-items: stretch; }
@media (min-width: 768px) {
  .feature-grid:has(> .feature-card:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 0.875rem;
}
.feature-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  background: rgba(96,165,250,0.1);
  border: 1px solid rgba(96,165,250,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 18px; height: 18px; color: var(--accent); }
.feature-title { font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: #e2e8f0; margin-bottom: 0.3rem; }
.feature-desc { font-size: 0.8125rem; color: var(--muted); line-height: 1.6; }

/* ── Section labels ─────────────────────── */
.section-label { margin-top: 0;
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
}

/* ── Spec table ─────────────────────────── */
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table tr { border-bottom: 1px solid var(--line); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 0.625rem 0; font-size: 0.8125rem; vertical-align: top; }
.spec-table td:first-child { color: rgba(148,163,184,0.7); width: auto; white-space: nowrap; font-weight: 400; padding-right: 1.5rem; }
.spec-table td:last-child { color: #e2e8f0; font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.04em; }
.dark-ref-table .model-cell { white-space: nowrap; }

/* ── Config table ───────────────────────── */
.config-table { width: 100%; border-collapse: collapse; }
.config-table thead th { padding: 0.5rem 0.75rem; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); border-bottom: 1px solid var(--line-strong); text-align: left; }
.config-table tbody tr { }
.config-table tbody tr:last-child { border-bottom: none; }
.config-table tbody td { padding: 0.625rem 0.75rem; font-size: 0.8125rem; color: #e2e8f0; vertical-align: top; line-height: 1.5; }
.config-table tbody td:first-child { font-weight: 600; font-family: var(--font-mono); font-size: 0.75rem; color: #e2e8f0; }
.config-table tbody td:last-child { font-family: var(--font-mono); font-size: 0.75rem; color: var(--accent); text-align: center; }

/* ── Benefits list ──────────────────────── */
.benefit-item { display: flex; align-items: flex-start; gap: 10px; padding: 0.5rem 0; font-size: 0.8125rem; color: rgba(203,213,225,0.85); line-height: 1.5; }
.benefit-dot { flex-shrink: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 0.45rem; }

/* ── Dark card ──────────────────────────── */
.dark-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(148,163,184,0.18);
  border-radius: 0.875rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

/* ── Related product cards ──────────────── */
.related-card {
  position: relative; overflow: hidden;
  border-radius: 0.875rem;
  border: 1px solid rgba(148,163,184,0.18);
  background: rgba(255,255,255,0.08);
  height: 280px;
  text-decoration: none;
  display: block;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.related-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 65%; transition: transform 400ms ease; }
.related-card:hover img { transform: scale(1.04); }
.related-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.875rem 1.125rem;
  background: #0d1f3d;
  border-top: 1px solid rgba(148,163,184,0.12);
  font-size: 0.8125rem; font-weight: 600; color: #e2e8f0;
}

/* ── Responsive ─────────────────────────── */
@media (max-width: 1023px) {
  .hero-grid,
  .product-hero-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
  }
  .hero-grid > *,
  .product-hero-grid > * {
    min-width: 0;
    max-width: 100%;
  }
  .hero-media { max-width: 100%; margin: 1.5rem 0 0; }
  .product-img-wrap { flex: none !important; height: 380px !important; }
  .hero-media--single .product-img-wrap {
    height: 380px !important;
    min-height: 380px;
    max-height: 380px;
  }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .cta-row { flex-wrap: wrap; margin-bottom: 0; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
}
@media (max-width: 767px) {
  .trust-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr !important; }
  .related-grid { grid-template-columns: 1fr !important; }
  .product-img-wrap-2 { display: none; }
}
@media (max-width: 639px) {
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-cell { padding: 1.125rem 1rem; }
  .product-title {
    font-size: clamp(1.375rem, 7.5vw, 2.25rem);
    overflow-wrap: anywhere;
  }
}

/* ── Fade-in animation (disabled) ───────── */
.reveal, .reveal-1, .reveal-2, .reveal-3, .reveal-4 { opacity: 1; transform: none; animation: none; }

/* ── Shared site header/footer helpers ─── */
.bg-canvas { background: var(--canvas) !important; }
.bg-surface { background: rgba(255,255,255,0.07) !important; }
.bg-surface-soft { background: rgba(255,255,255,0.07) !important; }
.text-ink { color: var(--ink) !important; }
.text-body { color: var(--body) !important; }
.text-muted { color: var(--muted) !important; }
.border-line { border-color: var(--line) !important; }

/* ── Orphan control ─────────────────────── */
.product-title, .product-title-accent, .product-subtitle,
.section-title, .feature-title { text-wrap: balance; }
.product-desc, .feature-desc, .benefit-item,
.approvals-block, .meta-row span { text-wrap: pretty; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::marker { content: ""; }

/* ── Bottom CTA button ─────────────────── */
.btn-cta:hover { background:#1b46c4 !important; }

/* ── Product bottom CTA (match led-lighting hub) ── */
.pwi-site-bottom {
  background: linear-gradient(180deg, #0a1930 0%, #0f172a 42%, #0f172a 100%) !important;
}
.pwi-site-bottom > .site-cta.led-cta,
.pwi-site-bottom > .site-cta.product-site-cta {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
  padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(2.75rem, 5vw, 4.25rem) !important;
  text-align: center;
}
@media (min-width: 768px) {
  .pwi-site-bottom .pwi-footer-grid {
    padding-top: 1.5rem;
  }
}
.pwi-site-bottom > .site-cta.product-site-cta {
  border-top: none !important;
}
.product-site-cta-inner {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.product-site-cta-eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #93c5fd;
  font-weight: 700;
  margin: 0 0 0.75rem;
}
.product-site-cta-title {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 600;
  color: #f1f5f9;
  margin: 0 0 0.75rem;
  line-height: 1.3;
  text-wrap: balance;
}
.product-site-cta .site-cta-lede {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  margin: 0 0 1.75rem;
  line-height: 1.6;
  white-space: normal;
}
.product-site-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.product-site-cta .led-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  border: 1px solid transparent;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.75rem 1.75rem;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease;
}
.product-site-cta .led-cta-btn-secondary:hover,
.product-site-cta .led-cta-btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  border-color: transparent;
  color: #fff;
}
.product-site-cta .led-cta-icon {
  width: 0.85rem;
  height: 0.85rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@media (max-width: 639px) {
  .product-site-cta-actions .btn-primary,
  .product-site-cta-actions .led-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* ── Aircraft reference table ───────────── */
.sn-pill { display: inline-flex !important; align-items: center !important; font-family: var(--font-mono) !important; font-size: 0.6875rem !important; letter-spacing: 0.04em !important; color: #c5d0de !important; background: rgba(255,255,255,0.04) !important; border: 1px solid rgba(148,163,184,0.15) !important; border-radius: 0.375rem !important; padding: 3px 10px !important; margin: 2px 2px 2px 0; }
.alt-pn-lede { font-size: 0.8125rem; color: var(--body); margin: 0.375rem 0 0.75rem; line-height: 1.45; text-wrap: pretty; }
.alt-pn-lede .alt-pn-ref { white-space: nowrap; }
.alt-pn-lede .pn { font-family: var(--font-mono); color: var(--accent); font-weight: 600; }
.note-callout { border-left: 3px solid var(--accent); background: rgba(96,165,250,0.06); border-radius: 0 0.5rem 0.5rem 0; padding: 0.75rem 1rem; margin-top: 1rem; }
/* ── Hero layout (replaces inline section styles) ── */
.product-hero-section {
  background: linear-gradient(160deg, var(--canvas) 0%, var(--canvas-2) 60%, var(--canvas) 100%);
  padding-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.product-hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(147,197,253,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.product-hero-orb {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,78,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.product-hero-wrap {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 0;
}
/* Match hero rail: 1.5rem (px-6) on product content sections below hero */
main:has(.product-hero-wrap) > section > div[style*="max-width:1280px"],
main:has(.product-hero-wrap) > div > div[style*="max-width:1280px"] {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
/* Breadcrumb carries top spacing on desktop; on mobile it is hidden in site.css */
@media (min-width: 768px) {
  .product-hero-wrap {
    padding-top: 0;
  }
}
.product-hero-breadcrumb {
  padding-top: 1.25rem;
  padding-bottom: 1.75rem;
}
@media (min-width: 768px) {
  .product-hero-breadcrumb {
    padding-top: 1.5rem;
  }
}
@media (max-width: 767px) {
  .product-hero-section .product-badge {
    margin-top: 0 !important;
  }
}
.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
  padding-bottom: 0;
  min-width: 0;
}

/* Match engineering: header blends into product hero */
.site-header {
  background: #0a1930 !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

/* ── Touch targets ──────────────────────── */
.btn-primary,
.btn-secondary {
  min-height: 44px;
  box-sizing: border-box;
}

@media (max-width: 639px) {
  .cta-row .btn-primary,
  .product-hero-section .btn-primary,
  .cta-row .btn-secondary,
  .product-hero-section .btn-secondary,
  .product-site-cta-actions .btn-primary,
  .product-site-cta-actions .led-cta-btn-secondary {
    font-size: 0.875rem;
    white-space: nowrap;
    letter-spacing: 0.08em;
    padding-left: 1.1rem;
    padding-right: 1.1rem;
  }
}
