:root {
  --bg: #f6f7f9;
  --surface: #ffffff;
  --ink: #172026;
  --muted: #5f6b76;
  --line: #dbe2e8;
  --accent: #006b68;
  --accent-dark: #004b49;
  --accent-soft: #dff4f1;
  --warning: #8a5b00;
  --code: #14242d;
  --shadow: 0 20px 45px rgba(18, 31, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

code {
  background: #edf2f5;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--code);
  padding: 0.08rem 0.28rem;
}

.site-header {
  background: #10242a;
  color: #f7fbfc;
}

.topbar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 5vw;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 36, 42, 0.95);
  backdrop-filter: blur(10px);
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  border-radius: 4px;
  color: #dce9ec;
  font-size: 0.92rem;
  padding: 0.45rem 0.6rem;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
}

.nav-toggle {
  display: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  min-height: calc(100vh - 68px);
  padding: 7vw 5vw 8vw;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0 0 0.6rem;
  text-transform: uppercase;
}

.site-header .eyebrow {
  color: #7de0d8;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.12;
  margin: 0;
}

h1 {
  font-size: clamp(3.4rem, 11vw, 8.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 980px;
}

h3 {
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  margin: 0;
}

.site-header p {
  color: #c6d7dc;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  margin-top: 1rem;
  max-width: 820px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  display: inline-flex;
  font-weight: 750;
  min-height: 44px;
  padding: 0.72rem 1rem;
  text-decoration: none;
}

.button.primary {
  background: #7de0d8;
  border-color: #7de0d8;
  color: #072225;
}

.button.secondary {
  color: #f7fbfc;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
}

.metric {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 1.35rem;
}

.metric:last-child {
  border-bottom: 0;
}

.metric-value {
  display: block;
  font-size: 2.3rem;
  font-weight: 900;
}

.metric-label {
  color: #c6d7dc;
}

.section {
  padding: 5.5rem 5vw;
}

.section:nth-child(even) {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 2rem;
  max-width: 1050px;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.02rem;
  margin-top: 0.8rem;
  max-width: 780px;
}

.intro-grid,
.cards,
.about-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid article,
.cards article,
.about-grid article,
.step,
.layout-table,
.command-block,
.citation-card,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(18, 31, 40, 0.05);
}

.section:nth-child(even) .intro-grid article,
.section:nth-child(even) .cards article,
.section:nth-child(even) .about-grid article,
.section:nth-child(even) .step,
.section:nth-child(even) .layout-table,
.section:nth-child(even) .command-block,
.section:nth-child(even) .citation-card,
.section:nth-child(even) .contact-card {
  background: #fbfcfd;
}

.intro-grid article,
.cards article,
.about-grid article {
  padding: 1.35rem;
}

.intro-grid h3,
.cards h3,
.about-grid h3 {
  margin-bottom: 0.55rem;
}

.flow-map {
  counter-reset: flow;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow-map a {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 0.75rem;
  min-height: 76px;
  padding: 0.9rem;
  text-decoration: none;
}

.flow-map a:hover {
  border-color: var(--accent);
}

.flow-map span {
  align-items: center;
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent-dark);
  display: inline-flex;
  flex: 0 0 auto;
  font-weight: 850;
  height: 38px;
  justify-content: center;
  min-width: 38px;
  padding: 0 0.5rem;
}

.layout-table {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 0.65fr);
  overflow: hidden;
}

.layout-table > div {
  border-bottom: 1px solid var(--line);
  padding: 0.95rem 1rem;
}

.layout-table > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.layout-table > div:nth-child(odd) {
  background: #f1f6f8;
  font-weight: 700;
}

.step {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 88px minmax(0, 1fr);
  margin-bottom: 1rem;
  padding: 1.2rem;
  scroll-margin-top: 88px;
}

.step-index {
  align-items: center;
  background: var(--accent-dark);
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  font-size: 1.1rem;
  font-weight: 900;
  height: 60px;
  justify-content: center;
  min-width: 60px;
  padding: 0 0.35rem;
}

.step h3 {
  margin-bottom: 0.55rem;
}

.step p + p {
  margin-top: 0.75rem;
}

.loop {
  border-color: #b8dcd8;
}

