/*
Theme Name: Corey Sinclair v2
Description: Editorial journalist portfolio. v2.5.2 — removes the dark band between nav and carousel; slides go full-bleed under the (opaque) nav and center-content respects nav height.
Author: Corey Sinclair
Version: 2.5.2
License: Private
Text Domain: corey-sinclair-v2
Template: generatepress
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;700;900&family=Barlow:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap');

/* ─── DESIGN TOKENS ─── */
/* Editorial portfolio system. Type scale = 1.25 (major third) from a 16px base.
   No #000/#fff — every neutral tints toward gold. Spacing on a 4px grid. */
:root {
  /* ── colour: tinted neutrals + one accent ── */
  --cream:    #F5F0E8;
  --ink:      #1A1A1A;
  --ink-deep: #121110;   /* sections needing more depth than --ink */
  --ink-rise: #232220;   /* panels/cards on --ink */
  --gold:     #B8860B;
  --gold-lo:  #8B6708;   /* darker accent for hover/borders */

  /* alpha variants kept (used widely) */
  --ink-10: rgba(26,26,26,0.10);
  --ink-15: rgba(26,26,26,0.15);
  --ink-60: rgba(26,26,26,0.60);
  --c-06: rgba(245,240,232,0.06);
  --c-08: rgba(245,240,232,0.08);
  --c-12: rgba(245,240,232,0.12);
  --c-22: rgba(245,240,232,0.22);
  --c-45: rgba(245,240,232,0.45);
  --c-60: rgba(245,240,232,0.60);
  --c-75: rgba(245,240,232,0.75);
  --c-90: rgba(245,240,232,0.90);

  /* ── typography ── */
  --bc:   'Barlow Condensed', sans-serif;
  --body: 'Barlow', sans-serif;

  /* Type scale (1.25 ratio, 16px base). Use these EVERYWHERE.
     Going up:   xs 13 · sm 14 · base 16 · md 20 · lg 25 · xl 31 · 2xl 39 · 3xl 49 · 4xl 61 · 5xl 76 · 6xl 95
     Display sizes use clamp() so they scale with viewport. */
  --fs-xs:    0.8125rem;   /* 13px — micro labels, meta */
  --fs-sm:    0.875rem;    /* 14px — captions, table cells */
  --fs-base:  1rem;        /* 16px — body */
  --fs-md:    1.125rem;    /* 18px — lead paragraph */
  --fs-lg:    1.25rem;     /* 20px — sub-heading */
  --fs-xl:    1.5625rem;   /* 25px — H4 */
  --fs-2xl:   1.9375rem;   /* 31px — H3 */
  --fs-3xl:   2.4375rem;   /* 39px — H2 */
  --fs-4xl:   3.0625rem;   /* 49px — section opener */
  --fs-5xl:   clamp(2.75rem, 5.5vw, 4.75rem);  /* H1 / hub outlet name */
  --fs-6xl:   clamp(3.5rem, 8vw,   6rem);      /* hero / carousel display */

  /* Eyebrow / micro-label is its own slot — letter-spacing makes 13px feel right */
  --fs-eyebrow: 0.8125rem;

  /* Line heights */
  --lh-tight:  0.95;       /* display */
  --lh-snug:   1.2;        /* sub-display */
  --lh-base:   1.65;       /* body */
  --lh-loose:  1.8;        /* long-form editorial */

  /* Letter spacing */
  --ls-display: -0.01em;
  --ls-eyebrow: 0.22em;
  --ls-label:   0.14em;
  --ls-meta:    0.16em;

  /* ── spacing (4px grid) ── */
  --s-1: 0.25rem;   /*  4 */
  --s-2: 0.5rem;    /*  8 */
  --s-3: 0.75rem;   /* 12 */
  --s-4: 1rem;      /* 16 */
  --s-5: 1.5rem;    /* 24 */
  --s-6: 2rem;      /* 32 */
  --s-7: 2.5rem;    /* 40 */
  --s-8: 3rem;      /* 48 */
  --s-9: 4rem;      /* 64 */
  --s-10: 5rem;     /* 80 */
  --s-11: 6rem;     /* 96 */
  --s-12: 8rem;     /* 128 */

  /* Page rhythm helpers */
  --gutter: clamp(1.25rem, 4vw, 3.5rem);  /* outer page padding */
  --gutter-lg: clamp(1.5rem, 6vw, 5rem);  /* wider sidebar-edge breathing */

  /* ── layout ── */
  --nav-h: 50px;        /* reverted: user preferred original size */
  --max:   1200px;
  --max-wide: 1320px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
svg { display: block; }

/* ─── TYPE UTILITIES ─── */
.bc900 {
  font-family: var(--bc);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.bc700 {
  font-family: var(--bc);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bc400 {
  font-family: var(--bc);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.20em;
}
.eyebrow {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.gold-rule {
  width: 34px;
  height: 2px;
  background: var(--gold);
  display: block;
}

/* ════════════════════════════════════════
   NAVIGATION
════════════════════════════════════════ */
#site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(26,26,26,0.96);
  border-bottom: 0.5px solid rgba(245,240,232,0.08);
  transition: background 0.3s;
}
/* Landing + about: transparent so hero bleeds through, darkens on scroll */
body.page-landing #site-nav,
body.page-about   #site-nav {
  background: transparent;
  border-bottom-color: transparent;
}
#site-nav.scrolled {
  background: rgba(26,26,26,0.96) !important;
  border-bottom-color: rgba(245,240,232,0.08) !important;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  position: relative;
}
.nav-logo {
  position: absolute;
  left: 32px;
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-base);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
/* Hide on landing/about where hero name takes over — shows on scroll */
body.page-landing .nav-logo,
body.page-about   .nav-logo {
  opacity: 0;
  pointer-events: none;
}
#site-nav.scrolled .nav-logo {
  opacity: 1 !important;
  pointer-events: auto !important;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 0;
}
.nav-menu li a {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-base);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  padding: 4px 22px;
  border-right: 0.5px solid rgba(245,240,232,0.10);
  display: block;
  transition: color 0.2s;
}
.nav-menu li:first-child a { border-left: 0.5px solid rgba(245,240,232,0.10); }
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a { color: var(--cream); }

