/* =====================================================================
   LOBOTOMIBUSSEN.SE — 2026 brutalist-meets-glass design system
   ===================================================================== */

:root {
  --bg: #0a0a0a;
  --bg-elev: #111111;
  --ink: #f4f1ea;
  --ink-dim: #a39d92;
  --line: rgba(244, 241, 234, 0.12);
  --acid: #d8ff36;          /* signaturgul-grön */
  --hot: #ff3d6e;           /* het magenta */
  --azure: #6ad1ff;         /* kall accent */
  --warn: #ffb000;
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --shadow-brut: 8px 8px 0 0 var(--ink);
  --shadow-brut-acid: 8px 8px 0 0 var(--acid);
  --ease: cubic-bezier(.2, .9, .1, 1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
code, pre { font-family: 'JetBrains Mono', ui-monospace, monospace; }

/* --------- film grain & spotlight ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: .08; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.7'/></svg>");
}
.spotlight {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background: radial-gradient(600px 600px at var(--mx, 50%) var(--my, 30%), rgba(216,255,54,.08), transparent 60%);
  transition: background-position .2s ease;
}

/* --------- topbar --------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: rgba(10,10,10,.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.brand__logo {
  width: 52px; height: 52px; border-radius: 12px; object-fit: cover;
  background: var(--ink); padding: 4px;
  border: 2px solid var(--ink);
  transform: rotate(-3deg);
  transition: transform .35s var(--ease);
}
.brand:hover .brand__logo { transform: rotate(3deg) scale(1.04); }
.brand__text {
  display: flex; flex-direction: column; line-height: .92;
  font-family: 'Bricolage Grotesque', 'Space Grotesk', sans-serif;
  font-weight: 800; letter-spacing: -0.02em;
}
.brand__line { font-size: 18px; }
.brand__line--alt { color: var(--acid); }
.brand__tld { color: var(--ink-dim); font-weight: 400; }

.nav { display: flex; gap: 22px; align-items: center; }
.nav a { text-decoration: none; font-size: 15px; color: var(--ink-dim); transition: color .2s; }
.nav a:hover { color: var(--ink); }
.nav__cta {
  background: var(--acid); color: #000 !important;
  padding: 10px 16px; border-radius: 999px; font-weight: 700;
  border: 2px solid #000; transition: transform .2s var(--ease);
}
.nav__cta:hover { transform: translateY(-2px) rotate(-1deg); }

@media (max-width: 720px) {
  .nav a:not(.nav__cta) { display: none; }
}

/* --------- hero --------- */
.hero {
  position: relative;
  padding: 56px 28px 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 40px;
  align-items: center;
  max-width: 1400px; margin: 0 auto;
}
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
}

.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px; border: 1px solid var(--line);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px;
  color: var(--ink-dim); text-transform: uppercase; letter-spacing: .12em;
  margin: 0 0 24px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 9vw, 148px);
  line-height: .85;
  letter-spacing: -0.04em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__word { display: block; }
.hero__word--accent {
  color: var(--acid);
  font-style: italic;
  transform: translateX(0.6ch);
}
.hero__word--thin {
  font-weight: 300; font-style: italic;
  font-size: 0.42em;
  color: var(--ink-dim);
  letter-spacing: 0; margin: 14px 0 4px;
}
.hero__word--thin em { color: var(--hot); font-style: italic; }
.hero__word--giant {
  font-size: 1.05em;
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  text-shadow: 8px 8px 0 var(--hot);
}