.substeps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.substeps a {
  background: var(--accent-soft);
  border: 1px solid #b8dcd8;
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.9rem;
  font-weight: 750;
  padding: 0.35rem 0.65rem;
  text-decoration: none;
}

.gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

figure {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

figure img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: contain;
  padding: 0.75rem;
  width: 100%;
}

figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.7rem;
  text-align: center;
}

.adapt-list {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 1.2rem 1.2rem 1.2rem 2.7rem;
}

.adapt-list li {
  color: var(--muted);
  margin: 0.85rem 0;
  padding-left: 0.25rem;
}

.adapt-list strong {
  color: var(--ink);
}

.command-block {
  overflow-x: auto;
}

.citation-card {
  max-width: 1040px;
  overflow-x: auto;
  padding: 1.25rem;
}

.citation-card pre {
  background: #f1f6f8;
  border: 1px solid var(--line);
  border-radius: 6px;
  margin-top: 1rem;
}

.citation-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.citation-links a,
.contact-link {
  background: var(--accent);
  border-radius: 6px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 800;
  min-height: 42px;
  padding: 0.55rem 0.85rem;
  text-decoration: none;
}

.citation-links a:hover,
.contact-link:hover {
  background: var(--accent-dark);
}

.contact-card {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  max-width: 1040px;
  padding: 1.25rem;
}

.contact-card h3 {
  margin-bottom: 0.35rem;
}

pre {
  margin: 0;
  padding: 1.25rem;
}

pre code {
  background: transparent;
  border: 0;
  color: var(--code);
  display: block;
  padding: 0;
}

.footer {
  align-items: center;
  background: #10242a;
  color: #e9f3f5;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1.4rem 5vw;
}

.footer p {
  color: #c6d7dc;
}

.footer a {
  color: #ffffff;
  font-weight: 800;
}

.compact-header {
  min-height: auto;
}

.example-hero {
  align-items: end;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  padding: 6rem 5vw;
}

.example-hero h1 {
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  max-width: 900px;
}

.example-stats {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
}