/* Nav text is always cream on dark nav */
#site-nav.scrolled .nav-menu li a { color: rgba(245,240,232,0.55); border-color: rgba(245,240,232,0.10); }
#site-nav.scrolled .nav-menu li a:hover { color: var(--cream); }

.nav-toggle {
  display: none;
  position: absolute;
  right: 20px;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  display: block;
  background: var(--cream);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .nav-logo { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    padding: 20px 0 40px;
    display: none;
  }
  .nav-menu.open { display: flex; }
  .nav-menu li a {
    color: rgba(245,240,232,0.6) !important;
    border: none !important;
    padding: 14px 36px;
    font-size: var(--fs-lg);
  }
  .nav-menu li a:hover { color: var(--cream) !important; }
}

/* ════════════════════════════════════════
   PAGE WRAP
════════════════════════════════════════ */
.page-wrap { padding-top: var(--nav-h); }
body.page-landing .page-wrap,
body.page-about   .page-wrap { padding-top: 0; }

/* ════════════════════════════════════════
   FULL-WIDTH CAROUSEL (shared all pages)
════════════════════════════════════════ */
.page-carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 520px;
  max-height: 900px;
  overflow: hidden;
  background: #0a0a0a;
}
/* About + sub pages shorter carousel */
.page-carousel.carousel-short {
  height: 240px;
  min-height: 200px;
  max-height: 300px;
}
/* Hub pages medium */
.page-carousel.carousel-mid {
  height: 280px;
  min-height: 240px;
  max-height: 340px;
}
/* Fit-to-image mode: slide sizes to its image's aspect ratio,
   no cropping. Activated per slide via JSON `fit:"image"`. */
.page-carousel.carousel-fit {
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 16 / 9;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}
.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.carousel-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.carousel-slide.fit-image .carousel-slide-bg {
  /* Show the whole image, no cropping. Letterboxes with the slide's background colour. */
  background-size: contain;
  transform: none;
}
.carousel-slide.fit-image.active .carousel-slide-bg { transform: none; }
.carousel-slide.active .carousel-slide-bg { transform: scale(1); }

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.92) 0%, rgba(26,26,26,0.25) 60%, transparent 100%);
}
.carousel-bleed {
  position: absolute;
  pointer-events: none;
  font-family: var(--bc);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.01em;
}
.carousel-bleed.top-left  { top: -0.1em;  left: -0.04em; font-size: var(--fs-6xl); }
.carousel-bleed.bot-right { bottom: -0.12em; right: -0.04em; font-size: var(--fs-6xl); }

