/* =====================================================
   863.no — Terminal / Vitals Monitor
   ===================================================== */

:root {
    --accent: #7fffd4;
    --warn: #ffd166;
    --bg: #08121a;
    --fg: #e8f7f0;
    --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
    --display: 'Space Grotesk', system-ui, -apple-system, Segoe UI, sans-serif;
    --scanlines: 0.18;
    --vignette: 0.45;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--fg);
    font-family: var(--display);
}

body {
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

::selection {
    background: rgba(127, 255, 212, 0.25);
    color: #fff;
}

a {
    color: var(--accent);
}

@keyframes blink {
    50% { opacity: 0; }
}

@keyframes fade-in {
    from { opacity: 0; transform: translateY(4px); }
    to { opacity: 1; transform: translateY(0); }
}

.cursor {
    display: inline-block;
    width: 0.55em;
    height: 1em;
    background: var(--accent);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 1.05s steps(1) infinite;
}

.dim {
    opacity: 0.55;
}

.accent {
    color: var(--accent);
    text-shadow: 0 0 18px rgba(127, 255, 212, 0.5);
}

/* =====================================================
   Backdrop — orbs, helix, nodes, wash
   ===================================================== */

.backdrop,
.bggrid {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.backdrop__wash {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 20%, rgba(127, 255, 212, 0.0625), transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 70%, rgba(45, 108, 255, 0.078), transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(127, 255, 212, 0.04), transparent 70%);
}

.backdrop__orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

@keyframes orb-a {
    0%, 100% { transform: translate(-8vw, -4vh) scale(1); }
    50%      { transform: translate(6vw, 8vh) scale(1.15); }
}

@keyframes orb-b {
    0%, 100% { transform: translate(10vw, 6vh) scale(1.1); }
    50%      { transform: translate(-6vw, -10vh) scale(0.9); }
}

@keyframes orb-c {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-12vw, 4vh) scale(1.2); }
}

.orb {
    position: absolute;
    border-radius: 50%;
}

.orb--a {
    top: 10%;
    left: 10%;
    width: 44vw;
    height: 44vw;
    background: radial-gradient(circle, rgba(127, 255, 212, 0.133) 0%, rgba(127, 255, 212, 0.031) 35%, transparent 70%);
    filter: blur(60px);
    animation: orb-a 22s ease-in-out infinite;
}

.orb--b {
    top: 45%;
    right: 5%;
    width: 38vw;
    height: 38vw;
    background: radial-gradient(circle, rgba(45, 108, 255, 0.125) 0%, rgba(45, 108, 255, 0.031) 40%, transparent 70%);
    filter: blur(80px);
    animation: orb-b 28s ease-in-out infinite;
}

.orb--c {
    bottom: 5%;
    left: 30%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(127, 255, 212, 0.094) 0%, transparent 60%);
    filter: blur(100px);
    animation: orb-c 36s ease-in-out infinite;
}

.helix {
    position: absolute;
    top: -60px;
    right: -110px;
    opacity: 0.09;
    filter: blur(3px) drop-shadow(0 0 18px var(--accent));
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%);
            mask-image: linear-gradient(to bottom, black, transparent 92%);
}

@keyframes float-dot {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50%      { transform: translateY(-20px); opacity: 0.7; }
}

.nodes {
    position: absolute;
    bottom: -80px;
    left: -80px;
    opacity: 0.14;
    filter: blur(0.5px) drop-shadow(0 0 8px var(--accent));
}

.nodes__points circle {
    animation: float-dot 5s ease-in-out infinite;
}

/* =====================================================
   Background grid
   ===================================================== */

.bggrid {
    background-image:
        linear-gradient(rgba(127, 255, 212, 0.024) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127, 255, 212, 0.024) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
            mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* =====================================================
   Top bar
   ===================================================== */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    background: linear-gradient(to bottom, rgba(8, 18, 26, 0.95), rgba(8, 18, 26, 0.7) 70%, transparent);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(127, 255, 212, 0.08);
}

.topbar__meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.topbar__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
}

.topbar__brand {
    font-weight: 700;
    letter-spacing: 0.1em;
}

.topbar__sep {
    opacity: 0.4;
}

.topbar__subname {
    opacity: 0.55;
}

.topbar__nav {
    display: flex;
    gap: 24px;
    opacity: 0.7;
}

.topbar__nav a {
    color: var(--accent);
    text-decoration: none;
}

.topbar__nav a:hover {
    text-shadow: 0 0 10px var(--accent);
}

.topbar__status {
    display: flex;
    gap: 12px;
    opacity: 0.5;
}

/* =====================================================
   Hero
   ===================================================== */

