/* Global design tokens */
:focus-visible { outline: 2px solid var(--fg); outline-offset: 3px; border-radius: 2px; }
.skip-link { position: absolute; top: -100%; left: 0; padding: 8px 16px; background: var(--bg); color: var(--fg); font-weight: 700; z-index: 9999; }
.skip-link:focus { top: 0; }
:root{
  --ease: cubic-bezier(0.16,1,0.3,1);
  --font-sans: 'Sora', system-ui, Arial, sans-serif;
  --font-serif: 'Libre Baskerville', serif;
  --font-mono: 'DM Mono', monospace;
  --max-width: 1200px;
  --nav-space: 140px;
}

/* Theme variables (page-level modifiers) */
.theme-dark{ --bg:#0a0908; --fg:#f0ece4; --accent:#f0ece4; }
.theme-product{ --bg:#ababab; --fg:#0f172a; }

/* Product page (arbeitgebercheck) styles scoped to .theme-product */
.theme-product{
  --ink: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --rule: #e2e8f0;
  --bg2: #f8fafc;
  --percent: 10%;
}

.theme-product body { background: var(--bg); color: var(--text); }
#cur{ background: var(--accent); }

/* Hero */
.theme-product #hero{ min-height:80vh; padding:160px 8vw 100px; position:relative; overflow:hidden; }
.theme-product .hero-shape{ position:absolute; top:-120px; right:-80px; width:520px;height:520px;border-radius:50%; background:color-mix(in srgb, var(--accent) var(--percent), var(--circle-mix, #fff)); z-index:-1 }
.theme-product .hero-content{ position:relative; z-index:1 }
.theme-product .hero-kicker{ font-family:var(--font-mono); font-size:10px; letter-spacing:.28em; text-transform:uppercase; color:var(--accent); margin-bottom:28px; display:flex; gap:14px }
.theme-product .hero-headline{ font-family:var(--font-serif); font-weight:700; font-size:clamp(42px,6.5vw,88px); line-height:.93; color:var(--ink); margin-bottom:36px; max-width:18ch }
.theme-product .hero-deck{ font-family:var(--font-serif); font-style:italic; font-size:clamp(17px,1.9vw,22px); color:var(--muted); max-width:500px; line-height:1.65; margin-bottom:52px }
.theme-product .hero-actions{ display:flex; gap:12px; flex-wrap:wrap }
.theme-product .btn-primary{ background:var(--accent); color:#fff; padding:14px 30px; font-weight:600; text-decoration:none; border:1.5px solid var(--accent); border-radius:3px }
.theme-product .btn-primary:hover{ background:var(--accent); transform:translateY(-2px); box-shadow:0 8px 24px rgba(0,0,0,.15); opacity:0.85 }
.theme-product .btn-ghost{ background:transparent; color:var(--ink); padding:14px 30px; border:1.5px solid var(--rule); border-radius:3px }
.theme-product .btn-ghost:hover{ border-color:var(--accent); color:var(--accent) }
.theme-product .hero-badge{ position:absolute; right:8vw; border:1.5px solid color-mix(in srgb, var(--accent) 30%, #fff); border-left:3px solid var(--accent); padding:16px 22px; background:color-mix(in srgb, var(--accent) 10%, #fff); max-width:272px }
.theme-product .badge-label{ font-family:var(--font-mono); font-size:9px; letter-spacing:.24em; text-transform:uppercase; color:var(--accent); margin-bottom:8px }
.theme-product .badge-text{ font-family:var(--font-serif); font-style:italic; font-size:13px; color:var(--text) }

/* Sections */
.theme-product .section { padding:100px 8vw }
.theme-product .section.ruled { border-top: 1px solid var(--rule); }
.theme-product .section.tinted { background: color-mix(in srgb, var(--bg) 85%, #000); }
.theme-product .sec-kicker{ font-family:var(--font-mono); font-size:10px; letter-spacing:.26em; text-transform:uppercase; color:var(--accent); margin-bottom:20px }
.theme-product .sec-headline{ font-family:var(--font-serif); font-weight:700; font-size:clamp(34px,4.5vw,60px); color:var(--ink); margin-bottom:48px }

.theme-product .problem-layout{ display:grid; grid-template-columns:1fr 1fr; gap:80px }
.theme-product .problem-statement{ font-family:var(--font-serif); font-size:clamp(19px,2vw,25px); line-height:1.6; color:var(--ink) }
.theme-product .body-text{ font-size:15px; color:var(--muted); line-height:1.85 }

.theme-product .how-steps{ display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--rule) }
.theme-product .how-step{ padding:48px 40px 48px 0; border-right:1px solid var(--rule) }
.theme-product .how-step:last-child { border-right:none; padding-right:0; }
.theme-product .how-step:not(:first-child) { padding-left:40px; }
.theme-product .step-num {
  font-family: var(--font-serif);
  font-size: 48px; font-weight:700; color:color-mix(in srgb, var(--accent) 50%, #fff); letter-spacing:-2px; line-height:1; margin-bottom:16px;
}
.theme-product .step-title { font-weight:700; font-size:16px; margin-bottom:10px; color:var(--ink); }
.theme-product .step-text { font-size:14px; color:var(--muted); line-height:1.75; }
.theme-product .mechanic-pull{ background:color-mix(in srgb, var(--accent) 10%, #fff); border-left:3px solid var(--accent); padding:28px 32px }

.theme-product .mechanic-items{ display:flex; flex-direction:column; gap:48px; margin-top:24px }
.theme-product .mechanic-item{ padding:0; display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start }
.theme-product .mechanic-item.offset-1{ grid-template-columns:1fr 1fr; direction:rtl }
.theme-product .mechanic-item.offset-1 > * { direction:ltr }
.theme-product .mechanic-item.offset-0 .mechanic-title{ text-align:right; }
.theme-product .mechanic-item.offset-0 .mechanic-text{ text-align:left }
.theme-product .mechanic-item.offset-1 .mechanic-title{ text-align:left }
.theme-product .mechanic-item.offset-1 .mechanic-text{ text-align:right }
.theme-product .mechanic-title{ font-family:var(--font-serif); font-weight:700; font-size:clamp(22px,2vw,32px); color:var(--ink); line-height:1.2; margin-bottom:12px; padding-top: 28px; }
.theme-product .mechanic-text{ font-size:15px; color:var(--muted); line-height:1.8; max-width:45ch; display:flex; flex-direction:column; align-items:flex-start; gap:0 }
.theme-product .quote-icon{ width:20px; height:20px; color:color-mix(in srgb, var(--accent) 40%, #ccc); stroke:var(--accent); fill:var(--accent); flex-shrink:0; display:block }
.theme-product .quote-open{ transform:scaleX(-1) scaleY(-1); margin-bottom:8px }
.theme-product .quote-text{ display:inline; margin:0 }
.theme-product .quote-close{ display:inline-block; margin:0; margin-left:2px }

.theme-product .numbers-row{ display:grid; grid-template-columns:repeat(4,1fr); border-top:2px solid var(--ink); border-bottom:1px solid var(--rule); margin-bottom:0 }
.theme-product .num-item{ padding:44px 5px; border-right:1px solid var(--rule) }
.theme-product .num-item:last-child { border-right: none; }
.theme-product .num-val{ font-family:var(--font-serif); font-size:clamp(40px,5vw,64px); font-weight:700; color:var(--ink); margin-bottom:10px }
.theme-product .num-val span { color: var(--accent); }
.theme-product .num-label{ font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--muted); line-height:1.5; max-width:18ch }

.theme-product .builder-layout{ display:grid; grid-template-columns:5fr 7fr; gap:80px; align-items: start }
.theme-product .builder-name{ font-family:var(--font-serif); font-weight:700; font-size:clamp(44px,5vw,64px); letter-spacing:-2px; line-height:1; color:var(--ink); margin-bottom:6px }
.theme-product .builder-role{ font-size:13px; color:var(--muted); margin-bottom:28px }
.theme-product .builder-stack{ display:flex; flex-wrap:wrap; gap:6px }
.theme-product .b-tag{ font-family:var(--font-mono); font-size:10px; padding:4px 10px; border:1px solid var(--rule); color:var(--muted); border-radius:2px }
.theme-product .b-tag:hover{ border-color:var(--accent); color:var(--accent) }
.theme-product .builder-body{ font-size:16px; color:var(--muted); line-height:1.85 }
.theme-product .builder-body p + p { margin-top: 18px }
.theme-product .builder-body strong { color: var(--text) }
.theme-product .builder-pull{ border-left:3px solid var(--accent); padding:4px 0 4px 24px; margin:32px 0 }
.theme-product .builder-pull-text{ font-family:var(--font-serif); font-style:italic; font-size:clamp(17px,1.7vw,21px); color:var(--ink); line-height:1.5 }
.theme-product .builder-pull-attr{ font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); margin-top:10px }

.theme-product #cta{ background:var(--cta-bg, #0f172a); padding:100px 8vw }
.theme-product .cta-row{ display:flex; justify-content:space-between; align-items:center; padding:22px 24px; text-decoration:none; color:#fff; border:1px solid rgba(255,255,255,.08) }
.theme-product .cta-row:hover{ background: color-mix(in srgb, var(--accent) 15%, #0f172a); border-color: color-mix(in srgb, var(--accent) 50%, rgba(255,255,255,0)) }

.theme-product .cta-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center }
.theme-product .cta-headline { font-family: var(--font-serif); font-weight: 700; font-size: clamp(34px, 4.5vw, 56px); letter-spacing: -2px; line-height: 1.05; color: #fff; margin-bottom: 16px }
.theme-product .cta-sub { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: #94a3b8; line-height: 1.6 }
.theme-product .cta-actions { display: flex; flex-direction: column; gap: 2px }

.theme-product footer{ padding:28px 8vw; border-top:1px solid var(--rule); display:flex; justify-content:space-between; color:var(--muted) }

@media(max-width:860px){
  .theme-product .problem-layout, .theme-product .builder-layout, .theme-product .cta-layout, .theme-product .numbers-row { grid-template-columns:1fr; gap:40px }
  .theme-product .num-item { border-right:none; border-bottom:1px solid var(--rule); padding:32px 0 }
  .theme-product .num-item:last-child { border-bottom:none }
  .theme-product .hero-badge { display:none }
  .theme-product .how-steps { grid-template-columns:1fr }
  .theme-product .how-step { border-right:none; border-bottom:1px solid var(--rule); padding:32px 0 }
  .theme-product .how-step:last-child { border-bottom:none }
  .theme-product .how-step:not(:first-child) { padding-left:0 }
}

html,body{height:100%;}
html{ overflow-x: clip; }
a{ color:var(--accent, currentColor); }
body{
  margin:0; background:var(--bg); color:var(--fg);
  font-family:var(--font-sans); font-size:15px; line-height:1.6;
  cursor: none;
}

/* Cursor */
#cur{ position:fixed; pointer-events:none; z-index:9999; width:7px; height:7px; border-radius:50%; background:var(--accent, var(--fg)); transform:translate(-50%,-50%); transition:width .25s var(--ease),height .25s var(--ease),background .4s,opacity .3s; mix-blend-mode: difference; }
#cur.big{ width:48px; height:48px; opacity:.2; }

/* On product pages use the exact accent color for the cursor dot (no blend-mode) */
.theme-product #cur{ mix-blend-mode: normal; background: var(--accent); }
.theme-product #cur.big{ background: var(--accent); opacity:.2; }

/* ── TIMELINE NAV */
#tnav{ position:fixed; left:32px; top:50%; transform:translateY(-50%); z-index:300; display:flex; flex-direction:column; gap:0; }
.tn-row{ display:flex; align-items:center; gap:14px; padding:7px 0; text-decoration:none; color:inherit; }
.tn-dot{ width:5px; height:5px; border-radius:50%; background:currentColor; opacity:.25; transition:opacity .3s, transform .3s; flex-shrink:0; }
.tn-row.active .tn-dot{ opacity:1; transform:scale(1.8); }
.tn-text{ font-size:10px; letter-spacing:.18em; text-transform:uppercase; opacity:0; transform:translateX(-6px); transition:opacity .25s, transform .25s; white-space:nowrap; }
.tn-row:hover .tn-text, .tn-row.active .tn-text{ opacity:.7; transform:translateX(0); }
.tn-row[href="#ch-blog"] .tn-text{ opacity:.7; transform:translateX(0); }
.tn-connector{ width:1px; height:20px; margin-left:9px; background:currentColor; opacity:.12; }

/* ── SECTIONS / CHAPTERS ── */
.ch{ position:relative; transition:background .8s, color .8s; }
.ch-inner{ padding:120px 0; border-top:1px solid rgba(255,255,255,.08); }
.ch-kicker{ font-family:var(--font-mono); font-size:10px; letter-spacing:.28em; text-transform:uppercase; opacity:.4; margin-bottom:24px; display:flex; align-items:center; gap:16px; }
.ch-headline{ font-family:var(--font-serif); font-weight:700; font-size:clamp(48px,7vw,96px); line-height:.95; letter-spacing:-3px; margin-bottom:48px; max-width:14ch; }

/* hero styles closer to original */
.hero-eyebrow{ font-family:var(--font-mono); font-size:11px; letter-spacing:.22em; text-transform:uppercase; opacity:.4; margin-bottom:32px; }
.hero-name{ font-family:var(--font-serif); font-weight:700; font-size:clamp(72px,12vw,160px); line-height:.92; letter-spacing:-4px; margin-bottom:40px; }
.hero-name .ghost{
  color: transparent;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-stroke:1px var(--fg);
  -webkit-text-stroke-color: var(--fg);
  opacity:.95;
  text-shadow: none;
}
.hero-tagline{ font-family:var(--font-serif); font-style:italic; font-size:clamp(20px,2.4vw,30px); opacity:.55; max-width:540px; line-height:1.5; margin-bottom:64px; }
.hero-stats-title{ font-family:var(--font-mono); font-size:11px; letter-spacing:.18em; text-transform:uppercase; opacity:.45; margin-bottom:8px; }
.hero-meta{ display:flex; gap:48px; flex-wrap:wrap; }
.hero-stat-num{ font-family:var(--font-serif); font-size:clamp(36px,4vw,52px); font-weight:700; letter-spacing:-2px; line-height:1; }
.hero-stat-label{ font-size:11px; letter-spacing:.14em; text-transform:uppercase; opacity:.4; margin-top:6px; }

/* timeline */
.tl-spine{ position:relative; padding-left:32px; }
.tl-spine::before{ content:''; position:absolute; left:0; top:8px; bottom:0; width:1px; background:currentColor; opacity:.15; }
.tl-item{ position:relative; padding-bottom:48px; }
.tl-item::before{ content:''; position:absolute; left:-36px; top:9px; width:9px; height:9px; border-radius:50%; border:1px solid currentColor; opacity:.4; background:transparent; transition:opacity .3s, background .3s; }
.tl-item:hover::before{ opacity:1; background:currentColor; }
.tl-year{ font-family:var(--font-mono); font-size:11px; letter-spacing:.18em; opacity:.35; margin-bottom:6px; }
.tl-title{ font-family:var(--font-serif); font-size:clamp(18px,2vw,22px); font-weight:700; margin-bottom:8px; }
.tl-text{ font-size:14px; opacity:.55; line-height:1.7; max-width:44ch; }

/* Reveal helpers */
.r{ opacity:0; transform:translateY(22px); transition:opacity .9s var(--ease), transform .9s var(--ease); }
.r.in{ opacity:1; transform:none; }
.r1{ transition-delay:.1s } .r2{ transition-delay:.22s } .r3{ transition-delay:.34s } .r4{ transition-delay:.46s }

/* Layout utilities */
.container{ max-width:var(--max-width); margin:0 auto; }
.section{ padding:100px 8vw; }

/* Chapter body layouts (copied from index.html) */
/* Split: big statement left, content right */
.layout-split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.layout-split-wide { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; align-items: start; }

/* Statement block */
.statement { font-family: var(--font-serif); font-size: clamp(20px, 2.2vw, 28px); line-height: 1.5; opacity: .85; }
.statement em { font-style: italic; opacity: .6; }
.statement strong { font-weight: 700; opacity: 1; }

/* Body text */
.body-text { font-size: 15px; line-height: 1.8; opacity: .6; max-width: 52ch; }
.body-text p + p { margin-top: 16px; }
.body-text strong { opacity: 1; color: inherit; }

/* ── BIG NUMBERS (The Scale) ── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
  margin-bottom: 64px;
}
.number-item {
  padding: 40px 0;
  border-right: 1px solid rgba(255,255,255,.08);
}
.number-item:last-child { border-right: none; }
.number-val {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 700; letter-spacing: -4px;
  line-height: .9; margin-bottom: 12px;
}
.number-label {
  font-size: 12px; opacity: .4;
  letter-spacing: .1em; text-transform: uppercase;
  line-height: 1.4; max-width: 18ch;
}

/* ── PRODUCT SECTION ── */
.product-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.product-item, .product-link {
  padding: 10px;
  border: 1px solid transparent;
}
.product-entry { margin: 46px 38px 0 0; display: flex; flex-direction: column; }
.product-entry:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }


.product-item:nth-child(even)  { border-right: none; padding-right: 0; padding-left: 48px; }
.product-num {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .2em; opacity: .3;
  margin-bottom: 20px;
}
.product-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700; letter-spacing: -2px;
  line-height: .95; margin-bottom: 8px;
}
.product-url {
  font-size: 12px; opacity: .4; letter-spacing: .05em;
  text-decoration: none; color: inherit;
  display: inline-flex; align-items: center; gap: 6px;
  margin-bottom: 24px; transition: opacity .2s;
}
.product-url:hover { opacity: .8; }
.product-desc {
  font-size: 15px; opacity: .6; line-height: 1.75;
  max-width: 42ch; margin-bottom: 0;
}
.product-rule { margin-top: auto; height: 1px; background: currentColor; opacity: .1; margin-bottom: 24px; }
.product-facts { display: flex; gap: 32px; }
.pf-num { font-family: var(--font-serif); font-size: 26px; font-weight: 700; letter-spacing: -1px; }
.pf-label { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .4; margin-top: 2px; }
.product-stack { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 24px; }
.stack-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .06em; padding: 4px 10px; border: 1px solid rgba(255,255,255,.15); opacity: .6; }

/* Make entire product card clickable without default browser link color */
.product-link {
  flex: 1;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}
.product-entry > .product-item { flex: 1; display: flex; flex-direction: column; }
.product-link .product-item { flex: 1; display: flex; flex-direction: column; transition: transform .18s var(--ease); }
.product-link:visited { color: inherit; }
.product-link:hover { opacity: .97; }

a { color: var(--accent); }
a:hover { text-decoration: underline; }

mark {
    background: var(--accent);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-style: normal;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

/* ── CONTACT CHAPTER ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.avail-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  opacity: .5; margin-bottom: 40px;
}
.avail-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #4caf50;
}
.unavail-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #f44336;
}
.clinks { display: flex; flex-direction: column; }
.clink {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-decoration: none; color: inherit;
  opacity: .45; transition: opacity .2s; font-size: 13px;
}
.clink:hover { opacity: 1; }
.clink-arrow { transition: transform .2s; }

/* Contact form styles */
.cf-row { margin-bottom: 20px; }
.cf-lbl {
  display: block; font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; opacity: .35; margin-bottom: 8px;
}
.cf-inp, .cf-ta {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(255,255,255,.18);
  color: inherit; font-size: 14px; padding: 8px 0; outline: none;
}
.cf-inp::placeholder, .cf-ta::placeholder { opacity: .25; }
.cf-inp:focus, .cf-ta:focus { border-bottom-color: rgba(255,255,255,.6); }
.cf-ta { resize: none; min-height: 80px; }
.cf-btn{ margin-top: 8px; background: transparent; border: 1px solid var(--fg); color: var(--fg); padding: 10px 16px; border-radius: 8px; cursor: pointer; font-weight:700 }
#form-message { display: none; margin-top: 16px; padding: 10px 14px; border-left: 2px solid; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; line-height: 1.5; }
#form-message.ok { display: block; border-color: #4ade80; color: #4ade80; background: rgba(74,222,128,.06); }
#form-message.err { display: block; border-color: #ef4444; color: #ef4444; background: rgba(239,68,68,.06); }

/* Nudge form down slightly so inputs align with statement top like index.html */
.contact-layout > div:last-child { padding-top: 12px; }
.contact-layout .statement { margin-top: 0; margin-bottom: 32px; }


/* Reserve left space for the fixed timeline nav on wide viewports */
@media (min-width: 900px) {
  .ch{ padding-left: calc(var(--nav-space) + 10vw); padding-right: 10vw; }
  html:not(.theme-product) .container{ padding-left: calc(var(--nav-space) + 8vw); padding-right: 8vw; }
  html:not(.theme-product) .section{ padding-left: calc(var(--nav-space) + 8vw); padding-right: 8vw; }
  html:not(.theme-product) footer{ padding-left: calc(var(--nav-space) + 8vw); padding-right: 8vw; }
}

@media (max-width: 899px) {
  /* revert to original padding on small screens */
  .ch, .container, .section, footer{ padding-left: 8vw; padding-right: 8vw; }
  #tnav{ left:12px; }
}

/* Footer */
footer{ padding:28px 8vw; font-family:var(--font-mono); font-size:11px; opacity:.7 }

/* Mobile: hide timeline titles, keep tappable dots */
@media (max-width: 899px) {
  .tn-text { display: none !important; }
  .tn-dot { width: 12px; height: 12px; }
  .tn-connector { display: none !important; }
  .tn-row { gap: 10px; padding: 8px 0; }
  /* ensure accessible names remain via aria-label on links */
}

/* Collapse multi-column layouts on narrow screens */
@media (max-width: 860px) {
  .ch{ padding:0 6vw 0 14vw }
  .layout-split, .layout-split-wide, .contact-layout, .product-pair { grid-template-columns: 1fr; }
  .product-item:last-child{ padding-left:0; border-left:none }
  .numbers-grid{ grid-template-columns: 1fr 1fr }
  #tnav{ left:14px }
  .tn-text{ display:none }
  footer{ padding:28px 6vw; flex-direction:column; gap:8px }
  #cur{ display:none }
}

/* ── Blog preview chapter (ch-blog on front page) ── */
.blog-latest-item {
  display: flex;
  align-items: baseline;
  gap: 32px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-decoration: none;
  color: inherit;
  max-width: 640px;
  margin-top: 40px;
  margin-bottom: 32px;
}
.blog-latest-item:hover { text-decoration: none; }
.blog-latest-item:hover .blog-latest-title { opacity: 1; }
.blog-latest-year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .18em;
  opacity: .35;
  flex-shrink: 0;
}
.blog-latest-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  flex: 1;
  opacity: .7;
  transition: opacity .2s;
}
.blog-latest-arrow {
  margin-left: auto;
  opacity: .35;
  transition: transform .2s, opacity .2s;
  flex-shrink: 0;
}
.blog-latest-item:hover .blog-latest-arrow { transform: translateX(4px); opacity: .7; }