.carousel-content-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 4;
  text-align: center;
  padding: calc(var(--nav-h) + 24px) 24px 24px;
}
.carousel-content-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px clamp(28px, 5vw, 80px) 80px;
  z-index: 4;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Carousel UI */
.carousel-ui {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel-btn {
  width: 32px; height: 32px;
  border: 0.5px solid rgba(245,240,232,0.3);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  transition: border-color 0.2s, background 0.2s;
  font-size: var(--fs-sm);
}
.carousel-btn:hover { border-color: rgba(245,240,232,0.7); background: rgba(245,240,232,0.08); }
.carousel-dots { display: flex; gap: 9px; align-items: center; }
.carousel-dot {
  /* hard reset against parent theme button styles */
  width: 7px !important;
  height: 7px !important;
  min-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(245,240,232,0.30);
  cursor: pointer;
  border: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 auto;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.35); }
/* Static rule line beneath the carousel, separating it from page content. */
.carousel-rule {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c-12);
  z-index: 5;
}

/* Carousel text styles */
.c-hero-name {
  font-size: var(--fs-6xl);
  color: var(--cream);
  line-height: 0.85;
  display: block;
}
.c-hero-name em { color: var(--gold); font-style: normal; }
.c-hero-rule { width: 38px; height: 2px; background: var(--gold); margin: 16px auto; }
.c-hero-roles {
  font-family: var(--bc);
  font-weight: 400;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
}
.c-slide-title {
  font-size: var(--fs-5xl);
  color: var(--cream);
  line-height: 0.9;
}
.c-slide-sub {
  font-family: var(--bc);
  font-weight: 400;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  display: block;
  margin-top: 10px;
}

/* ════════════════════════════════════════
   LOGO STRIP
════════════════════════════════════════ */
/* ════════════════════════════════════════
   LANDING INTRO — 2×2 photo + text
   Photo cell can sit in any of the four corners (admin setting).
   Defaults to top-left.
════════════════════════════════════════ */
.landing-intro {
  background: var(--ink);
  padding: var(--s-10) var(--gutter);
  border-top: 0.5px solid var(--c-08);
}
.landing-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s-7);
  max-width: var(--max);
  margin: 0 auto;
}
.li-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}
.li-cell--photo {
  background-color: var(--ink-rise);
  background-size: cover;
  background-position: center;
  position: relative;
  align-items: center;
  justify-content: center;
}
.li-photo-placeholder {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-45);
}
.li-cell--text {
  padding: var(--s-4) var(--s-2);
}
.li-cell--text .eyebrow {
  color: var(--gold);
  margin-bottom: var(--s-3);
}
.li-title {
  font-family: var(--bc);
  font-weight: 900;
  text-transform: uppercase;
  font-size: var(--fs-2xl);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-display);
  color: var(--cream);
  margin-bottom: var(--s-3);
}
.li-title em { color: var(--gold); font-style: normal; }
.li-cell--text .gold-rule {
  margin-bottom: var(--s-4);
}
.li-body {
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--c-75);
  max-width: 56ch;
}
.li-body p + p { margin-top: var(--s-3); }

/* Photo position (admin setting). Default = top-left.
   The photo cell is always the first DOM child; we use grid-area to place it. */
.landing-intro .li-cell--photo { grid-area: 1 / 1; }
.landing-intro.photo-tr .li-cell--photo { grid-area: 1 / 2; }
.landing-intro.photo-bl .li-cell--photo { grid-area: 2 / 1; }
.landing-intro.photo-br .li-cell--photo { grid-area: 2 / 2; }

@media (max-width: 760px) {
  .landing-intro { padding: var(--s-8) var(--gutter); }
  .landing-intro-grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .landing-intro .li-cell--photo,
  .landing-intro.photo-tr .li-cell--photo,
  .landing-intro.photo-bl .li-cell--photo,
  .landing-intro.photo-br .li-cell--photo { grid-area: auto; }
  .li-cell { min-height: 240px; }
}

