/* ============================================================================
   THE EDIT, Aubury & Co. A straight port of the Studio Suite Journal stylesheet
   (studio-suite/app/src/app/(app)/journal/journal.css, 26 Sep 2026), with the
   Studio Suite masthead removed (Aubury's navigation is used) and, at the end,
   the few additions The Edit needs: the studio's line, the back-issue rail and
   the page-turn covers, plus guards against the site-wide type and link styles.
   ============================================================================ */
/* The Journal: a stunning editorial magazine (Original BTC inspired).
   Sophisticated high-contrast serif (Cormorant Garamond), hollow ghost
   words over lightened photographic dividers, generous air, warm accents.
   Motion: one slow hero parallax + gentle reveals, nothing else. */


.jn {
  --jn-serif: "Cormorant Garamond", "Fraunces", Georgia, serif;
  --jn-cream: #FBF9F5;
  --jn-ink: #232019;
  --jn-soft: #6E675C;
  --jn-hair: #E7E1D6;
  --jn-accent: var(--ss-accent, #C05F3C);
  background: var(--jn-cream);
  color: var(--jn-ink);
  min-height: 100vh;
  /* clip (not hidden) so it does not become a scroll container and break the sticky nav */
  overflow-x: clip;
}


/* Reveals: visible by default (content can NEVER stay hidden). Only elements
   armed by JS as below-the-fold get the slide-in; they reveal on .in and stay. */
.jn-reveal { transition: opacity 800ms var(--ss-ease, ease), transform 800ms var(--ss-ease, ease); }
.jn-reveal.armed { opacity: 0; transform: translateY(22px); }
.jn-reveal.armed.in { opacity: 1; transform: none; }

/* Hero: full-bleed, elegant serif masthead, lightened scrim */
.jn-hero {
  position: relative; height: 88vh; min-height: 520px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.jn-hero-img { position: absolute; inset: -20% 0 0 0; will-change: transform; }
.jn-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jn-hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(28, 22, 16, 0.52) 0%, rgba(28, 22, 16, 0.14) 42%, rgba(28, 22, 16, 0.04) 100%);
}
.jn-hero-text { position: relative; padding: 0 6vw 8vh; color: var(--jn-cream); max-width: 1200px; }
.jn-hero-text h1 {
  font-family: var(--jn-serif);
  font-size: clamp(84px, 16vw, 220px);
  font-weight: 500; line-height: 0.86; letter-spacing: 0.005em;
  margin-top: 20px; text-shadow: 0 2px 40px rgba(28, 22, 16, 0.28);
}
.jn-hero-dek {
  margin-top: 30px; max-width: 44ch;
  font-size: 16px; line-height: 1.7; opacity: 0.94;
}
.jn-hero .jn-eyebrow { color: var(--jn-cream); opacity: 0.9; }

.jn-eyebrow {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--jn-accent);
}

/* Intro: elegant serif column, print measure */
.jn-intro { max-width: 680px; margin: 0 auto; padding: 104px 24px 48px; text-align: center; }
.jn-intro p {
  font-family: var(--jn-serif);
  font-size: clamp(24px, 3vw, 32px); line-height: 1.5; font-weight: 400;
  color: var(--jn-ink);
}

/* Chapter dividers: hollow ghost word over lightened photography */
.jn-chapter { padding: 44px 0 34px; }
.jn-ghost {
  position: relative; text-align: center;
  min-height: 52vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-bottom: 40px;
}
.jn-ghost-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jn-ghost-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 62% 58% at 50% 48%, rgba(26, 20, 14, 0.52), rgba(26, 20, 14, 0.16) 62%, transparent 82%),
    linear-gradient(to top, rgba(26, 20, 14, 0.26), rgba(26, 20, 14, 0.06));
}
.jn-ghost-text {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  padding: 4vh 4vw;
}
.jn-ghost-mark {
  font-size: 12px; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--jn-cream); opacity: 0.82; margin-bottom: clamp(14px, 2vw, 26px);
}
.jn-ghost-mark i { font-style: normal; opacity: 0.6; margin: 0 4px; }
.jn-ghost-word {
  font-family: var(--jn-serif);
  font-size: clamp(96px, 18vw, 260px);
  font-weight: 500; line-height: 0.9; letter-spacing: 0.01em;
  padding-bottom: 0.14em; /* clear the descenders so the strap never collides */
  color: transparent;
  -webkit-text-stroke: 1.7px rgba(252, 250, 246, 1);
  text-stroke: 1.7px rgba(252, 250, 246, 1);
  text-shadow: 0 1px 3px rgba(26, 20, 14, 0.45), 0 4px 46px rgba(26, 20, 14, 0.5);
  user-select: none;
}
.jn-ghost-strap {
  font-family: var(--jn-serif); font-style: italic; font-weight: 500;
  font-size: clamp(22px, 2.8vw, 36px);
  color: var(--jn-cream); opacity: 0.96;
  margin-top: clamp(20px, 2.6vw, 36px); /* generous gap, no descender clash */
}

