:root {
  --bg: #F8F6F1;
  --bg-alt: #EFECE4;
  --fg: #1C1C1C;
  --fg-muted: #5C5A54;
  --accent: #D4620A;
  --accent-hover: #B8540A;
  --card-bg: #FFFFFF;
  --border: #D8D4CA;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-family: var(--font-body);
}

/* HERO */
.hero {
  padding: 5rem 2rem 3rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
}

/* Hero Card */
.hero-visual { display: flex; justify-content: center; }
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.card-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.card-msg {
  background: var(--bg);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.card-sep { height: 1px; background: var(--border); margin-bottom: 1rem; }
.card-response { margin-bottom: 1rem; }
.response-label {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card-response p {
  font-size: 0.85rem;
  color: var(--fg);
  line-height: 1.5;
}
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.action-chip {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  background: #E8F5E9;
  color: #2E7D32;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
}
.stat-desc { font-size: 0.78rem; color: var(--fg-muted); max-width: 160px; line-height: 1.4; }
.stat-sep { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* SECTIONS */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
}

/* HOW */
.how { padding: 5rem 2rem; background: var(--bg-alt); }
.how-inner { max-width: var(--max-w); margin: 0 auto; }
.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.step { flex: 1; min-width: 200px; }
.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.step-body { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.6; }
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  color: var(--border);
  flex-shrink: 0;
}

/* FEATURES */
.features { padding: 5rem 2rem; background: var(--bg); }
.features-inner { max-width: var(--max-w); margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.feature {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: border-color 0.2s;
}
.feature:hover { border-color: var(--accent); }
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.feature-body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 5rem 2rem; background: var(--bg-alt); }
.pricing-inner { max-width: var(--max-w); margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(212,98,10,0.12);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing-header { margin-bottom: 1.75rem; }
.pricing-tier {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.pricing-price { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.price-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--fg);
}
.price-unit { font-size: 0.9rem; color: var(--fg-muted); }
.pricing-desc { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.5; }
.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex: 1;
}
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.pricing-list svg { color: var(--accent); flex-shrink: 0; }
.pricing-cta {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}
.pricing-cta--featured { background: var(--accent); }
.pricing-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  text-align: center;
}
.pricing-note--light { color: rgba(28,28,28,0.45); }

/* QUOTE DEMO */
.quote-demo { padding: 5rem 2rem; background: var(--bg-alt); }
.qd-inner { max-width: var(--max-w); margin: 0 auto; }
.qd-header { margin-bottom: 3rem; }
.qd-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.qd-sub { max-width: 560px; }

.qd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Input panel */
.qd-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
}
.qd-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--fg);
  background: var(--card-bg);
  resize: vertical;
  line-height: 1.6;
  transition: border-color 0.15s;
  margin-bottom: 1rem;
}
.qd-textarea:focus { outline: none; border-color: var(--accent); }
.qd-btn { width: 100%; text-align: center; justify-content: center; display: flex; align-items: center; gap: 0.5rem; }
.qd-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: qd-spin 0.7s linear infinite;
}
@keyframes qd-spin { to { transform: rotate(360deg); } }
.qd-error {
  color: #c0392b;
  font-size: 0.85rem;
  margin-top: 0.75rem;
  padding: 0.6rem 0.875rem;
  background: #fdf0ef;
  border: 1px solid #f5c6c3;
  border-radius: 6px;
}
.qd-proof {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.qd-proof li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.qd-proof svg { color: var(--accent); flex-shrink: 0; }

/* Output panel */
.qd-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3.5rem 2rem;
  border: 2px dashed var(--border);
  border-radius: 12px;
  color: var(--fg-muted);
  text-align: center;
  font-size: 0.9rem;
  min-height: 280px;
}

/* Quote card */
.qd-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.qd-card-header {
  background: var(--fg);
  color: var(--bg);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.qd-card-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
}
.qd-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  flex: 1;
  text-align: right;
}
.qd-card-intro {
  padding: 1rem 1.25rem 0.5rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}