.logo-strip {
  background: var(--cream);
  overflow: hidden;
  border-top: 0.5px solid var(--ink-10);
  position: relative;
}
.logo-strip::before, .logo-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.logo-strip::before { left: 0; background: linear-gradient(to right, var(--cream), transparent); }
.logo-strip::after  { right: 0; background: linear-gradient(to left, var(--cream), transparent); }
.logo-strip-track {
  display: flex;
  animation: logoScroll 26s linear infinite;
  width: max-content;
}
.logo-strip-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-strip-item {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.38);
  padding: 15px 30px;
  border-right: 0.5px solid rgba(26,26,26,0.08);
  white-space: nowrap;
  display: block;
  transition: color 0.2s;
}
.logo-strip-item:hover { color: var(--ink); }

/* ════════════════════════════════════════
   HUB PAGES
════════════════════════════════════════ */
.hub-section {
  border-top: 0.5px solid rgba(245,240,232,0.07);
  padding: 44px 40px;
}
.hub-section:last-child { border-bottom: 0.5px solid rgba(245,240,232,0.07); }

.outlet-heading {
  font-size: var(--fs-5xl);
  color: var(--cream);
  line-height: 0.88;
  margin-bottom: 0;
}
.outlet-heading em { font-style: normal; }
.outlet-divider {
  width: 100%;
  height: 0.5px;
  background: rgba(245,240,232,0.10);
  margin: 14px 0 28px;
}
.outlet-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: center;
}
.outlet-layout.flip { direction: rtl; }
.outlet-layout.flip > * { direction: ltr; }

/* Meta table — condensed */
.meta-tbl {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 10px;
}
.meta-tbl td {
  padding: 4px 0;
  font-size: var(--fs-sm);
  border-bottom: 0.5px solid rgba(245,240,232,0.06);
  vertical-align: top;
}
.meta-tbl td:first-child {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
  width: 36%;
  padding-right: 10px;
}
.meta-tbl td:last-child { color: rgba(245,240,232,0.80); font-weight: 300; }

/* Reverse meta table on flipped rows: labels on the right (hugging inner edge), values on the left. */
.hub-row.flip .meta-tbl tr {
  display: flex;
  flex-direction: row-reverse;
  border-bottom: 0.5px solid rgba(245,240,232,0.06);
}
.hub-row.flip .meta-tbl td {
  border-bottom: none;
}
.hub-row.flip .meta-tbl td:first-child { /* the LABEL — now on the right */
  text-align: right;
  padding-right: 0;
  padding-left: 10px;
  flex: 0 0 36%;
}
.hub-row.flip .meta-tbl td:last-child { /* the VALUE — now on the left */
  text-align: left;
  flex: 1 1 auto;
}
.outlet-blurb {
  font-size: var(--fs-md);
  line-height: 1.62;
  color: rgba(245,240,232,0.52);
  font-weight: 300;
  margin: 10px 0 12px;
}
.outlet-link {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-meta);
  text-transform: uppercase;
  color: #ffffff;
  /* Solid coloured rectangle: background colour is set inline per-outlet via accent */
  background: var(--gold);     /* fallback if inline not provided */
  border: none;
  padding: 12px 22px;
  display: inline-block;
  text-align: center;
  line-height: 1;
}
.outlet-link:hover { color: #ffffff; }  /* no hover transition */

@media (max-width: 768px) {
  .outlet-layout, .outlet-layout.flip { grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .hub-section { padding: 36px 24px; }
}

/* ════════════════════════════════════════
   TV FRAME SVG wrapper
════════════════════════════════════════ */
.device-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 8px 0;
}
.device-wrap svg { overflow: visible; }

/* ════════════════════════════════════════
   PRINT COVERS — angled stack
════════════════════════════════════════ */
.covers-wrap { display: flex; justify-content: center; align-items: center; padding: 8px 0; }
.covers-stage { position: relative; width: 220px; height: 264px; }
.cover-main {
  position: absolute;
  top: 0; left: 0;
  width: 156px; height: 208px;
  box-shadow: 6px 8px 28px rgba(0,0,0,0.65);
  transform: rotate(-4deg);
  transform-origin: center;
  overflow: hidden;
}
.cover-main img, .cover-sec img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}

.cover-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 118px; height: 157px;
  box-shadow: 4px 6px 20px rgba(0,0,0,0.55);
  border: 3px solid var(--ink);
  transform: rotate(3.5deg);
  transform-origin: center;
  overflow: hidden;
}

