/* Stekker ERE Landing Page */

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

.ere-landing {
  --ere-green: #0cc170;
  --ere-green-dark: #0aad63;
  --ere-green-soft: #e6f9ef;
  --ere-navy: #000538;
  --ere-gray: #767676;
  --ere-bg: #fafaf7;
  --ere-bg-alt: #f2efe8;
  --ere-line: #e8e4d8;

  --ere-display: 'Poppins', system-ui, -apple-system, sans-serif;
  --ere-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  font-family: var(--ere-body);
  color: var(--ere-navy);
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ere-landing * { box-sizing: border-box; }

.ere-landing h1,
.ere-landing h2,
.ere-landing h3 {
  font-family: var(--ere-display);
  color: var(--ere-navy);
  letter-spacing: -0.025em;
  margin: 0;
  font-weight: 700;
}

.ere-landing p { margin: 0; }
.ere-landing a { color: inherit; }

/* ─── Label ─── */
.ere-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ere-green);
  margin-bottom: 1rem;
}

/* ─── Hero ─── */
.ere-hero {
  padding: 3.5rem 0 2.5rem;
  position: relative;
}

.ere-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 14ch;
  margin-bottom: 1.5rem;
}

.ere-highlight {
  position: relative;
  white-space: nowrap;
  display: inline-block;
}

.ere-highlight::after {
  content: '';
  position: absolute;
  left: -0.1em;
  right: -0.1em;
  bottom: 0.08em;
  height: 0.38em;
  background: var(--ere-green);
  opacity: 0.28;
  z-index: -1;
  transform: rotate(-1.2deg);
  border-radius: 3px;
}

.ere-hero-lead {
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  color: var(--ere-gray);
  max-width: 54ch;
  margin-bottom: 2.5rem;
  line-height: 1.55;
}

.ere-hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Buttons ─── */
.ere-landing .ere-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ere-green) !important;
  color: #fff !important;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  font-family: var(--ere-display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
  box-shadow: 0 2px 0 rgba(12,193,112,0.15), 0 8px 24px rgba(12,193,112,0.15);
  border: none;
}
.ere-landing .ere-btn-primary:hover {
  background: var(--ere-green-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12,193,112,0.3);
}

.ere-btn-xl {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
}

.ere-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 0.5rem;
  color: var(--ere-navy);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid var(--ere-navy);
  transition: color 180ms ease, border-color 180ms ease;
}
.ere-btn-secondary:hover {
  color: var(--ere-green);
  border-bottom-color: var(--ere-green);
}

/* ─── Calculator section ─── */
.ere-calculator-section {
  padding: 3.5rem 1.5rem;
  margin: 2rem 0;
  background: var(--ere-bg-alt);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.ere-calculator-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(12,193,112,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ere-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}
.ere-section-header .ere-label { color: var(--ere-green); }
.ere-section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 auto;
  letter-spacing: -0.03em;
}

/* ─── Streams ─── */
.ere-streams {
  padding: 5rem 0 4rem;
}

.ere-streams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .ere-streams-grid { grid-template-columns: 1fr; gap: 1rem; }
}