.qd-card-section { padding: 0.875rem 1.25rem; border-bottom: 1px solid var(--border); }
.qd-card-section-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.qd-table { width: 100%; border-collapse: collapse; }
.qd-table th, .qd-table td {
  font-size: 0.82rem;
  padding: 0.3rem 0;
  color: var(--fg);
  line-height: 1.5;
}
.qd-table th {
  font-weight: 600;
  color: var(--fg-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.4rem;
  margin-bottom: 0.4rem;
}
.qd-num { text-align: right; font-variant-numeric: tabular-nums; }

.qd-totals { padding: 0.875rem 1.25rem; background: var(--bg); }
.qd-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 0.25rem 0;
  color: var(--fg-muted);
}
.qd-total-final {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.6rem;
}
.qd-mono { font-variant-numeric: tabular-nums; }
.qd-validity {
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* Mobile */
@media (max-width: 768px) {
  .qd-layout { grid-template-columns: 1fr; }
  .qd-card-header { flex-direction: column; align-items: flex-start; gap: 0.25rem; }
  .qd-card-title { text-align: left; }
}

/* TESTIMONIALS */
.testimonials { padding: 5rem 2rem; background: var(--fg); }
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials .section-title { color: var(--bg); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.75rem;
}
.testimonial-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-source { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* CLOSING */
.closing { padding: 5rem 2rem; background: var(--bg); }
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-statement {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--fg);
}

/* CTA BUTTON */
.cta-button {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-button:hover { background: var(--accent-hover); }

/* FOOTER */
.footer { padding: 2.5rem 2rem; border-top: 1px solid var(--border); background: var(--bg); }
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-desc { font-size: 0.8rem; color: var(--fg-muted); max-width: 280px; }
.footer-links { font-size: 0.8rem; color: var(--fg-muted); display: flex; align-items: center; gap: 1.5rem; }

/* ROI CALCULATOR */
.roi-calc {
  padding: 5rem 2rem;
  background: var(--bg);
}
.roi-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.roi-header { margin-bottom: 3rem; }
.roi-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Inputs */
.roi-inputs { display: flex; flex-direction: column; gap: 2rem; }
.roi-field { display: flex; flex-direction: column; gap: 0.6rem; }
.roi-field-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}
.roi-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--fg);
  line-height: 1.4;
}
.roi-value-badge {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.roi-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  outline: none;
  cursor: pointer;
  accent-color: var(--accent);
}
.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--card-bg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--card-bg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.roi-slider-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-top: -0.1rem;
}

/* Output card */
.roi-output-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.roi-output-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
}
.roi-output-label {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.roi-output-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  white-space: nowrap;
}
.roi-output-accent { color: var(--accent); }
.roi-output-sep { height: 1px; background: var(--border); }

/* Payback highlight */
.roi-payback {
  background: var(--bg);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  text-align: center;
}
.roi-payback-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.roi-payback-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* CTA */
.roi-cta {
  display: block;
  text-align: center;
  margin-top: 0.25rem;
  text-decoration: none;
}
.roi-disclaimer {
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { display: none; }
  .hero-stats { gap: 1.25rem; }
  .stat-sep { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .steps-grid { gap: 2rem; }
  .step-arrow { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { padding: 2rem 1.5rem; }
  .footer-inner { flex-direction: column; }
  .roi-layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.5rem 2rem; }
  .how, .features, .pricing, .testimonials, .closing { padding: 3.5rem 1.5rem; }
  .roi-calc { padding: 3.5rem 1.5rem; }
  .price-num { font-size: 2.5rem; }
  .roi-output-card { padding: 1.5rem; }
}

/* ── Løsninger / Persona Landing Pages ───────────────────── */
.loesninger-hero {
  padding-bottom: 0;
}

/* Pain bullets block — sits below the hero two-column layout */
.loesninger-pain {
  max-width: var(--max-w);
  margin: 3rem auto 0;
  padding: 0 2rem;
}
.loesninger-pain-inner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 2.5rem;
}
.lp-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.lp-bullets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lp-bullet {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.lp-bullet-icon {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.lp-bullet-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--fg);
  margin-bottom: 4px;
}
.lp-bullet-desc {
  font-size: 0.83rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Andre brancher section */
.andre-brancher {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 2rem;
}
.andre-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.andre-label {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 500;
  white-space: nowrap;
}
.andre-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.andre-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--fg-muted);
  font-size: 0.82rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.andre-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: #fff8f5;
}
.andre-link--home {
  font-size: 0.78rem;
  color: var(--fg-muted);
  border-color: transparent;
  background: transparent;
}
.andre-link--home:hover {
  background: transparent;
  border-color: transparent;
  color: var(--accent);
}

@media (max-width: 768px) {
  .lp-bullets { grid-template-columns: 1fr; gap: 1.25rem; }
  .loesninger-pain-inner { padding: 1.5rem; }
  .andre-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 480px) {
  .loesninger-pain { padding: 0 1.5rem; }
}