/* ════════════════════════════════════════
   OUTLET DETAIL PAGES (Star Observer etc.)
════════════════════════════════════════ */
.outlet-meta-block {
  display: grid;
  grid-template-columns: 260px 1fr;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding-left: var(--gutter-lg);
  padding-right: var(--gutter-lg);
  gap: var(--s-7);
}
/* Mirrored layout: sidebar on the right. Toggle by adding .sidebar-right
   on .outlet-meta-block (the WP per-page setting controls this). */
.outlet-meta-block.sidebar-right {
  grid-template-columns: 1fr 260px;
}
.outlet-meta-block.sidebar-right .outlet-sidebar { order: 2; }
.outlet-meta-block.sidebar-right .outlet-editorial { order: 1; }

.outlet-sidebar {
  padding: var(--s-7) var(--s-6);
}
.outlet-sidebar .s-label {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-md);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  opacity: 0.92;
  display: block;
  margin-bottom: var(--s-1);
}
.outlet-sidebar .s-value {
  font-style: normal;
  font-weight: 400;
  font-size: var(--fs-base);
  display: block;
  margin-bottom: var(--s-5);
  opacity: 0.85;
}
.outlet-sidebar .s-value.big {
  font-family: var(--bc);
  font-weight: 900;
  font-style: normal;
  font-size: var(--fs-xl);
  margin-bottom: var(--s-5);
  line-height: var(--lh-snug);
}
.outlet-sidebar .s-divider {
  height: 0.5px;
  background: currentColor;
  opacity: 0.22;
  margin: var(--s-5) 0;
}
.outlet-editorial {
  padding: 36px 40px;
}
.outlet-editorial .ed-label {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
  opacity: 0.55;
}
.outlet-editorial .ed-title {
  font-size: var(--fs-4xl);
  line-height: 1;
  margin-bottom: 12px;
}
.outlet-editorial .ed-rule {
  width: 26px; height: 2px;
  background: currentColor;
  opacity: 0.4;
  margin-bottom: 18px;
  display: block;
}
.outlet-editorial p {
  font-size: var(--fs-md);
  line-height: 1.75;
  opacity: 0.82;
  margin-bottom: 16px;
  max-width: 660px;
}
@media (max-width: 768px) {
  .outlet-meta-block { grid-template-columns: 1fr; }
  .outlet-editorial { padding: 32px 24px; }
}

/* ════════════════════════════════════════
   ISSUE ENTRIES (alternating grid)
════════════════════════════════════════ */
.issues-section {
  padding: 64px 40px;
}
.issues-section-header { margin-bottom: 44px; }
.issues-section-header .eyebrow { opacity: 0.55; margin-bottom: 10px; }
.issues-section-title { font-size: var(--fs-4xl); line-height: 0.9; }

.issue-entry {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 0.5px solid currentColor;
  padding: 40px 0;
  opacity: 0.88;
}
.issue-entry:last-child { border-bottom: 0.5px solid currentColor; }
.issue-entry.flip { direction: rtl; }
.issue-entry.flip > * { direction: ltr; }

.issue-covers {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-right: 32px;
}
.issue-entry.flip .issue-covers { padding-right: 0; padding-left: 32px; }
.issue-cover-img {
  flex: 0 0 auto;
  width: 130px;
  box-shadow: 3px 5px 16px rgba(0,0,0,0.22);
  transition: transform 0.3s;
}
.issue-cover-img:hover { transform: translateY(-4px) rotate(1deg); }
.issue-cover-img img { width: 100%; display: block; }
.issue-cover-img.secondary { margin-top: 18px; width: 104px; opacity: 0.80; }

.issue-text { display: flex; flex-direction: column; justify-content: center; padding: 12px 0; }
.issue-date {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.20em;
  text-transform: uppercase;
  opacity: 0.38;
  display: block;
  margin-bottom: 9px;
}
.issue-title { font-size: var(--fs-3xl); margin-bottom: 5px; line-height: 0.95; }
.issue-subtitle {
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-sm);
  opacity: 0.55;
  display: block;
  margin-bottom: 12px;
}
.issue-rule-line { width: 24px; height: 2px; margin-bottom: 12px; display: block; }
.issue-body { font-size: var(--fs-md); line-height: 1.70; opacity: 0.76; max-width: 420px; }