.ere-stream {
  background: #fff;
  border: 1px solid var(--ere-line);
  padding: 2rem;
  border-radius: 24px 4px 24px 4px;
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.ere-stream:hover {
  transform: translateY(-4px);
  border-color: var(--ere-green);
  box-shadow: 0 12px 32px rgba(0,5,56,0.06);
}

.ere-stream:nth-child(2) {
  border-radius: 4px 24px 4px 24px;
  transform: translateY(1.5rem);
}
.ere-stream:nth-child(2):hover {
  transform: translateY(-2.5rem);
}

@media (max-width: 860px) {
  .ere-stream:nth-child(2) { transform: translateY(0); }
  .ere-stream:nth-child(2):hover { transform: translateY(-4px); }
}

.ere-stream-amount {
  font-family: var(--ere-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--ere-green);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.035em;
}
.ere-stream-unit {
  font-size: 0.5em;
  color: var(--ere-gray);
  font-weight: 500;
  margin-left: 0.15em;
  letter-spacing: 0;
}
.ere-stream h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.ere-stream p {
  color: var(--ere-gray);
  line-height: 1.55;
  font-size: 0.95rem;
}

/* ─── How it works ─── */
.ere-how {
  padding: 4rem 0 5rem;
}

.ere-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.ere-steps::before {
  content: '';
  position: absolute;
  top: 2.25rem;
  left: 15%;
  right: 15%;
  height: 2px;
  background-image: linear-gradient(to right, var(--ere-line) 50%, transparent 50%);
  background-size: 12px 2px;
  z-index: 0;
}

@media (max-width: 860px) {
  .ere-steps { grid-template-columns: 1fr; }
  .ere-steps::before { display: none; }
}

.ere-step {
  position: relative;
  z-index: 1;
  background: var(--ere-bg);
  padding-right: 1rem;
}

.ere-step-number {
  font-family: var(--ere-display);
  font-size: 3.75rem;
  font-weight: 800;
  color: var(--ere-green);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.05em;
  display: inline-block;
  background: var(--ere-bg);
  padding-right: 0.5rem;
}

.ere-step-body h3 {
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.ere-step-body p {
  color: var(--ere-gray);
  line-height: 1.55;
}

/* ─── FAQ ─── */
.ere-faq {
  padding: 4rem 0 5rem;
}

.ere-faq-list {
  max-width: 720px;
  margin: 0 auto;
  padding: 0;
}

.ere-faq-item {
  border-bottom: 1px solid var(--ere-line);
  padding: 1.25rem 0;
}
.ere-faq-item summary {
  font-family: var(--ere-display);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 0.25rem;
  transition: color 200ms ease;
  letter-spacing: -0.015em;
  color: var(--ere-navy);
}
.ere-faq-item summary::-webkit-details-marker { display: none; }
.ere-faq-item summary::after {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-left: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230cc170' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 280ms ease;
}
.ere-faq-item[open] summary::after {
  transform: rotate(45deg);
}
.ere-faq-item[open] summary { color: var(--ere-green); }

.ere-faq-item > p {
  color: var(--ere-gray);
  padding: 1rem 2rem 0.5rem 0;
  line-height: 1.65;
  max-width: 65ch;
}

/* ─── Final CTA ─── */
.ere-cta-final {
  padding: 4.5rem 2rem 5rem;
  margin: 3rem 0 2rem;
  background: var(--ere-navy);
  color: #fff;
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ere-cta-final::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(12,193,112,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.ere-cta-final::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(12,193,112,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.ere-cta-final-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ere-cta-final h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.ere-cta-final > .ere-cta-final-content > p {
  color: rgba(255,255,255,0.7);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
}

.ere-cta-final .ere-btn-primary {
  background: var(--ere-green) !important;
  color: #fff !important;
  box-shadow: 0 2px 0 rgba(12,193,112,0.3), 0 12px 32px rgba(12,193,112,0.3);
}
.ere-cta-final .ere-btn-primary:hover {
  background: var(--ere-green-dark) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(12,193,112,0.4);
}

.ere-cta-final-small {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* ─── Calculator shortcode container ─── */
.ere-calculator-section .stekker-calculator {
  position: relative;
  z-index: 1;
}

/* ─── Explainer trio (4-column variant; gebruikt zonder calculator op /ere en /slim-laden) ─── */
.ere-landing .calc-explainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 0 auto;
  max-width: 1000px;
}
@media (max-width: 520px) {
  .ere-landing .calc-explainer { grid-template-columns: 1fr; }
}
.ere-landing .calc-explainer-col { text-align: center; }
.ere-landing .calc-explainer-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}
.ere-landing .calc-explainer-icon.solar      { background-color: #fcbf2f; }
.ere-landing .calc-explainer-icon.dah        { background-color: #0cc170; }
.ere-landing .calc-explainer-icon.ere        { background-color: #0071FE; }
.ere-landing .calc-explainer-icon.congestion { background-color: #272A4D; }

.ere-landing .calc-explainer-icon:empty {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}
.ere-landing .calc-explainer-icon.solar:empty {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='white'><polygon points='13 2 3 14 12 14 11 22 21 10 12 10 13 2'/></svg>");
}
.ere-landing .calc-explainer-icon.dah:empty {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'><line x1='6' y1='20' x2='6' y2='16'/><line x1='12' y1='20' x2='12' y2='10'/><line x1='18' y1='20' x2='18' y2='4'/></svg>");
}
.ere-landing .calc-explainer-icon.ere:empty {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='4.5' fill='white' stroke='none'/><path d='M12 1.5v3M12 19.5v3M4.2 4.2l2.1 2.1M17.7 17.7l2.1 2.1M1.5 12h3M19.5 12h3M4.2 19.8l2.1-2.1M17.7 6.3l2.1-2.1'/></svg>");
}
.ere-landing .calc-explainer-icon.congestion:empty {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'><path d='M12 3v18M4 21h16M7 9l-4 6h8l-4-6zM17 9l-4 6h8l-4-6zM5 9l7-3 7 3'/></svg>");
}
.ere-landing .calc-explainer-title {
  font-family: var(--ere-display);
  font-weight: 600;
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--ere-navy);
}
.ere-landing .calc-explainer-text {
  font-size: 0.9375rem;
  color: var(--ere-gray);
  line-height: 1.55;
}

/* ─── Scenario cards ("Hoeveel levert het jou op?" op /ere) ─── */
.ere-scenarios-section {
  padding: 5rem 0 4rem;
}

.ere-scenarios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .ere-scenarios { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

.ere-scenario-card {
  background: #ffffff;
  border: 1px solid var(--ere-line);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.ere-scenario-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 5, 56, 0.08);
}

.ere-scenario-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--ere-green);
}
.ere-scenario-card-2 .ere-scenario-accent { background: #0071FE; }
.ere-scenario-card-3 .ere-scenario-accent { background: #C91E5E; }

.ere-scenario-head .ere-scenario-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ere-gray);
  margin-bottom: 0.5rem;
}
.ere-scenario-name {
  font-family: var(--ere-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--ere-navy);
  letter-spacing: -0.02em;
}

.ere-scenario-hero {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.ere-scenario-euro {
  font-family: var(--ere-display);
  font-size: 3rem;
  font-weight: 700;
  color: #C91E5E;
  line-height: 1;
  letter-spacing: -0.03em;
}
.ere-scenario-euro::before {
  content: '€';
  font-weight: 500;
  font-size: 0.5em;
  margin-right: 0.15em;
  vertical-align: 0.35em;
  color: #C91E5E;
}
.ere-scenario-per {
  font-size: 0.875rem;
  color: var(--ere-gray);
}

.ere-scenario-story {
  font-size: 0.9375rem;
  color: #4a4a68;
  line-height: 1.55;
}

.ere-scenario-breakdown {
  border-top: 1px solid var(--ere-line);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ere-scenario-row {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
  white-space: nowrap;
}
.ere-scenario-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ere-green);
  flex-shrink: 0;
  transform: translateY(-1px);
}
.ere-scenario-dot.is-neutral { background: #cfd0d7; }
.ere-scenario-row-lbl {
  flex: 1;
  color: var(--ere-navy);
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.ere-scenario-row-amt {
  font-family: var(--ere-display);
  font-weight: 600;
  color: var(--ere-navy);
  flex-shrink: 0;
}

.ere-scenarios-footnote {
  margin: 2rem auto 0;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--ere-gray);
  max-width: 680px;
  line-height: 1.5;
}

/* ─── Philosophy editorial block (gebruikt op /slim-laden) ─── */
.ere-philosophy {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: #4a4a68;
}
.ere-philosophy p + p { margin-top: 1.25rem; }

/* ─── Business CTA (slate variant van ere-cta-final) ─── */
.ere-cta-business::before {
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.ere-cta-business::after {
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.ere-cta-business .ere-btn-primary {
  background: rgba(255,255,255,0.10) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: none;
}
.ere-cta-business .ere-btn-primary:hover {
  background: #ffffff !important;
  color: #000538 !important;
  border-color: #ffffff;
  box-shadow: 0 8px 32px rgba(255,255,255,0.15);
}
.ere-business-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

/* ─── Responsive ─── */
@media (max-width: 640px) {
  .ere-landing { padding: 0 1rem; }
  .ere-hero { padding: 2rem 0 1.5rem; }
  .ere-calculator-section { padding: 2rem 1rem; border-radius: 20px; }
  .ere-streams { padding: 3rem 0 2.5rem; }
  .ere-how { padding: 2.5rem 0 3rem; }
  .ere-faq { padding: 2.5rem 0 3rem; }
  .ere-cta-final { padding: 3rem 1.5rem 3.5rem; border-radius: 20px; }
}

/* ─────────────────────────────────────────────────────────────
   Vijf niveaus van slim laden — compact, light, consistent met
   de rest van de pagina.
   ───────────────────────────────────────────────────────────── */

.ere-levels-section {
    padding: 3rem 1.5rem 3.5rem;
    background: transparent;
    color: inherit;
}

.ere-levels-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Header */
.ere-levels-header { margin-bottom: 2rem; }

.ere-levels-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #0CC170;
    margin-bottom: 0.75rem;
}

.ere-levels-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #000538;
    margin: 0 0 0.6rem;
}

.ere-levels-title-accent {
    color: #0CC170;
    font-style: normal;
    font-weight: 600;
}

.ere-levels-intro {
    font-size: 15px;
    line-height: 1.55;
    color: #54556D;
    max-width: 720px;
    margin: 0;
}

/* List */
.ere-levels {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ere-level {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    gap: 1.25rem;
    padding: 1rem 0;
    border-top: 1px solid #E9EAEE;
    align-items: start;
}
.ere-level:last-child { border-bottom: 1px solid #E9EAEE; }

.ere-level-num {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #A0A2AB;
    letter-spacing: 0.04em;
    padding-top: 2px;
    text-align: left;
    line-height: 1.4;
}
.ere-level.is-stekker .ere-level-num { color: #0CC170; }
.ere-level.is-horizon .ere-level-num { color: #EFA903; }

.ere-level-body { min-width: 0; }

.ere-level-eyebrow { display: none; }

.ere-level-name {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000538;
    margin: 0 0 0.3rem;
    letter-spacing: -0.005em;
    line-height: 1.25;
}

.ere-level-consumer {
    font-family: 'Poppins', sans-serif;
    font-style: italic;
    font-size: 14px;
    line-height: 1.5;
    color: #272A4D;
    margin: 0 0 0.35rem;
    border: none;
    padding: 0;
}

.ere-level-tech {
    font-size: 13px;
    line-height: 1.55;
    color: #54556D;
    margin: 0;
}

.ere-level-status {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #A0A2AB;
    white-space: nowrap;
    align-self: start;
    padding-top: 3px;
}

.ere-level-status.is-current {
    color: #0CC170;
    border: 1px solid #0CC170;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 600;
}

.ere-level-status.is-building {
    color: #ffffff;
    background: #0CC170;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 600;
}

.ere-level-status.is-horizon {
    color: #EFA903;
    border: 1px solid #EFA903;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 600;
}

/* Pullquote: hidden in compact version */
.ere-levels-pullquote { display: none; }

.ere-levels-footnote {
    font-size: 12px;
    color: #54556D;
    line-height: 1.55;
    margin: 1.25rem 0 0;
    font-style: italic;
}
.ere-levels-footnote a { color: #0CC170; }

@media (max-width: 640px) {
    .ere-level { grid-template-columns: 28px 1fr; gap: 0.85rem; }
    .ere-level-status { grid-column: 2; margin-top: 0.35rem; justify-self: start; }
}