/* Feature spread: full-bleed image beside a quiet serif column, alternating */
.jn-feature {
  display: grid; grid-template-columns: 7fr 5fr; gap: 0; align-items: center;
  margin: 40px 0 84px;
}
.jn-feature.is-flipped { direction: rtl; }
.jn-feature.is-flipped > * { direction: ltr; }
.jn-feature-img { position: relative; display: block; }
.jn-feature-img img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; display: block; }
.jn-credit {
  position: absolute; right: 12px; bottom: 12px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(28, 22, 16, 0.6); color: var(--jn-cream);
  border-radius: 999px; padding: 4px 11px; backdrop-filter: blur(3px);
}
.jn-feature-body { padding: 40px clamp(24px, 5vw, 84px); }
.jn-feature-body h2 {
  font-family: var(--jn-serif);
  font-size: clamp(34px, 4vw, 56px); font-weight: 500; line-height: 1.08;
  margin-top: 14px; color: var(--jn-ink); letter-spacing: 0.005em;
}
.jn-feature-body > p {
  margin-top: 20px; font-size: 15.5px; line-height: 1.75; color: var(--jn-soft); max-width: 52ch;
}
.jn-swatches { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 26px; }
.jn-swatch { display: inline-flex; align-items: center; gap: 8px; font-size: 11.5px; color: var(--jn-soft); }
.jn-swatch span { width: 15px; height: 15px; border-radius: 50%; display: inline-block; border: 1px solid rgba(35,32,25,0.12); }

.jn-feature-links { display: flex; gap: 28px; margin-top: 30px; flex-wrap: wrap; }
.jn-feature-links a {
  font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--jn-ink); text-decoration: none;
  border-bottom: 1px solid var(--jn-ink); padding-bottom: 3px;
  transition: color 150ms, border-color 150ms;
}
.jn-feature-links a:hover { color: var(--jn-accent); border-color: var(--jn-accent); }
.jn-feature-links a span { font-size: 10px; }

/* Grid bands */
.jn-grid {
  max-width: 1180px; margin: 0 auto; padding: 0 30px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 52px 34px;
}
.jn-card-img { position: relative; display: block; margin-bottom: 18px; }
.jn-card-img img { width: 100%; aspect-ratio: 29 / 22; object-fit: cover; display: block; }
.jn-card-band { display: flex; height: 120px; margin-bottom: 18px; }
.jn-card-band span { flex: 1; }
.jn-card h3 {
  font-family: var(--jn-serif);
  font-size: 25px; font-weight: 500; line-height: 1.16;
  margin-top: 10px; color: var(--jn-ink);
}
.jn-card p { margin-top: 9px; font-size: 13.5px; line-height: 1.65; color: var(--jn-soft); }
.jn-card-links { display: flex; justify-content: space-between; gap: 12px; margin-top: 14px; }
.jn-card-links a {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--jn-soft); text-decoration: none; transition: color 150ms;
}
.jn-card-links a:hover { color: var(--jn-accent); }
.jn-card-links a span { font-size: 9px; }

