@font-face {
  font-family: "Source Sans 3";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("/fonts/source-sans-3-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Sans 3";
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url("/fonts/source-sans-3-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("/fonts/source-serif-4-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Serif 4";
  font-style: italic;
  font-weight: 200 900;
  font-display: swap;
  src: url("/fonts/source-serif-4-italic-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Source Code Pro";
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url("/fonts/source-code-pro-latin.woff2") format("woff2");
}

:root {
  --ink: #eef8f1;
  --muted: #94a79c;
  --faint: #607168;
  --green: #72ff86;
  --green-strong: #34e85b;
  --green-dark: #123c22;
  --surface: #0b120e;
  --surface-2: #111c16;
  --line: #22332a;
  --shadow: 0 22px 70px rgba(0, 0, 0, .42);
  --radius: 18px;
  --shell: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 3%, rgba(52, 232, 91, .09), transparent 30rem),
    #050806;
  font: 16px/1.72 "Source Sans 3", ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green); text-decoration-thickness: .08em; text-underline-offset: .2em; }
a:hover { color: #b4ffbd; }
img { display: block; max-width: 100%; height: auto; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .7rem 1rem; color: #061009; background: var(--green); border-radius: 8px; }
.skip-link:focus { top: 1rem; }

.site-header { border-bottom: 1px solid var(--line); background: #030504; }
.brand {
  position: relative;
  display: block;
  width: min(calc(100% - 2rem), var(--shell));
  aspect-ratio: 1500 / 284;
  margin: 0 auto;
  overflow: hidden;
  background: #020403;
}
.brand img { width: 100%; height: 100%; object-fit: contain; filter: saturate(.88) contrast(1.06); }
.brand-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(3, 7, 4, .38)); pointer-events: none; }

.site-nav { position: sticky; top: 0; z-index: 50; border-top: 1px solid rgba(114, 255, 134, .1); background: rgba(8, 14, 10, .92); backdrop-filter: blur(16px); }
.nav-inner { width: min(calc(100% - 2rem), var(--shell)); margin: 0 auto; }
.site-nav ul { display: flex; align-items: stretch; gap: .3rem; margin: 0; padding: .45rem .75rem; list-style: none; }
.site-nav a { display: block; padding: .7rem .9rem; color: #c4d2c8; font-size: .82rem; font-weight: 720; letter-spacing: .075em; text-decoration: none; text-transform: uppercase; border-radius: 8px; transition: color .2s, background .2s; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green); background: rgba(114, 255, 134, .08); }
.nav-toggle { display: none; }

.site-shell { width: min(calc(100% - 2rem), var(--shell)); min-height: 58vh; margin: 0 auto; padding: 3.2rem 0 5rem; }
.eyebrow { margin: 0 0 .55rem; color: var(--green); font-size: .76rem; font-weight: 780; letter-spacing: .18em; line-height: 1.4; text-decoration: none; text-transform: uppercase; }

.intro-panel { position: relative; display: grid; grid-template-columns: clamp(88px, 12vw, 128px) minmax(0, 1fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin-bottom: 2rem; padding: clamp(2rem, 5vw, 4.6rem); overflow: hidden; border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px); background: linear-gradient(135deg, rgba(21, 40, 27, .95), rgba(8, 14, 10, .98)); box-shadow: var(--shadow); }
.intro-panel::after { content: ""; position: absolute; right: -9rem; bottom: -11rem; width: 24rem; height: 24rem; border: 1px solid rgba(114, 255, 134, .18); border-radius: 50%; box-shadow: 0 0 0 3.4rem rgba(114, 255, 134, .025), 0 0 0 7rem rgba(114, 255, 134, .018); }
.intro-panel h1 { position: relative; z-index: 1; max-width: 720px; margin: 0; font-size: clamp(3rem, 8vw, 6.8rem); font-weight: 820; letter-spacing: -.065em; line-height: .92; }
.intro-profile-image { position: relative; z-index: 1; width: 100%; border: 1px solid var(--line); border-radius: 24px; background: #000; }
.intro-copy { position: relative; z-index: 1; }
.intro-copy > p:last-child { max-width: 700px; margin: 0; color: #c1cfc5; font-family: "Source Serif 4", ui-serif, Georgia, serif; font-size: clamp(1rem, 1.8vw, 1.25rem); }

.home-layout, .content-layout { display: block; }
.post-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.home-post-card { display: flex; flex-direction: column; min-width: 0; padding: 1.75rem; border: 1px solid var(--line); border-radius: var(--radius); background: linear-gradient(165deg, rgba(17, 28, 22, .96), rgba(8, 13, 10, .96)); transition: border-color .22s, transform .22s, box-shadow .22s; }
.home-post-card:hover { transform: translateY(-3px); border-color: rgba(114, 255, 134, .42); box-shadow: 0 18px 45px rgba(0, 0, 0, .28); }
.home-post-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .4rem 1rem; margin-bottom: 1.3rem; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.home-post-meta time { color: var(--faint); }
.home-post-meta a { text-decoration: none; }
.home-post-category { display: inline-flex; align-items: center; gap: .55rem; }
.home-post-category > span { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 15px rgba(114, 255, 134, .75); }
.home-post-card h2 { margin: 0; font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: -.035em; line-height: 1.12; }
.home-post-card h2 a { color: var(--ink); text-decoration: none; }
.home-post-card h2 a:hover { color: var(--green); }
.home-post-card p { margin: .85rem 0 1.35rem; color: var(--muted); font-family: "Source Serif 4", ui-serif, Georgia, serif; }
.home-post-card .read-link { align-self: flex-start; margin-top: auto; }
.read-link { display: inline-flex; gap: .45rem; align-items: center; font-size: .82rem; font-weight: 750; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; }
.read-link span { transition: transform .2s; }
.read-link:hover span { transform: translateX(.25rem); }

.article, .archive { min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: 0 18px 55px rgba(0, 0, 0, .2); }
.article { background: radial-gradient(circle at 14% 4rem, rgba(52, 232, 91, .055), transparent 30rem), var(--surface); }
.article-header, .archive-header { padding: clamp(1.6rem, 5vw, 3.4rem); border-bottom: 1px solid var(--line); background: linear-gradient(145deg, #111d16, #0b120e 70%); }
.article-header h1, .archive-header h1 { max-width: 820px; margin: 0; font-size: clamp(2.3rem, 6vw, 4.6rem); letter-spacing: -.055em; line-height: 1.02; text-wrap: balance; }
.article-meta, .archive-header > p:last-child { margin: 1.25rem 0 0; color: var(--muted); font-size: .87rem; }
.article-content { padding: clamp(1.6rem, 5vw, 3.5rem); color: #c7d2ca; font-family: "Source Serif 4", ui-serif, Georgia, serif; font-size: 1.075rem; }
.article-content > :first-child { margin-top: 0; }
.article-content > :last-child { margin-bottom: 0; }
.article-content h1, .article-content h2, .article-content h3, .article-content h4 { margin: 2.25em 0 .65em; color: var(--ink); font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif; letter-spacing: -.035em; line-height: 1.15; }
.article-content h1 { font-size: 2.2rem; }
.article-content h2 { font-size: 1.8rem; }
.article-content h3 { font-size: 1.35rem; }
.article-content a { overflow-wrap: anywhere; }
.article-content img { margin: 1.5rem auto; border: 1px solid var(--line); border-radius: 10px; }
.article-content .responsive-image { display: block; max-width: 100%; margin: 1.5rem auto; }
.article-content picture.responsive-image img { width: auto; max-width: 100%; margin: 0 auto; }
.article-content img.impressum-details { margin: 1.5rem auto 1.5rem 0; border: 0; border-radius: 0; }
.article-content figure { margin: 2rem 0; }
.article-content figcaption { color: var(--muted); font-size: .85rem; text-align: center; }
.article-content .single-image-figure .responsive-image { margin: 0 auto .75rem; }
.article-content .image-grid-figure { margin: 2rem 0; }
.article-content .image-grid-figure .image-grid { margin-bottom: .75rem; }
.image-grid { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.image-grid-row { display: flex; gap: 1rem; align-items: stretch; }
.image-grid-row > picture.responsive-image { display: contents; }
.image-grid-row > picture.responsive-image > source { display: none; }
.image-grid-row > img.responsive-image, .image-grid-row > picture.responsive-image > img { flex: var(--image-ratio, 1) 1 0; align-self: stretch; min-width: 0; width: auto; height: auto; max-width: 100%; margin: 0; object-fit: contain; }
.image-grid .responsive-image { margin: 0; }
.image-viewer[hidden] { display: none; }
.image-viewer { position: fixed; inset: 0; z-index: 1000; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; color: #eef8f1; background: rgb(2 5 3 / 94%); backdrop-filter: blur(12px); }
.image-viewer-toolbar { display: flex; justify-content: center; gap: .45rem; padding: max(.65rem, env(safe-area-inset-top)) 4.5rem .65rem; }
.image-viewer button { display: grid; place-items: center; min-width: 2.65rem; min-height: 2.65rem; padding: .45rem .7rem; color: #d8e5dc; border: 1px solid #34483b; border-radius: 10px; background: rgb(12 23 16 / 88%); font: 700 .9rem/1 "Source Sans 3", sans-serif; cursor: pointer; }
.image-viewer button:hover, .image-viewer button:focus-visible { color: #72ff86; border-color: #4c7959; outline: none; background: #14251a; }
.image-viewer-close { position: absolute; top: max(.65rem, env(safe-area-inset-top)); right: max(.65rem, env(safe-area-inset-right)); z-index: 2; font-size: 1.4rem !important; }
.image-viewer-stage { position: relative; min-width: 0; min-height: 0; overflow: auto; overscroll-behavior: contain; touch-action: pan-x pan-y; scrollbar-color: #496451 #070c08; }
.image-viewer-canvas { position: relative; min-width: 100%; min-height: 100%; }
.image-viewer-canvas::after { content: ""; position: absolute; top: 50%; left: 50%; width: 2.2rem; height: 2.2rem; margin: -1.1rem; opacity: 0; border: 3px solid rgb(114 255 134 / 18%); border-top-color: #72ff86; border-radius: 50%; pointer-events: none; transition: opacity .12s; animation: image-viewer-spin .7s linear infinite; }
.image-viewer.is-loading .image-viewer-canvas::after { opacity: 1; }
.image-viewer.is-loading .image-viewer-image { visibility: hidden; }
.image-viewer-image { position: absolute; display: block; max-width: none; height: auto; margin: 0; border: 0; border-radius: 6px; box-shadow: 0 24px 80px rgb(0 0 0 / 55%); user-select: none; -webkit-user-drag: none; }
.image-viewer-nav { position: absolute; top: 50%; z-index: 2; width: 3rem; height: 4.5rem; transform: translateY(-50%); font-size: 1.7rem !important; }
.image-viewer-prev { left: max(.65rem, env(safe-area-inset-left)); }
.image-viewer-next { right: max(.65rem, env(safe-area-inset-right)); }
.image-viewer-footer { min-height: 3.1rem; padding: .65rem 4rem max(.8rem, env(safe-area-inset-bottom)); color: #aebfb3; text-align: center; }
.image-viewer-caption { margin-right: .75rem; }
.image-viewer-count { color: #718579; font-variant-numeric: tabular-nums; white-space: nowrap; }
.image-viewer.is-single .image-viewer-nav, .image-viewer.is-single .image-viewer-count { display: none; }
body.has-image-viewer { overflow: hidden; }
@keyframes image-viewer-spin { to { transform: rotate(360deg); } }
.article-content blockquote { margin: 1.8rem 0; padding: .35rem 0 .35rem 1.25rem; color: #b8c8bd; border-left: 3px solid var(--green-strong); }
.article-content pre { max-width: 100%; padding: 1.2rem; overflow: auto; border: 1px solid var(--line); border-radius: 10px; background: #202020; font-size: .95rem; line-height: 1.5; tab-size: 4; }
.article-content code { padding: .12em .32em; border-radius: 4px; background: #101a14; font-family: "Source Code Pro", ui-monospace, monospace; font-size: .88em; }
.article-content :not(pre) > code { color: #dce6df; }
.article-content pre code { padding: 0; background: none; font-size: inherit; }
.article-content .highlight { margin: 1.8rem 0; overflow: hidden; border: 1px solid var(--line); border-radius: 10px; background: #202020; box-shadow: inset 0 1px 0 rgb(255 255 255 / 3%); }
.article-content .highlight pre { width: 100%; margin: 0; padding: 1.25rem 1.35rem; overflow-x: auto; overflow-y: hidden; border: 0; border-radius: 0; background: transparent; scrollbar-color: #606060 #202020; white-space: pre; }
.chroma { color: #c7d2ca; background: #202020; }
.chroma ::selection { color: #000; background: #cce8ff; }
.chroma .err, .chroma .gr { color: #ff0000; }
.chroma .hl { display: block; background: #1a364d; }
.chroma .ln, .chroma .lnt { display: inline-block; min-width: 3.2ch; margin-right: .8rem; padding-right: .65rem; color: #808080; text-align: right; border-right: 3px solid #808080; user-select: none; -webkit-user-select: none; }
.chroma .k, .chroma .kn, .chroma .kp, .chroma .kr, .chroma .ow { color: #00aaff; }
.chroma .kd, .chroma .kt { color: #ff7f00; }
.chroma .kc, .chroma .no, .chroma .m, .chroma .mb, .chroma .mf, .chroma .mh, .chroma .mi, .chroma .il, .chroma .mo { color: #cd3333; font-weight: 700; }
.chroma .ne, .chroma .nc, .chroma .nn, .chroma .nd { color: #008800; }
.chroma .nt, .chroma .na, .chroma .ni { color: #58be58; }
.chroma .nf, .chroma .fm { color: #c7d2ca; }
.chroma .nv, .chroma .vc, .chroma .vg, .chroma .vi, .chroma .vm { color: #c7d2ca; }
.chroma .s, .chroma .sa, .chroma .sb, .chroma .sc, .chroma .dl, .chroma .sd, .chroma .s1, .chroma .s2, .chroma .se, .chroma .sh, .chroma .si, .chroma .sr, .chroma .ss, .chroma .sx { color: #0088ff; }
.chroma .o, .chroma .p { color: #c7d2ca; }
.chroma .c, .chroma .c1, .chroma .ch, .chroma .cm, .chroma .cs { color: #878a85; }
.chroma .cp, .chroma .cpf { color: #00aaff; }
.chroma .gd { color: #ff0000; }
.chroma .gi { color: #00aa00; }
.chroma .gl { color: #cd3333; }
.chroma .gh, .chroma .gu { color: #0088ff; font-weight: 700; }
.chroma .go { color: #008800; background: rgb(0 0 0 / 6%); font-style: italic; }
.chroma .ge { font-style: italic; }
.chroma .gs { font-weight: 700; }
.article-content table { display: block; width: max-content; max-width: 100%; margin: 1.6rem 0; overflow-x: auto; border-radius: 8px; border-collapse: collapse; font-family: "Source Sans 3", ui-sans-serif, system-ui, sans-serif; font-size: .88rem; }
.article-content th, .article-content td { padding: .65rem .8rem; text-align: left; border: 1px solid var(--line); }
.article-content th { color: var(--ink); background: #101a14; }
.article-content iframe, .article-content video, .article-content embed { max-width: 100%; }
.youtube-embed { width: 100%; margin: 2rem 0; overflow: hidden; aspect-ratio: 16 / 9; border: 1px solid var(--line); border-radius: 10px; background: #000; }
.youtube-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.article-content details { margin: 1.5rem 0; padding: 1rem 1.15rem; border: 1px solid var(--line); border-radius: 10px; background: #0e1712; }
.tag-list { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0 clamp(1.6rem, 5vw, 3.5rem) 2.5rem; }
.tag-list a { padding: .4rem .65rem; color: var(--muted); font-size: .75rem; text-decoration: none; border: 1px solid var(--line); border-radius: 999px; }
.tag-list a:hover { color: var(--green); border-color: var(--green-dark); }

.archive-description { color: var(--muted); }
.post-row { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; padding: 2rem clamp(1.4rem, 4vw, 2.8rem); }
.post-row + .post-row { border-top: 1px solid var(--line); }
.post-row time { color: var(--green); font-size: 1.2rem; font-weight: 740; }
.post-row time span { display: block; color: var(--faint); font-size: .72rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }
.post-row h2 { margin: 0; font-size: clamp(1.35rem, 3vw, 2rem); letter-spacing: -.035em; line-height: 1.15; }
.post-row h2 a { color: var(--ink); text-decoration: none; }
.post-row h2 a:hover { color: var(--green); }
.post-row p { margin: .65rem 0; color: var(--muted); }
.pagination { display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); gap: 1rem; align-items: center; padding: 1.25rem 2rem; color: var(--faint); background: transparent; font-size: .82rem; }
.pagination a { font-weight: 700; text-decoration: none; }
.pagination-newer { justify-self: start; }
.pagination-status { grid-column: 2; text-align: center; }
.pagination-older { justify-self: end; }
.home-posts > .pagination { margin-top: 1.25rem; padding-block: 1.5rem; }
.taxonomy-index { max-width: 900px; margin: 0 auto; }
.term-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); }
.term-grid a { display: flex; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; color: var(--ink); background: var(--surface); text-decoration: none; }
.term-grid a:hover { color: var(--green); background: var(--surface-2); }
.term-grid span { color: var(--faint); font-size: .8rem; }

.not-found { position: relative; max-width: 800px; margin: 2rem auto; padding: clamp(3rem, 8vw, 6rem); overflow: hidden; text-align: left; border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px); background: linear-gradient(135deg, rgba(21, 40, 27, .95), rgba(8, 14, 10, .98)); box-shadow: var(--shadow); }
.not-found::after { content: ""; position: absolute; right: -9rem; bottom: -11rem; width: 24rem; height: 24rem; border: 1px solid rgba(114, 255, 134, .18); border-radius: 50%; box-shadow: 0 0 0 3.4rem rgba(114, 255, 134, .025), 0 0 0 7rem rgba(114, 255, 134, .018); }
.not-found h1 { position: relative; z-index: 1; margin: 0; font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -.045em; line-height: 1.05; }
.not-found .read-link { position: relative; z-index: 1; margin-top: 1.75rem; }

.site-footer { border-top: 1px solid var(--line); background: #030504; }
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; align-items: center; width: min(calc(100% - 2rem), var(--shell)); margin: 0 auto; padding: 2rem 1.65rem; color: var(--faint); font-size: .78rem; }
.footer-links { display: grid; gap: .35rem; }
.footer-inner nav { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-inner a { color: var(--muted); text-decoration: none; }
.footer-inner a:hover { color: var(--green); }
@media (max-width: 900px) {
  .site-nav ul { padding-inline: .75rem; overflow-x: auto; }
  .site-nav a { white-space: nowrap; }
}

@media (max-width: 620px) {
  .site-shell { width: min(calc(100% - 1.1rem), var(--shell)); padding-top: 1.3rem; }
  .brand { width: min(calc(100% - 1.1rem), var(--shell)); }
  .nav-inner { position: relative; width: min(calc(100% - 1.1rem), var(--shell)); }
  .nav-toggle { display: inline-flex; gap: .7rem; align-items: center; margin: .5rem .75rem; padding: .65rem .9rem; color: #dce9df; border: 1px solid #2a4032; border-radius: 10px; background: linear-gradient(145deg, #15241a, #0d1711); box-shadow: 0 8px 24px rgba(0, 0, 0, .2); font: inherit; font-size: .78rem; font-weight: 740; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: color .2s, border-color .2s, background .2s; }
  .nav-toggle:hover, .nav-toggle[aria-expanded="true"] { color: var(--green); border-color: rgba(114, 255, 134, .42); background: #14251a; }
  .nav-toggle-icon { position: relative; width: 17px; height: 13px; }
  .nav-toggle-icon span { position: absolute; left: 0; width: 100%; height: 2px; border-radius: 2px; background: currentColor; transition: top .2s, transform .2s, opacity .2s; }
  .nav-toggle-icon span:nth-child(1) { top: 0; }
  .nav-toggle-icon span:nth-child(2) { top: 5.5px; }
  .nav-toggle-icon span:nth-child(3) { top: 11px; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) { top: 5.5px; transform: rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) { top: 5.5px; transform: rotate(-45deg); }
  .site-nav ul { display: none; position: absolute; top: calc(100% + .4rem); left: .5rem; right: .5rem; flex-direction: column; gap: .15rem; padding: .55rem; overflow: visible; border: 1px solid #293d30; border-radius: 14px; background: linear-gradient(145deg, rgba(17, 30, 22, .99), rgba(7, 13, 9, .99)); box-shadow: 0 20px 55px rgba(0, 0, 0, .48); }
  .site-nav ul.is-open { display: flex; }
  .site-nav ul a { padding: .8rem 1rem; border-radius: 9px; }
  .post-grid { grid-template-columns: 1fr; }
  .intro-panel { grid-template-columns: 72px minmax(0, 1fr); gap: 1rem; padding: 1.4rem; }
  .intro-profile-image { border-radius: 15px; }
  .post-row { grid-template-columns: 1fr; gap: .6rem; }
  .post-row time span { display: inline; margin-left: .45rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; width: min(calc(100% - 1.1rem), var(--shell)); padding-inline: 1.65rem; }
}

@media (max-width: 620px) {
  .image-viewer-toolbar { justify-content: flex-start; padding-right: 4.2rem; }
  .image-viewer-nav { top: auto; bottom: calc(3.7rem + env(safe-area-inset-bottom)); width: 3.2rem; height: 3.2rem; transform: none; }
  .image-viewer-footer { padding-right: 4.5rem; padding-left: 4.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