.hero {
    min-height: 100vh;
    padding: 100px 32px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero__inner {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

.hero__meta {
    display: flex;
    gap: 32px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--accent);
    opacity: 0.55;
    margin-bottom: 24px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    flex-wrap: wrap;
}

.hero__meta-live {
    opacity: 1;
}

.hero__title {
    font-family: var(--display);
    font-size: clamp(48px, 9vw, 120px);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin: 0;
    color: #e8f7f0;
    font-weight: 500;
    text-shadow: 0 0 40px rgba(127, 255, 212, 0.145);
}

.hero__title-italic {
    font-style: italic;
    font-weight: 300;
    opacity: 0.85;
    letter-spacing: -0.2px;
}

.hero__title-accent {
    color: var(--accent);
    text-shadow: 0 0 22px var(--accent), 0 0 6px var(--accent);
}

.hero__sub {
    margin: 28px 0 0;
    max-width: 560px;
    font-size: 16px;
    color: var(--fg);
    opacity: 0.7;
    line-height: 1.55;
    font-family: var(--display);
}

/* monitor panel */
.monitor {
    margin-top: 56px;
    border: 1px solid rgba(127, 255, 212, 0.19);
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(127, 255, 212, 0.04), rgba(127, 255, 212, 0.01));
    padding: 18px;
    position: relative;
    box-shadow: inset 0 0 80px rgba(127, 255, 212, 0.06), 0 0 60px rgba(127, 255, 212, 0.05);
}

.monitor__corner {
    position: absolute;
    width: 14px;
    height: 14px;
}

.monitor__corner--tl { top: -1px; left: -1px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.monitor__corner--tr { top: -1px; right: -1px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.monitor__corner--bl { bottom: -1px; left: -1px; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.monitor__corner--br { bottom: -1px; right: -1px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }

.vitals {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.vital {
    border: 1px solid rgba(127, 255, 212, 0.25);
    padding: 10px 14px;
    background: rgba(127, 255, 212, 0.025);
    min-width: 110px;
    font-family: var(--mono);
    border-radius: 2px;
    position: relative;
}

.vital--warn {
    border-color: rgba(255, 209, 102, 0.25);
}

.vital__label {
    font-size: 9px;
    color: var(--accent);
    opacity: 0.7;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vital--warn .vital__label,
.vital--warn .vital__value,
.vital--warn .vital__unit,
.vital--warn .vital__sub {
    color: var(--warn);
}

.vital__row {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.vital__value {
    font-size: 26px;
    color: var(--accent);
    font-weight: 600;
    text-shadow: 0 0 12px rgba(127, 255, 212, 0.5), 0 0 4px var(--accent);
}

.vital--warn .vital__value {
    text-shadow: 0 0 12px rgba(255, 209, 102, 0.5), 0 0 4px var(--warn);
}

.vital__unit {
    font-size: 10px;
    color: var(--accent);
    opacity: 0.6;
}

.vital__sub {
    font-size: 9px;
    color: var(--accent);
    opacity: 0.55;
}

.ekg {
    position: relative;
    width: 100%;
    height: 150px;
}

.ekg__svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.ekg__label-l,
.ekg__label-r {
    position: absolute;
    top: 6px;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--accent);
    opacity: 0.6;
    z-index: 2;
}

.ekg__label-l { left: 8px; letter-spacing: 0.1em; }
.ekg__label-r { right: 8px; }

.monitor__footer {
    display: flex;
    justify-content: space-between;
    font-family: var(--mono);
    font-size: 9px;
    color: var(--accent);
    opacity: 0.5;
    margin-top: 8px;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
    gap: 6px;
}

.hero__scroll {
    margin-top: 56px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--accent);
    opacity: 0.55;
    letter-spacing: 0.2em;
}

.hero__scroll-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--accent), transparent);
}

/* =====================================================
   Sections (Prosjekter, Om)
   ===================================================== */

.section {
    padding: 120px 0;
    border-top: 1px solid rgba(127, 255, 212, 0.12);
    position: relative;
    z-index: 1;
}

.section__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 32px;
}

.section__tag {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    opacity: 0.75;
    margin-bottom: 32px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section__tag-num {
    opacity: 0.5;
}

.section__tag-bar {
    width: 32px;
    height: 1px;
    background: var(--accent);
    opacity: 0.4;
}

/* projects */

.projects__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 56px;
}

.projects__title {
    font-family: var(--display);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 500;
    margin: 0;
    color: var(--fg);
    letter-spacing: -0.03em;
    line-height: 1;
}

.projects__ls {
    font-family: var(--mono);
    font-size: 12px;
    color: var(--accent);
    opacity: 0.7;
    line-height: 1.7;
}

.projects__ls > div:first-child {
    margin-bottom: 4px;
}

.projects__list {
    border-bottom: 1px solid rgba(127, 255, 212, 0.125);
}