/* Pull quotes: large italic serif, alone, centred, with rule */
.jn-quote { max-width: 760px; margin: 90px auto 40px; padding: 0 24px; text-align: center; }
.jn-quote::before {
  content: ""; display: block; width: 44px; height: 1px;
  background: var(--jn-accent); margin: 0 auto 30px;
}
.jn-quote p {
  font-family: var(--jn-serif); font-style: italic; font-weight: 400;
  font-size: clamp(26px, 3.2vw, 40px); line-height: 1.4; color: var(--jn-ink);
}

/* Footer */
.jn-foot { max-width: 660px; margin: 0 auto; padding: 96px 24px 110px; text-align: center; }
.jn-foot p {
  margin-top: 18px; font-family: var(--jn-serif); font-size: 20px; line-height: 1.6; color: var(--jn-soft);
}
.jn-foot a { color: var(--jn-accent); }
.jn-colophon {
  display: block; margin-top: 38px; font-size: 10.5px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--jn-soft);
}

/* ---- Living field + grain (subtle, warm; content sits above) ---- */
.jn { position: relative; }
.jn > *:not(.ss-field):not(.jn-grain) { position: relative; z-index: 1; }
.ss-field.jn-field { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.ss-field.jn-field svg { width: 100%; height: 100%; display: block; }
.jn-grain {
  position: fixed; inset: -50%; width: 200%; height: 200%; z-index: 2; pointer-events: none;
  opacity: 0.05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: jngrain .5s steps(3) infinite;
}
@keyframes jngrain { 0%{transform:translate(0,0)} 33%{transform:translate(-2%,1%)} 66%{transform:translate(1%,-2%)} 100%{transform:translate(0,0)} }
@media (prefers-reduced-motion: reduce) { .jn-grain { animation: none; } }

/* ---- Shared image wrapper + graceful fallback ---- */
.jn-img-wrap { position: relative; display: block; overflow: hidden; background: var(--jn-hair); }
.img-dead { display: none !important; }

/* ---- Chapter breathing room ---- */
.jn-chapter { padding: 56px 0 44px; }

/* ---- Triptych divider: one image sliced into three ---- */
.jn-triptych {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin: 78px 0; padding: 0 10px;
}
.jn-tri-panel { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: var(--jn-hair); }
.jn-tri-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jn-tri-label {
  position: absolute; left: 0; right: 0; bottom: 26px; text-align: center; z-index: 2;
  font-family: var(--jn-serif); font-style: italic; font-size: clamp(20px, 2.6vw, 30px);
  color: var(--jn-cream); text-shadow: 0 2px 30px rgba(26,20,14,0.5);
  pointer-events: none;
}

/* ---- Section band headings ---- */
.jn-band-head { max-width: 1180px; margin: 0 auto; padding: 44px 30px 6px; }
.jn-band-head h2 { font-family: var(--jn-serif); font-size: clamp(30px, 4vw, 50px); font-weight: 500; color: var(--jn-ink); margin-top: 6px; line-height: 1.05; }
.jn-band-head p { margin-top: 12px; color: var(--jn-soft); max-width: 58ch; font-size: 15px; line-height: 1.6; }

/* ---- Designer of the Week (cover story) ---- */
.jn-dotw {
  display: grid; grid-template-columns: 6fr 5fr; gap: 0; align-items: stretch;
  margin: 28px 0 8px; border-top: 1px solid var(--jn-hair); border-bottom: 1px solid var(--jn-hair);
}
.jn-dotw-img { position: relative; min-height: 62vh; }
.jn-dotw-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jn-dotw-body { padding: clamp(30px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.jn-dotw-body h2 { font-family: var(--jn-serif); font-size: clamp(46px, 6vw, 84px); font-weight: 500; line-height: 1; margin-top: 10px; color: var(--jn-ink); }
.jn-dotw-meta { margin-top: 12px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--jn-soft); }
.jn-dotw-why { margin-top: 24px; font-family: var(--jn-serif); font-style: italic; font-size: clamp(20px, 2.4vw, 27px); line-height: 1.4; color: var(--jn-ink); }
.jn-dotw-bio { margin-top: 18px; font-size: 15.5px; line-height: 1.75; color: var(--jn-soft); max-width: 54ch; }

/* ---- Title-over-image divider (with button) ---- */
.jn-title-div {
  position: relative; min-height: 64vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin: 46px 0 40px; text-align: center;
}
.jn-div-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.jn-div-scrim { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(26,20,14,0.30), rgba(26,20,14,0.46)); }
.jn-title-text { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; color: var(--jn-cream); padding: 5vh 5vw; }
.jn-title-word { font-family: var(--jn-serif); font-size: clamp(66px, 11vw, 156px); font-weight: 500; line-height: 1; padding-bottom: 0.1em; text-shadow: 0 2px 44px rgba(26,20,14,0.42); }
.jn-title-strap { font-family: var(--jn-serif); font-style: italic; font-size: clamp(20px, 2.6vw, 32px); opacity: 0.96; margin-top: clamp(22px, 3vw, 40px); }
.jn-div-btn {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--jn-cream); border: 1px solid rgba(252,250,246,0.65); padding: 13px 26px;
  text-decoration: none; transition: background 200ms, color 200ms;
}
.jn-div-btn:hover { background: var(--jn-cream); color: var(--jn-ink); }