@media (max-width: 768px) {
  .issue-entry, .issue-entry.flip { grid-template-columns: 1fr; direction: ltr; gap: 24px; }
  .issue-covers, .issue-entry.flip .issue-covers { padding: 0; }
  .issues-section { padding: 52px 24px; }
}

/* ════════════════════════════════════════
   ABOUT PAGE
════════════════════════════════════════ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.about-split-left {
  padding: 60px 52px 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-gold-line { width: 32px; height: 0.5px; background: var(--gold); margin-bottom: 24px; }
.about-intro {
  font-size: var(--fs-lg);
  font-style: italic;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(245,240,232,0.75);
  max-width: 460px;
  margin-bottom: 20px;
}
.about-rule { width: 34px; height: 2px; background: var(--gold); }
.about-split-right {
  position: relative;
  overflow: hidden;
  background: #111;
}
.about-right-bg {
  position: absolute;
  inset: 0;
}
.about-right-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.about-name-bleed {
  position: absolute;
  bottom: -0.1em; right: -0.04em;
  font-size: var(--fs-6xl);
  color: rgba(245,240,232,0.05);
  pointer-events: none;
  z-index: 1;
}
.polaroids-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pol-stage { position: relative; width: 280px; height: 320px; }
.polaroid {
  position: absolute;
  background: #fff;
  padding: 8px 8px 32px;
  box-shadow: 4px 8px 24px rgba(0,0,0,0.6);
}
.polaroid-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  background: #444;
}
.polaroid-caption {
  font-family: var(--bc);
  font-weight: 400;
  font-size: var(--fs-xs);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #555;
  text-align: center;
  margin-top: 6px;
}
.polaroid:nth-child(1) { width: 180px; height: 215px; top: 10px; left: 0; transform: rotate(-4deg); }
.polaroid:nth-child(2) { width: 148px; height: 175px; top: 120px; left: 118px; transform: rotate(3deg); }

.about-body-wrap {
  background: var(--cream);
  color: var(--ink);
  padding: 64px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.about-body-wrap p {
  font-size: var(--fs-md);
  line-height: 1.78;
  color: #3a3a3a;
  margin-bottom: 16px;
}
.about-drop::first-letter {
  font-family: var(--bc);
  font-weight: 900;
  font-size: 4.8em;
  line-height: 0.75;
  float: left;
  margin-right: 6px;
  margin-top: 4px;
  color: var(--gold);
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .about-split { grid-template-columns: 1fr; }
  .about-split-right { min-height: 360px; }
  .about-body-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* About page — full-width content area for Custom HTML blocks
   Sits outside the constrained about-body-wrap grid             */
.about-page-content {
  width: 100%;
  background: var(--ink);
  color: var(--cream);
  /* Reset any inherited cream/light styles from above */
  font-family: var(--body);
  font-size: var(--fs-md);
  line-height: 1.75;
}
/* Neutralise WP block wrapper padding */
.about-page-content > .wp-block-group,
.about-page-content > .wp-block-group__inner-container {
  padding: 0;
  margin: 0;
  max-width: none;
}
/* Paragraphs inside page content area keep cream text */
.about-page-content p {
  color: rgba(245,240,232,0.75);
  margin-bottom: 16px;
}


/* Logo strip image variant */
.logo-img {
  height: 24px !important;
  max-height: 24px !important;
  width: auto !important;
  max-width: none;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.25s;
}
.logo-strip-item:hover .logo-img {
  filter: grayscale(0%) opacity(1);
}