.hero__lede {
  max-width: 52ch; font-size: 19px; color: var(--ink-dim); margin: 0 0 32px;
}

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 16px;
  border: 2px solid var(--ink);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s;
}
.btn--primary { background: var(--acid); color: #000; box-shadow: var(--shadow-brut); }
.btn--primary:hover { transform: translate(-3px, -3px); box-shadow: 11px 11px 0 0 var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: #000; }
.btn--bmac {
  background: #ff813f; color: #000;
  border-color: #ff813f;
  box-shadow: 6px 6px 0 0 rgba(255,129,63,.4);
}
.btn--bmac:hover {
  background: #ff6a1f; color: #fff;
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 0 rgba(255,106,31,.5);
}
.bmac-link { color: #ff813f !important; font-weight: 600; }

/* --------- hero buss --------- */
.hero__bus {
  position: relative;
  margin: 0;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
  isolation: isolate;
}
.hero__bus img {
  width: 100%; height: auto; max-width: 480px;
  border-radius: var(--r-lg);
  border: 3px solid var(--ink);
  background: #000;
  box-shadow: 14px 14px 0 0 var(--acid);
  animation: wobble 7s ease-in-out infinite;
}
@keyframes wobble {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50%     { transform: rotate(2deg)  translateY(-8px); }
}
.hero__bus-glow {
  position: absolute; inset: -10%;
  background: radial-gradient(closest-side, rgba(216,255,54,.35), transparent 70%);
  filter: blur(40px); z-index: -1;
}

/* --------- marquee --------- */
.marquee {
  margin-top: 80px;
  background: var(--acid); color: #000;
  border-block: 3px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1.2deg) scale(1.04);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: clamp(24px, 4vw, 44px); letter-spacing: -0.02em;
}
.marquee__track {
  display: inline-flex; gap: 28px; padding: 14px 0;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
}
.marquee__track span { padding-inline: 6px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --------- feed --------- */
.feed { padding: 80px 28px; max-width: 1400px; margin: 0 auto; }
.feed__header { display: flex; flex-direction: column; align-items: center; text-align: center; margin-bottom: 36px; gap: 8px; }
.feed__header h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0;
}
.feed__sub { color: var(--ink-dim); margin: 0; }
.feed__empty { color: var(--ink-dim); padding: 60px 0; text-align: center; }
.feed__empty a { color: var(--acid); }

.posts {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}

/* Bento – varannan kort blir större och rotation varierar */
.post {
  position: relative;
  background: var(--bg-elev);
  border: 2px solid var(--ink);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.post:hover {
  transform: translate(-4px, -4px) rotate(-.4deg);
  box-shadow: 14px 14px 0 0 var(--acid);
}
.post:nth-child(7n+1):hover { box-shadow: 14px 14px 0 0 var(--hot); }
.post:nth-child(5n+3):hover { box-shadow: 14px 14px 0 0 var(--azure); }

.post__image {
  background:
    linear-gradient(135deg, #050505 0%, #1a1a1a 100%);
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px, 24px 24px;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px;
  min-height: 220px;
  max-height: 520px;
}
.post__image img {
  max-width: 100%;
  max-height: 484px;
  width: auto; height: auto;
  object-fit: contain;
  transition: transform .6s var(--ease);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.post:hover .post__image img { transform: scale(1.03); }

.post__body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; border-bottom-left-radius: calc(var(--r-md) - 2px); border-bottom-right-radius: calc(var(--r-md) - 2px); }
.post__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: 22px; letter-spacing: -0.02em;
  margin: 0; line-height: 1.15;
}
.post__comment { color: var(--ink-dim); margin: 0; font-size: 15px; }
.post__ticket {
  margin: 6px 0 0;
  padding: 14px 16px;
  background: repeating-linear-gradient(
    -8deg,
    #fff8e0 0 22px,
    #fff2c4 22px 24px
  );
  color: #1a1a1a;
  border: 2px dashed #1a1a1a;
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  box-shadow: 4px 4px 0 0 var(--ink);
  position: relative;
}
.post__ticket::before {
  content: "🚌 LOBOTOMIBILJETT · BOARDING PASS";
  display: block;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: 11px;
  color: #1a1a1a;
  border-bottom: 1px dashed #1a1a1a;
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.post__meta {
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-dim);
  text-transform: uppercase; letter-spacing: .08em;
}
.post__meta a { color: var(--acid); text-decoration: none; }
.post__meta a:hover { text-decoration: underline; }
.post__meta-right { display: flex; align-items: center; gap: 14px; }
.post__share-btn {
  background: none; border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-dim); font-family: 'JetBrains Mono', monospace;
  font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.post__share-btn:hover { color: var(--acid); border-color: var(--acid); }
.post__share-btn--copied { color: #0a0a0a !important; background: var(--acid) !important; border-color: var(--acid) !important; }

.post__badge {
  position: absolute; top: -10px; right: 16px;
  background: var(--acid); color: #000;
  padding: 4px 10px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  border: 2px solid #000;
  z-index: 2;
  transform: rotate(3deg);
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.post { overflow: visible; scroll-margin-top: 96px; }
.post--clickable { cursor: pointer; }
.post--clickable .post__image::after {
  content: "📖 Läs";
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 14px;
  background: var(--acid);
  color: #000;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border: 2px solid #000;
  border-radius: 999px;
  z-index: 3;
  opacity: 0.9;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 0 #000;
  pointer-events: none;
}
.post--clickable:hover .post__image::after {
  opacity: 1;
  transform: rotate(0deg) scale(1.08);
}
.post__image { border-top-left-radius: calc(var(--r-md) - 2px); border-top-right-radius: calc(var(--r-md) - 2px); }

/* Dölj hero och marquee när man tittar på en enskild post */
body.is-focused .hero,
body.is-focused .marquee {
  display: none;
}
.post--highlight {
  animation: post-pulse 2.4s ease-out;
  outline: 3px solid var(--hot, #ff2d55);
  outline-offset: 4px;
}
@keyframes post-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 45, 85, .65); }
  60%  { box-shadow: 0 0 0 22px rgba(255, 45, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 45, 85, 0); }
}
.post--focused {
  max-width: 760px;
  margin: 0 auto;
  grid-column: 1 / -1;
  justify-self: center;
  width: 100%;
}
.focus-footer {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 18px auto 0;
  text-align: center;
  opacity: .7;
  font-size: .92rem;
}
.focus-footer__all {
  color: var(--muted, #aaa);
  text-decoration: none;
  border-bottom: 1px dashed currentColor;
  padding-bottom: 1px;
}
.focus-footer__all:hover {
  color: var(--hot, #ff2d55);
}

/* --------- about --------- */
.about {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px;
  padding: 80px 28px;
  max-width: 1400px; margin: 0 auto;
  border-top: 1px solid var(--line);
}
@media (max-width: 800px) { .about { grid-template-columns: 1fr; } }
.about h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  margin: 0 0 18px; letter-spacing: -0.03em;
}
.about p { color: var(--ink-dim); max-width: 60ch; }
.about__col--meta dl {
  display: grid; grid-template-columns: auto 1fr; gap: 10px 18px;
  border-top: 1px solid var(--line); padding-top: 18px;
}
.about__col--meta dt { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: .12em; }
.about__col--meta dd { margin: 0; font-weight: 600; }

/* --------- contact --------- */
.contact { padding: 80px 28px; max-width: 1100px; margin: 0 auto; text-align: center; }
.contact h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(30px, 4vw, 56px);
  margin: 0 0 14px; letter-spacing: -0.03em;
}
.contact > p { color: var(--ink-dim); }
.contact__card {
  margin: 30px auto 18px;
  display: inline-grid; gap: 0;
  background: var(--bg-elev);
  border: 2px solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--shadow-brut-acid);
  overflow: hidden; min-width: min(440px, 100%);
}
.contact__row {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 14px 22px; border-bottom: 1px dashed var(--line);
}
.contact__row:last-child { border-bottom: none; }
.contact__row span { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-dim); text-transform: uppercase; letter-spacing: .12em; }
.contact__row code { font-size: 16px; color: var(--acid); }
.contact__hint { color: var(--ink-dim); font-size: 14px; }
.contact__hint a { color: var(--acid); }

/* --------- social --------- */
.contact__social {
  margin: 36px auto 0;
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.contact__social a {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  background: var(--bg-elev);
  border: 2px solid var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.contact__social a:hover {
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 0 var(--ink);
}
.contact__social--x:hover { background: #000; color: #fff; }
.contact__social--bluesky:hover { background: #1185fe; color: #fff; }
.contact__social--mastodon:hover { background: #6364ff; color: #fff; }

/* --------- API --------- */
.api { padding: 80px 28px; max-width: 1100px; margin: 0 auto; border-top: 1px solid var(--line); }
.api h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  margin: 0 0 14px; letter-spacing: -0.03em;
}
.api p { color: var(--ink-dim); }
.api code { background: rgba(216,255,54,.1); color: var(--acid); padding: 2px 6px; border-radius: 6px; font-size: 14px; }
.api__code {
  background: #000; color: var(--ink);
  border: 2px solid var(--ink); border-radius: var(--r-md);
  padding: 22px; overflow-x: auto;
  font-size: 13px; line-height: 1.6;
  box-shadow: var(--shadow-brut-acid);
}
.api__code code { background: transparent; color: var(--ink); padding: 0; }

/* --------- footer --------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 30px 28px 50px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.foot__row { display: flex; gap: 14px; align-items: center; }
.foot__row img { width: 40px; height: 40px; border-radius: 8px; border: 2px solid var(--ink); }
.foot__row strong { display: block; }
.foot__row span { color: var(--ink-dim); font-size: 13px; }
.foot__row--right { gap: 22px; }
.foot__row--right a { color: var(--ink-dim); text-decoration: none; font-size: 14px; }
.foot__row--right a:hover { color: var(--acid); }
.rss-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-weight: 700; font-size: 12px !important;
  letter-spacing: 0.06em;
  color: var(--warn) !important;
  transition: filter .2s;
}
.rss-link:hover { filter: brightness(1.4); }

/* --------- admin --------- */
.admin {
  max-width: 720px; margin: 60px auto; padding: 0 28px;
}
.admin h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}
.admin h1 em { color: var(--acid); font-style: italic; }
.admin > p { color: var(--ink-dim); margin: 0 0 32px; }

.form {
  display: flex; flex-direction: column; gap: 18px;
  background: var(--bg-elev); padding: 30px;
  border: 2px solid var(--ink); border-radius: var(--r-md);
  box-shadow: var(--shadow-brut-acid);
}
.form label {
  display: flex; flex-direction: column; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--ink-dim);
  text-transform: uppercase; letter-spacing: .12em;
}
.form input, .form textarea {
  background: #000; color: var(--ink);
  border: 2px solid var(--line); border-radius: var(--r-sm);
  padding: 12px 14px;
  font: inherit; font-size: 16px;
  font-family: 'Space Grotesk', sans-serif;
  text-transform: none; letter-spacing: 0;
  transition: border-color .2s;
}
.form input:focus, .form textarea:focus {
  outline: none; border-color: var(--acid);
}
.form textarea { min-height: 120px; resize: vertical; }
.form input[type=file] { padding: 10px; cursor: pointer; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }
.form__submit {
  align-self: start;
  background: var(--acid); color: #000;
  border: 2px solid #000; border-radius: 999px;
  padding: 14px 28px; font-weight: 700; font-size: 16px;
  cursor: pointer; box-shadow: var(--shadow-brut);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.form__submit:hover { transform: translate(-3px,-3px); box-shadow: 11px 11px 0 0 var(--ink); }
.form__submit:disabled { opacity: .5; cursor: wait; }

.toast {
  margin-top: 20px;
  padding: 14px 18px; border-radius: var(--r-sm);
  font-family: 'JetBrains Mono', monospace; font-size: 13px;
  border: 2px solid var(--ink);
}
.toast--ok { background: var(--acid); color: #000; }
.toast--err { background: var(--hot); color: #fff; }

/* skip animations om användaren föredrar */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* --------- artikel-modal --------- */
.article-modal {
  border: none;
  padding: 0;
  max-width: 740px;
  width: 90vw;
  max-height: 85vh;
  border-radius: var(--r-md);
  background: var(--bg-elev);
  color: var(--ink);
  box-shadow: 14px 14px 0 0 var(--acid), 0 0 0 100vmax rgba(0,0,0,.7);
  overflow: visible;
  position: relative;
}
.article-modal::backdrop {
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(4px);
}
.article-modal__content {
  padding: 40px 36px 32px;
  overflow-y: auto;
  max-height: 82vh;
}
.article-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .2s var(--ease), background .2s;
  z-index: 1;
}
.article-modal__close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--hot);
  color: #fff;
}
.article-modal__title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 4vw, 36px);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  padding-right: 32px;
  line-height: 1.15;
}
.article-modal__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
}
.article-modal__body p {
  margin: 0 0 16px;
}
.article-modal__body p:last-child {
  margin-bottom: 0;
}
.article-modal__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.article-modal__footer a {
  color: var(--acid);
  text-decoration: none;
}
.article-modal__footer a:hover {
  text-decoration: underline;
}