/* ---- Cinematic (video-ready) divider ---- */
.jn-cinema { position: relative; height: 78vh; min-height: 520px; overflow: hidden; margin: 46px 0 40px; }
.jn-cinema-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kenburns 20s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.03) translate(0, 0); } to { transform: scale(1.13) translate(-2%, -1%); } }
@media (prefers-reduced-motion: reduce) { .jn-cinema-img { animation: none; } }
.jn-cinema-scrim { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,20,14,0.52) 0%, rgba(26,20,14,0.16) 46%, transparent 76%); }
.jn-cinema-text { position: absolute; top: 8%; left: 5vw; color: var(--jn-cream); max-width: 60%; }
.jn-cinema-word { display: block; font-family: var(--jn-serif); font-size: clamp(58px, 9vw, 132px); font-weight: 500; line-height: 1; padding-bottom: 0.08em; margin-top: 10px; text-shadow: 0 2px 44px rgba(26,20,14,0.42); }
.jn-cinema-strap { display: block; font-family: var(--jn-serif); font-style: italic; font-size: clamp(18px, 2.2vw, 28px); opacity: 0.96; margin-top: clamp(20px, 2.6vw, 32px); }
.jn-cinema-text .jn-eyebrow { color: var(--jn-cream); opacity: 0.85; }

/* ---- Tall triptych ---- */
.jn-tall-row { max-width: 1180px; margin: 16px auto 0; padding: 0 30px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.jn-tall { text-decoration: none; display: block; }
.jn-tall .jn-img-wrap { aspect-ratio: 3 / 4; margin-bottom: 14px; }
.jn-tall .jn-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 550ms var(--ss-ease, ease); }
.jn-tall:hover .jn-img-wrap img { transform: scale(1.04); }
.jn-tall-cat { display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--jn-accent); font-weight: 600; }
.jn-tall-title { display: block; font-family: var(--jn-serif); font-size: 23px; font-weight: 500; color: var(--jn-ink); margin-top: 6px; line-height: 1.18; }

/* ---- Makers band (home for designers) ---- */
.jn-makers { padding: 26px 0 16px; }
.jn-makers-grid { max-width: 1180px; margin: 4px auto 0; padding: 0 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.jn-maker { text-decoration: none; display: flex; flex-direction: column; }
.jn-maker .jn-img-wrap { aspect-ratio: 1 / 1; margin-bottom: 12px; }
.jn-maker .jn-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 550ms var(--ss-ease, ease); }
.jn-maker:hover .jn-img-wrap img { transform: scale(1.04); }
.jn-maker.is-big { grid-column: span 2; }
.jn-maker.is-big .jn-img-wrap { aspect-ratio: 16 / 10; }
.jn-maker-name { display: block; font-family: var(--jn-serif); font-size: 22px; font-weight: 500; color: var(--jn-ink); margin-top: 4px; line-height: 1.15; }
.jn-maker-loc { display: block; font-size: 12.5px; color: var(--jn-soft); margin-top: 3px; }