/* Outlet info column (used in hub-outlet-row.php) */
.outlet-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
#site-footer {
  background: var(--ink);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--gold);
}
.footer-logo { font-size: var(--fs-xl); color: var(--cream); }
.footer-logo em { color: var(--gold); font-style: normal; }
.footer-copy {
  font-family: var(--bc);
  font-weight: 400;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.32);
}
.footer-links { display: flex; gap: 22px; list-style: none; }
.footer-links a {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
@media (max-width: 640px) {
  #site-footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 24px; }
}

/* ════════════════════════════════════════
   BACK LINK
════════════════════════════════════════ */
.back-link-bar {
  text-align: center;
  padding: 14px 32px;
  border-top: 0.5px solid currentColor;
  opacity: 0.25;
}
.back-link-bar a {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.back-link-bar a:hover { opacity: 0.7; }

/* ════════════════════════════════════════
   ANIMATIONS
════════════════════════════════════════ */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
   STAR OBSERVER — ISSUES GRID
════════════════════════════════════════ */
.so-issues-wrap {
  background: var(--ink);
  color: var(--cream);
}
.so-issues-header {
  padding: 56px clamp(28px, 5vw, 80px) 32px;
  border-bottom: 0.5px solid rgba(245,240,232,0.08);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.so-issues-title {
  font-size: var(--fs-4xl);
  line-height: 1.05;
  margin-top: 8px;
}
.so-issues-title em { font-style: italic; }
.so-issues-rule {
  width: 28px; height: 2px;
  display: block;
  margin-top: 14px;
}

/* Year divider */
.so-year-div {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px clamp(28px, 5vw, 80px);
  background: rgba(245,240,232,0.02);
  border-bottom: 0.5px solid rgba(245,240,232,0.06);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.so-year-lbl {
  font-family: var(--bc);
  font-weight: 900;
  font-size: var(--fs-5xl);
  color: rgba(245,240,232,0.06);
  line-height: 1;
  text-transform: uppercase;
}
.so-year-rule {
  flex: 1;
  height: 0.5px;
  background: rgba(245,240,232,0.07);
}

/* Issue row — full-width two equal columns, same background */
.so-issue-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border-bottom: 0.5px solid rgba(245,240,232,0.08);
  background: var(--ink);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
/* Flip: swap column order */
.so-issue-row.flip .so-cover-cell { order: 2; }
.so-issue-row.flip .so-text-cell  { order: 1; }

/* Cover cell */
.so-cover-cell {
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 52px;
}

/* Single square cover */
.so-cov-single {
  position: relative;
  width: 210px;
  height: 210px;
  box-shadow: 6px 10px 36px rgba(0,0,0,0.75);
  transform: rotate(-2.5deg);
  transform-origin: center center;
  flex-shrink: 0;
  overflow: hidden;
}

/* Stacked covers */
.so-cov-stack {
  position: relative;
  width: 250px;
  height: 250px;
  flex-shrink: 0;
}
.so-cov-main {
  position: absolute;
  top: 0; left: 0;
  width: 196px; height: 196px;
  box-shadow: 6px 10px 36px rgba(0,0,0,0.75);
  transform: rotate(-3.5deg);
  transform-origin: center center;
  overflow: hidden;
}
.so-cov-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 148px; height: 148px;
  box-shadow: 4px 8px 24px rgba(0,0,0,0.7);
  border: 3px solid var(--ink);
  transform: rotate(3deg);
  transform-origin: center center;
  overflow: hidden;
}

/* Real images inside covers */
.so-cov-single img,
.so-cov-main img,
.so-cov-sec img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Text cell */
.so-text-cell {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px clamp(28px, 4vw, 56px);
}
.so-iss-date {
  font-family: var(--bc);
  font-weight: 900;
  font-size: var(--fs-3xl);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(245,240,232,0.18);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.so-iss-title {
  font-size: var(--fs-4xl);
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 10px;
}
.so-iss-star {
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-md);
  color: rgba(245,240,232,0.46);
  display: block;
  margin-bottom: 18px;
}
.so-iss-rule {
  width: 28px; height: 2px;
  display: block;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.so-iss-body {
  font-size: var(--fs-md);
  line-height: 1.72;
  color: rgba(245,240,232,0.60);
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 20px;
}
.so-iss-link {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.42);
  border-bottom: 1.5px solid;
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.2s;
  align-self: flex-start;
}
.so-iss-link:hover { color: var(--cream); }

@media (max-width: 768px) {
  .so-issue-row,
  .so-issue-row.flip .so-cover-cell,
  .so-issue-row.flip .so-text-cell {
    grid-template-columns: 1fr;
    order: unset;
  }
  .so-issue-row { grid-template-columns: 1fr; }
  .so-cover-cell,
  .so-text-cell { padding: 36px 24px; }
  .so-issues-header { padding: 40px 24px 24px; }
}

/* ════════════════════════════════════════
   HUB PAGES — STACKED HEADER + 2-COL BODY
   Outlet name spans both columns at the top.
   Visual (covers/device) and editorial info beneath.
════════════════════════════════════════ */
.hub-row {
  display: grid;
  grid-template-rows: auto 1fr;
  border-top: 0.5px solid var(--c-08);
  padding: var(--s-9) 0 var(--s-10);
  position: relative;
  overflow: hidden;
}

/* Full-width outlet name header — spans both columns */
.hub-outlet-header {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--gutter) var(--s-8);
  max-width: var(--max-wide);
  margin: 0 auto;
  width: 100%;
}
.hub-outlet-name-text {
  font-size: var(--fs-6xl);
  font-family: var(--bc);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: var(--ls-display);
  line-height: var(--lh-tight);
  color: var(--c-90);
  margin: 0;
}
.hub-outlet-name-text em { font-style: normal; }
/* Optional outlet logo image — replaces styled text when present */
.hub-outlet-logo {
  max-width: min(640px, 80vw);
  max-height: 140px;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hub-outlet-name-rule {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: var(--s-4) 0;
}
.hub-outlet-name-sub {
  font-family: var(--bc);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--c-60);
}

/* Body: 2-col visual | info beneath the header */
.hub-body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-8);
  align-items: center;
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  position: relative;
  z-index: 2;
}
.hub-row.flip .hub-body { grid-template-columns: 1fr 1.1fr; }
.hub-row.flip .hub-visual { order: 2; }
.hub-row.flip .hub-info   { order: 1; }