.example-stats div {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.example-stats strong {
  font-size: 2rem;
}

.example-stats span {
  color: #c6d7dc;
}

.run-pipeline,
.artifact-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.run-pipeline article,
.artifact-grid article,
.result-panel,
.stage-reader {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
}

.run-pipeline article > span {
  color: var(--accent);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.run-pipeline h3,
.artifact-grid h3 {
  margin-bottom: 0.55rem;
}

.artifact-grid article > code {
  display: inline-block;
  margin-bottom: 1rem;
}

.artifact-grid a {
  color: var(--accent-dark);
  display: inline-block;
  font-weight: 800;
  margin-top: 1rem;
}

.stage-reader {
  margin: 0 0 1rem;
  padding-left: 3rem;
}

.stage-reader li {
  color: var(--muted);
  margin: 0.8rem 0;
  padding-left: 0.25rem;
}

.stage-reader strong,
.callout strong {
  color: var(--ink);
}

.result-panel {
  display: grid;
  gap: 1.25rem;
}

.comparison-table {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  overflow-x: auto;
}

.comparison-table > div {
  border-bottom: 1px solid var(--line);
  min-width: 120px;
  padding: 0.7rem;
}

.comparison-table > div:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.comparison-table .table-head {
  background: #f1f6f8;
  color: var(--ink);
  font-weight: 800;
}

.callout {
  background: #fff6df;
  border-left: 4px solid var(--warning);
  padding: 0.9rem 1rem;
}

.section-note {
  margin-top: 1rem;
  max-width: 1000px;
}

/* The worked example is documentation first: keep lines short, sections distinct,
   and related artifacts together instead of filling every available column. */
.skip-link {
  background: #ffffff;
  border-radius: 0 0 6px 0;
  color: var(--accent-dark);
  font-weight: 800;
  left: 0;
  padding: 0.7rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

.example-page {
  background: #f4f7f8;
  font-size: 1rem;
}

.example-page .topbar,
.example-page .example-hero,
.example-page .section > * {
  margin-left: auto;
  margin-right: auto;
  width: min(100%, 1180px);
}

.example-page .topbar {
  max-width: none;
  width: 100%;
}

.example-page .example-hero {
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-top: clamp(4rem, 8vw, 7rem);
}

.example-page .example-hero h1 {
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 1.02;
}

.example-page .lead {
  line-height: 1.65;
  max-width: 690px;
}

.example-page .example-stats {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}

.example-page .example-stats div {
  min-height: 118px;
  padding: 1.4rem;
}

.example-page .example-stats strong {
  font-size: 2.35rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.example-page .section {
  padding-bottom: clamp(5rem, 8vw, 7.5rem);
  padding-top: clamp(5rem, 8vw, 7.5rem);
}

.example-page .section-heading {
  margin-bottom: 3rem;
  max-width: 790px;
}

.example-page .section-heading h2 {
  font-size: clamp(2.1rem, 4vw, 3.25rem);
  line-height: 1.08;
}

.example-page .section-heading p:not(.eyebrow) {
  font-size: 1.08rem;
  line-height: 1.75;
  margin-top: 1.15rem;
  max-width: 720px;
}

.example-page .run-pipeline {
  counter-reset: run-step;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.example-page .run-pipeline article {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  counter-increment: run-step;
  padding: 2rem 2.25rem 2rem 4.75rem;
  position: relative;
}

.example-page .run-pipeline article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.example-page .run-pipeline article::before {
  align-items: center;
  background: var(--accent-soft);
  border-radius: 999px;
  color: var(--accent-dark);
  content: counter(run-step, decimal-leading-zero);
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 2.25rem;
  justify-content: center;
  left: 1.25rem;
  position: absolute;
  top: 1.8rem;
  width: 2.25rem;
}

.example-page .run-pipeline article > span {
  display: none;
}

.example-page .run-pipeline h3 {
  font-size: 1.3rem;
  margin-bottom: 0.65rem;
}

.example-page .run-pipeline p,
.example-page .artifact-grid p {
  line-height: 1.7;
}

.example-page .artifact-grid {
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.example-page .artifact-grid article {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 1.75rem;
}

.example-page .artifact-grid article > code {
  align-self: flex-start;
}

.example-page .artifact-grid h3 {
  font-size: 1.3rem;
}

.example-page .artifact-grid a {
  margin-top: auto;
  padding-top: 1.25rem;
  text-underline-offset: 0.2em;
}

.example-page .stage-reader {
  background: transparent;
  border: 0;
  counter-reset: read-step;
  display: grid;
  gap: 0;
  list-style: none;
  margin-bottom: 3rem;
  max-width: 920px;
  padding: 0;
}

.example-page .stage-reader li {
  border-bottom: 1px solid var(--line);
  counter-increment: read-step;
  line-height: 1.75;
  margin: 0;
  padding: 1.4rem 1rem 1.4rem 4rem;
  position: relative;
}

.example-page .stage-reader li::before {
  color: var(--accent);
  content: counter(read-step, decimal-leading-zero);
  font-size: 0.82rem;
  font-weight: 900;
  left: 1rem;
  letter-spacing: 0.08em;
  position: absolute;
  top: 1.55rem;
}

.example-page .result-panel {
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  gap: 2rem;
  max-width: 1000px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.example-page .result-panel > div:first-child {
  max-width: 690px;
}

.example-page .result-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  margin-bottom: 0.75rem;
}

.example-page .comparison-table {
  border: 1px solid var(--line);
  border-radius: 8px;
}

.example-page .error-table-wrap {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow-x: auto;
}

.example-page .error-table {
  background: var(--surface);
  border-collapse: collapse;
  min-width: 980px;
  table-layout: fixed;
  width: 100%;
}

.example-page .error-table th,
.example-page .error-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.72rem 0.65rem;
  text-align: center;
}

.example-page .error-table tbody tr:last-child > * {
  border-bottom: 0;
}

.example-page .error-table thead th {
  background: #eaf1f3;
  color: var(--ink);
  font-weight: 800;
}

.example-page .error-table th:first-child {
  color: var(--ink);
  font-weight: 750;
  min-width: 170px;
  position: sticky;
  left: 0;
  text-align: left;
  z-index: 1;
}

.example-page .error-table tbody th {
  background: var(--surface);
}

.example-page .error-table .metric-pass {
  background: #e4f5e9;
  color: #176b35;
  font-weight: 750;
}

.example-page .error-table .metric-fail {
  background: #fde8e7;
  color: #a32620;
  font-weight: 750;
}

.example-page .iteration-list {
  display: grid;
  gap: 0.85rem;
  max-width: 1000px;
}

.example-page .iteration-list article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 3rem minmax(0, 1fr);
  padding: 1.35rem;
}

.example-page .iteration-list .iteration-number {
  align-items: center;
  background: #eaf1f3;
  border-radius: 999px;
  color: var(--accent-dark);
  display: flex;
  font-size: 0.78rem;
  font-weight: 900;
  height: 3rem;
  justify-content: center;
  letter-spacing: 0.06em;
  width: 3rem;
}

.example-page .iteration-list h3 {
  font-size: 1.25rem;
  margin: 0.15rem 0 0.7rem;
}

.example-page .iteration-evidence {
  display: none;
}

.example-page .iteration-evidence span {
  color: var(--ink);
  font-size: 0.92rem;
}

.example-page .iteration-evidence strong {
  color: var(--muted);
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.12rem;
  text-transform: uppercase;
}

.example-page .iteration-list p {
  line-height: 1.65;
  margin-top: 0.35rem;
}

.example-page .iteration-list p strong {
  color: var(--ink);
}

.example-page .iteration-list .pass strong {
  color: var(--accent-dark);
}

.example-page .iteration-list .fail strong {
  color: var(--warning);
}

.example-page .iteration-list .iteration-note {
  border-top: 1px solid var(--line);
  margin-top: 0.75rem;
  padding-top: 0.7rem;
}

.example-page .iteration-list .converged-iteration {
  background: var(--accent-soft);
  border-color: #9bd7d1;
}

.example-page .iteration-list .converged-iteration .iteration-number {
  background: var(--accent);
  color: #ffffff;
}

.example-page .error-plot {
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  max-width: 1000px;
}

.example-page .error-plot img {
  aspect-ratio: auto;
  background: #ffffff;
  padding: clamp(0.5rem, 2vw, 1.5rem);
}

.example-page .error-plot figcaption {
  line-height: 1.65;
  padding: 1rem 1.25rem;
  text-align: left;
}

.example-page .comparison-table > div {
  padding: 0.9rem 1rem;
}

.example-page .comparison-table > div:not(.table-head):nth-child(4n + 1) {
  color: var(--ink);
  font-weight: 700;
}

.example-page .callout {
  border-radius: 0 6px 6px 0;
  line-height: 1.7;
}

.example-page #reproduce .command-block,
.example-page #reproduce .section-note {
  max-width: 920px;
}

.example-page #reproduce .command-block {
  border-radius: 10px;
}

.example-page #reproduce pre {
  line-height: 1.75;
  padding: 1.6rem;
}

@media (max-width: 980px) {
  .hero,
  .example-hero,
  .intro-grid,
  .cards,
  .about-grid,
  .flow-map,
  .run-pipeline,
  .artifact-grid {
    grid-template-columns: 1fr;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .example-page .run-pipeline,
  .example-page .artifact-grid {
    grid-template-columns: 1fr;
  }

  .example-page .run-pipeline article:nth-child(odd) {
    border-right: 0;
  }

  .example-page .artifact-grid article {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 0.9rem 5vw;
  }

  .nav-toggle {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    color: #ffffff;
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    padding: 0.45rem 0.6rem;
  }

  .nav-links {
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.8rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: 5rem;
  }

  .example-page .iteration-list article {
    grid-template-columns: 1fr;
  }

  .example-page .iteration-evidence {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 4rem 5vw;
  }

  .layout-table,
  .step {
    grid-template-columns: 1fr;
  }

  .layout-table > div {
    border-bottom: 0;
  }

  .layout-table > div:nth-child(even) {
    border-bottom: 1px solid var(--line);
    padding-top: 0.2rem;
  }

  .gallery {
    grid-template-columns: 1fr;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .example-page .example-hero {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .example-page .example-stats div {
    min-height: 102px;
    padding: 1rem;
  }

  .example-page .run-pipeline article {
    padding: 1.6rem 1rem 1.6rem 4.2rem;
  }

  .example-page .run-pipeline article::before {
    left: 0.85rem;
    top: 1.45rem;
  }

  .example-page .result-panel {
    padding: 1.25rem;
  }
}