/* ---- Chopped three band ---- */
.jn-chop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 44px 0; }
.jn-chop-cell { position: relative; display: block; text-decoration: none; }
.jn-chop-cell .jn-img-wrap { aspect-ratio: 3 / 4; }
.jn-chop-cell .jn-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 650ms var(--ss-ease, ease); }
.jn-chop-cell:hover .jn-img-wrap img { transform: scale(1.05); }
.jn-chop-label { position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 24px 22px; background: linear-gradient(to top, rgba(26,20,14,0.72), transparent); color: var(--jn-cream); }
.jn-chop-label .jn-eyebrow { color: rgba(252,250,246,0.86); }
.jn-chop-title { display: block; font-family: var(--jn-serif); font-size: 23px; font-weight: 500; margin-top: 4px; line-height: 1.15; }

/* ---- Varied grid: an occasional wide card ---- */
.jn-card.is-wide { grid-column: span 2; }
.jn-card.is-wide .jn-card-img img { aspect-ratio: 16 / 9; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .jn-feature, .jn-feature.is-flipped { grid-template-columns: 1fr; direction: ltr; }
  .jn-feature-body { padding: 28px 24px 0; }
  .jn-hero { height: 74vh; }
  .jn-grid { gap: 42px 22px; }
  .jn-dotw { grid-template-columns: 1fr; }
  .jn-dotw-img { min-height: 52vh; }
  .jn-makers-grid { grid-template-columns: repeat(2, 1fr); }
  .jn-maker.is-big { grid-column: span 2; }
  .jn-maker.is-big .jn-img-wrap { aspect-ratio: 16 / 10; }
  .jn-card.is-wide { grid-column: auto; }
}
@media (max-width: 640px) {
  .jn-ghost, .jn-title-div { min-height: 46vh; }
  .jn-cinema { height: 60vh; }
  .jn-tall-row { grid-template-columns: 1fr; gap: 30px; }
  .jn-makers-grid { grid-template-columns: 1fr; }
  .jn-maker.is-big { grid-column: auto; }
  .jn-chop { grid-template-columns: 1fr; }
}


/* ============================================================================
   THE EDIT additions
   ============================================================================ */