.project {
    border-top: 1px solid rgba(127, 255, 212, 0.125);
    padding: 28px 0;
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 24px;
    align-items: start;
    cursor: pointer;
    transition: background 0.3s;
    background: transparent;
    position: relative;
    color: inherit;
    text-decoration: none;
}

.project:hover {
    background: rgba(127, 255, 212, 0.03);
}

.project__idx {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    opacity: 0.55;
    padding-top: 8px;
}

.project__head {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.project__code {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--accent);
    opacity: 0.6;
    padding: 2px 6px;
    border: 1px solid rgba(127, 255, 212, 0.25);
    letter-spacing: 0.1em;
}

.project__name {
    font-family: var(--display);
    font-size: 38px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--fg);
    transition: text-shadow 0.3s;
}

.project:hover .project__name {
    text-shadow: 0 0 16px rgba(127, 255, 212, 0.25);
}

.project__desc {
    font-size: 14px;
    color: var(--fg);
    opacity: 0.7;
    max-width: 540px;
    line-height: 1.55;
    margin: 0;
}

.project__tags {
    display: flex;
    gap: 8px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.project__tags span {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--accent);
    opacity: 0.7;
    padding: 3px 8px;
    border: 1px solid rgba(127, 255, 212, 0.145);
    border-radius: 2px;
}

.project__status-col {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    padding-top: 4px;
}

.project__status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.1em;
}