/* Visual column — covers / device live here, large and prominent */
.hub-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: var(--s-5) 0;
  color: inherit;
  text-decoration: none;
}
a.hub-visual { cursor: pointer; }
a.hub-visual:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 6px;
  border-radius: 2px;
}
a.hub-visual .hub-device { transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
a.hub-visual:hover .hub-device { transform: translateY(-6px); }

/* Info column */
.hub-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--s-6) 0;
  text-align: left;        /* default: info sits on the right of the row, content hugs left (inner) edge */
  align-items: flex-start;
}
.hub-row.flip .hub-info {
  text-align: right;        /* flipped: info on the left of the row, content hugs right (inner) edge */
  align-items: flex-end;
}
.hub-info > * { max-width: 56ch; }

/* Print covers — bigger, more prominent */
.hub-covers-stage {
  position: relative;
  width: 460px;
  height: 520px;
  margin: 0 auto;
}
.hub-cover-main {
  position: absolute;
  top: 0; left: 0;
  width: 270px; height: 450px;     /* 3:5 newspaper proportion */
  box-shadow: 12px 14px 44px rgba(0,0,0,0.78);
  transform: rotate(-4deg);
  transform-origin: center center;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}
.hub-cover-main:hover {
  transform: rotate(-2deg) translateY(-8px);
  box-shadow: 14px 20px 56px rgba(0,0,0,0.85);
  z-index: 3;
}
.hub-cover-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 210px; height: 350px;     /* 3:5 newspaper proportion */
  box-shadow: 6px 8px 26px rgba(0,0,0,0.68);
  border: 4px solid var(--ink-deep);
  transform: rotate(3.5deg);
  transform-origin: center center;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s ease;
}
.hub-cover-sec:hover {
  transform: rotate(1deg) translateY(-8px);
  box-shadow: 10px 14px 38px rgba(0,0,0,0.78);
  z-index: 3;
}
.hub-cover-main img,
.hub-cover-sec img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Device sizing — larger TV/laptop on hubs */
.hub-device { display: flex; justify-content: center; }
.hub-device svg { width: clamp(240px, 32vw, 360px); height: auto; }

@media (max-width: 900px) {
  .hub-row { padding: var(--s-7) 0 var(--s-8); }
  .hub-body, .hub-row.flip .hub-body { grid-template-columns: 1fr; gap: var(--s-6); }
  .hub-row.flip .hub-visual, .hub-row.flip .hub-info { order: initial; }
  .hub-visual { min-height: 320px; }
  .hub-info { padding: 0; }
  .hub-info > * { max-width: 100%; }
  .hub-covers-stage { width: 340px; height: 400px; }
  .hub-cover-main { width: 200px; height: 333px; }
  .hub-cover-sec  { width: 150px; height: 250px; }
}


/* ════════════════════════════════════════
   OUTLET EDITORIAL — dark theme overrides
   (styles defined above in outlet detail section)
════════════════════════════════════════ */