@view-transition { navigation: auto; }
body.jn-body { background: #FBF9F5; }
.jn { font-family: var(--font-sans, 'Inter'), system-ui, sans-serif; }
.jn h1, .jn h2, .jn h3 { font-family: var(--jn-serif); }
.jn h1, .jn h2, .jn h3, .jn p { letter-spacing: normal; }
.jn a:hover { text-decoration: none; }
.jn p { color: inherit; }
.jn-hero-text, .jn-hero-text h1, .jn-hero-text p { color: var(--jn-cream); }
.jn-feature-body > p, .jn-card p, .jn-dotw-bio, .jn-band-head p, .jn-foot p { color: var(--jn-soft); }
.jn-dotw-why, .jn-intro p, .jn-quote p { color: var(--jn-ink); }
.jn-hero { height: 92vh; }

/* the studio's line on the newest issue */
.jn-take { margin-top: 22px; padding: 4px 0 4px 18px; border-left: 1px solid var(--jn-accent); max-width: 52ch; }
.jn-take .jn-eyebrow { margin-bottom: 8px; }
.jn-take p { font-family: var(--jn-serif); font-style: italic; font-size: clamp(19px, 1.9vw, 23px); line-height: 1.45; color: var(--jn-ink) !important; margin: 0; }
.jn-card .jn-take { margin-top: 14px; }
.jn-card .jn-take p { font-size: 18px; }

/* back issues: the rail and the page-turn */
.jn-back { padding: 40px 0 20px; }
.jn-back-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; }
.jn-rail-btns { display: flex; gap: 10px; flex: none; }
.jn-rail-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--jn-ink); background: transparent; color: var(--jn-ink); font-size: 18px; cursor: pointer; transition: background 200ms, color 200ms; }
.jn-rail-btn:hover { background: var(--jn-ink); color: var(--jn-cream); }
.jn-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(210px, 20vw, 260px); gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding: 0 30px; padding: 22px 30px 30px;
  max-width: 100%; cursor: grab; scrollbar-width: thin; scrollbar-color: rgba(35,32,25,0.3) transparent;
}
.jn-rail:active { cursor: grabbing; }
.jn-rail > * { scroll-snap-align: start; }
.jn-cover { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; background: var(--jn-hair); text-decoration: none; color: var(--jn-cream); box-shadow: 0 22px 44px -26px rgba(28,22,16,0.6); }
.jn-cover img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 800ms var(--ss-ease, ease); }
.jn-cover:hover img { transform: scale(1.045); }
.jn-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(28,22,16,0.5) 0%, rgba(28,22,16,0) 30%, rgba(28,22,16,0) 50%, rgba(28,22,16,0.78) 100%); }
.jn-cover-top, .jn-cover-bot { position: absolute; left: 0; right: 0; z-index: 1; padding: 16px 18px; display: block; color: var(--jn-cream); }
.jn-cover-top { top: 0; display: flex; justify-content: space-between; align-items: baseline; }
.jn-cover-mark { font-family: var(--jn-serif); font-size: 26px; font-weight: 500; line-height: 0.9; letter-spacing: 0.02em; }
.jn-cover-no { font-size: 10.5px; font-weight: 600; letter-spacing: 0.2em; }
.jn-cover-bot { bottom: 0; }
.jn-cover-date { display: block; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.86; margin-bottom: 7px; }
.jn-cover-line { display: block; font-family: var(--jn-serif); font-size: 20px; font-weight: 500; line-height: 1.15; }
.jn-cover.is-current { outline: 1px solid var(--jn-accent); outline-offset: 5px; }
.jn-turn { max-width: 1180px; margin: 30px auto 0; padding: 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.jn-turn-side .jn-eyebrow { margin-bottom: 12px; }
.jn-turn-side .jn-cover { max-width: 280px; }
.jn-turn-side.is-next { text-align: right; }
.jn-turn-side.is-next .jn-cover { margin-left: auto; }

@media (max-width: 640px) {
  .jn-back-head { flex-direction: column; align-items: flex-start; }
  .jn-rail-btns { display: none; }
  .jn-rail { grid-auto-columns: 66vw; padding: 18px 18px 26px; scroll-padding: 0 18px; }
  .jn-turn { padding: 0 18px; gap: 14px; }
  .jn-cover-line { font-size: 17px; }
  .jn-take p { font-size: 19px; }
}
@media (prefers-reduced-motion: reduce) { .jn-cover img { transition: none; } ::view-transition-old(root), ::view-transition-new(root) { animation: none; } }

/* The site's own page gutter and rounded photo corners belong to the rest of the site; the magazine is full-bleed and square, as in Studio Suite. */
body.jn-body { padding-left: 0 !important; padding-right: 0 !important; }
.jn img { border-radius: 0 !important; }

/* HyperShare on The Edit: a Share mark on every photograph, top right so it never sits on the credit pill.
   The card it makes links back to the story on this page. */
.jn .jn-share { top: 12px; bottom: auto; right: 12px; }
.jn-hero-share { position: absolute; top: 108px; right: 24px; z-index: 3; }
.jn-hero-share .jn-share { position: static; opacity: 1; transform: none; }
.jn-img-wrap .jn-share { z-index: 4; }
@media (hover: none) { .jn .jn-share { top: 10px; right: 10px; } }
.jn-credits { font-family: var(--font-sans, 'Inter'), system-ui, sans-serif !important; font-size: 12.5px !important; line-height: 1.6 !important; margin-top: 18px !important; }
.jn-credits a { color: var(--jn-accent); }

/* Phones: every text link is a comfortable 44px tall for a thumb, and the smallest labels step up a touch. */
@media (max-width: 640px) {
  .jn-feature-links { gap: 4px 26px; margin-top: 22px; }
  .jn-feature-links a, .jn-card-links a { display: inline-flex; align-items: center; min-height: 44px; }
  .jn-feature-links a { border-bottom: 0; text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
  .jn-card-links { margin-top: 6px; }
  .jn-credit { font-size: 10.5px; }
  .jn-eyebrow, .jn-tall-cat { font-size: 11.5px; }
  .jn-hero-share { top: 88px; right: 16px; }
}