.project__status--live { color: var(--accent); }
.project__status--beta { color: var(--warn); }
.project__status--dev  { color: #ff6b6b; }

.project__led {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 8px currentColor;
}

.project__open {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}

.project:hover .project__open {
    opacity: 1;
    transform: translateX(4px);
}

/* =====================================================
   Om 863
   ===================================================== */

.om {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
}

.om__title {
    font-family: var(--display);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 500;
    margin: 0 0 40px;
    color: var(--fg);
    letter-spacing: -0.03em;
    line-height: 1;
}

.om__title-accent {
    color: var(--accent);
    font-family: var(--mono);
    font-weight: 500;
}

.om__cmd {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 16px;
}

.om__body {
    font-family: var(--display);
    font-size: 18px;
    line-height: 1.6;
    color: var(--fg);
    opacity: 0.85;
    border-left: 2px solid var(--accent);
    padding-left: 22px;
    max-width: 580px;
}

.om__body p {
    margin: 0 0 20px;
}

.om__body p:last-child {
    margin: 0;
    opacity: 0.7;
}

.om__meta {
    margin-top: 36px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    opacity: 0.55;
    line-height: 1.8;
}

.om__meta span.dim {
    opacity: 0.7;
}

/* pager */

.pager-sticky {
    position: sticky;
    top: 100px;
}

.pager__caption {
    font-family: var(--mono);
    font-size: 10px;
    color: var(--accent);
    opacity: 0.55;
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.pager {
    background: linear-gradient(180deg, #16242e, #0d1820);
    border: 1px solid rgba(127, 255, 212, 0.19);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 0 60px rgba(127, 255, 212, 0.0625), inset 0 1px 0 rgba(127, 255, 212, 0.125);
    max-width: 320px;
}

.pager__top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-family: var(--mono);
    font-size: 8px;
    color: var(--accent);
    opacity: 0.5;
}

.pager__lcd {
    background: #0a1410;
    border: 1px solid rgba(127, 255, 212, 0.25);
    border-radius: 4px;
    padding: 16px 14px;
    min-height: 140px;
    position: relative;
    box-shadow: inset 0 0 40px rgba(127, 255, 212, 0.082);
    overflow: hidden;
}

.pager__scanlines {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(to bottom, transparent 0, transparent 2px, rgba(127, 255, 212, 0.08) 2px, rgba(127, 255, 212, 0.08) 3px);
    pointer-events: none;
}

.pager__lcd-top {
    font-family: var(--mono);
    font-size: 9px;
    color: var(--accent);
    opacity: 0.6;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.pager__msg {
    font-family: var(--mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 0 0 10px var(--accent), 0 0 4px var(--accent);
    line-height: 1.35;
    animation: fade-in 0.4s;
}

.pager__lcd-bottom {
    position: absolute;
    bottom: 10px;
    left: 14px;
    font-family: var(--mono);
    font-size: 8px;
    color: var(--accent);
    opacity: 0.5;
}

.pager__buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.pager__buttons span {
    background: #0a1410;
    border: 1px solid rgba(127, 255, 212, 0.19);
    color: var(--accent);
    opacity: 0.7;
    font-family: var(--mono);
    font-size: 9px;
    padding: 4px 8px;
    border-radius: 3px;
}

/* =====================================================
   Footer
   ===================================================== */

.footer {
    border-top: 1px solid rgba(127, 255, 212, 0.125);
    padding: 40px 32px 32px;
    font-family: var(--mono);
    font-size: 11px;
    color: var(--accent);
    position: relative;
    z-index: 1;
}

.footer__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 32px;
}

.footer__grid > div {
    opacity: 0.85;
}

.footer__label {
    margin-bottom: 6px;
    opacity: 0.6;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 10px;
}

.footer__val {
    opacity: 0.85;
}

.footer__mail {
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px dashed rgba(127, 255, 212, 0.3);
    padding-bottom: 1px;
}

.footer__cookie {
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer__led {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}

.footer__bottom {
    max-width: 1100px;
    margin: 32px auto 0;
    padding-top: 16px;
    border-top: 1px dashed rgba(127, 255, 212, 0.125);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    opacity: 0.5;
    font-size: 10px;
}

/* =====================================================
   CRT overlay
   ===================================================== */

@keyframes crt-flicker {
    0%, 100% { opacity: 1; }
    45% { opacity: 1; }
    46% { opacity: 0.92; }
    47% { opacity: 1; }
    82% { opacity: 1; }
    83% { opacity: 0.85; }
    84% { opacity: 1; }
}

@keyframes scanline-drift {
    0% { transform: translateY(0); }
    100% { transform: translateY(4px); }
}

@keyframes scan-sweep {
    0%   { transform: translateY(-30vh); opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.6; }
    100% { transform: translateY(130vh); opacity: 0; }
}

.crt {
    position: fixed;
    pointer-events: none;
    inset: 0;
}

.crt--scanlines {
    z-index: 9000;
    background-image: repeating-linear-gradient(to bottom,
        rgba(0, 0, 0, var(--scanlines)) 0px,
        rgba(0, 0, 0, var(--scanlines)) 1px,
        transparent 1px,
        transparent 3px);
    mix-blend-mode: multiply;
    animation: scanline-drift 0.2s steps(2) infinite;
}

.crt--rgb {
    z-index: 9001;
    background-image: repeating-linear-gradient(to right,
        rgba(255, 0, 0, 0.03) 0px,
        rgba(0, 255, 0, 0.03) 1px,
        rgba(0, 0, 255, 0.03) 2px,
        transparent 2px,
        transparent 3px);
    mix-blend-mode: screen;
}

.crt--sweep {
    left: 0;
    right: 0;
    height: 30vh;
    bottom: auto;
    inset: auto 0 auto 0;
    z-index: 9002;
    background: linear-gradient(to bottom, transparent 0%, rgba(127, 255, 212, 0.04) 50%, transparent 100%);
    animation: scan-sweep 8s linear infinite;
}

.crt--vignette {
    z-index: 9003;
    background: radial-gradient(ellipse at center, transparent 50%, rgba(0, 0, 0, var(--vignette)) 100%);
    animation: crt-flicker 6s infinite;
}

/* =====================================================
   Mobile
   ===================================================== */

@media (max-width: 760px) {
    .topbar { padding: 12px 16px; gap: 10px; }
    .topbar__meta { gap: 6px; font-size: 10px; }
    .topbar__subname,
    .topbar__sep { display: none; }
    .topbar__nav { gap: 14px; font-size: 10px; }
    .topbar__status { display: none; }

    .hero { padding: 90px 18px 40px; }
    .hero__meta { gap: 10px; font-size: 9px; margin-bottom: 20px; }
    .hero__title {
        font-size: clamp(26px, 9vw, 56px);
        letter-spacing: -0.04em;
        overflow-wrap: anywhere;
    }
    .hero__sub { font-size: 14px; margin-top: 22px; }

    .monitor { padding: 12px; margin-top: 36px; }
    .vital { max-width: 110px; min-width: 60px; flex: 1 ; padding: 6px 8px; }
    .vital__label { font-size: 8px; letter-spacing: 0.1em; }
    .vital__value { font-size: 15px; }
    .vital__unit { font-size: 9px; }
    .vital__sub { font-size: 8px; }

    .section { padding: 72px 0; }
    .section__inner { padding: 0 18px; }
    .section__tag { font-size: 10px; margin-bottom: 22px; }

    .projects__header { grid-template-columns: 1fr; gap: 18px; margin-bottom: 36px; }
    .projects__title { font-size: clamp(34px, 9vw, 56px); }

    .project { grid-template-columns: 32px 1fr; gap: 12px; padding: 22px 0; }
    .project__name { font-size: 26px; }
    .project__desc { font-size: 13px; }
    .project__status-col {
        grid-column: 1 / -1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-top: 8px;
    }

    .om { grid-template-columns: 1fr; gap: 36px; }
    .om__title { font-size: clamp(34px, 9vw, 56px); }
    .om__body { font-size: 15px; padding-left: 16px; }
    .pager-sticky { position: relative; top: 0; }
    .pager { max-width: 100%; }

    .footer__grid { grid-template-columns: 1fr; gap: 20px; }
}
