/* ============================================================
   OFFICIAL BESPOKE — magazine theme v2
   Faithful clone of the original Hague WordPress layout.
   Pure white background, Playfair Display + Source Sans Pro,
   one-row header, full-width hero with overlay, sidebar layout.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  --bsp-paper: #ffffff;
  --bsp-paper-soft: #f8f8f8;
  --bsp-ink: #1a1a1a;
  --bsp-ink-pure: #000000;
  --bsp-muted: #6b6258;
  --bsp-muted-cool: #575757;
  --bsp-rule: #e7e1d6;
  --bsp-rule-strong: #cecece;
  --bsp-accent: #c4a942;
  --bsp-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --bsp-sans: 'Source Sans Pro', system-ui, -apple-system, sans-serif;
}

html { font-size: 16px; }
body {
  font-family: var(--bsp-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--bsp-ink);
  background: var(--bsp-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--bsp-muted); }
h1, h2, h3, h4, h5, h6 { font-family: var(--bsp-serif); font-weight: 600; margin: 0; letter-spacing: -0.005em; color: var(--bsp-ink); }
ul { list-style: none; padding: 0; margin: 0; }

.bsp-viewport { background: var(--bsp-paper); }

/* ---------- Category chip ---------- */
.bsp-category-chip {
  display: inline-block;
  font-family: var(--bsp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bsp-accent);
  margin-bottom: 10px;
}
.bsp-chip-on-image {
  background: var(--bsp-accent);
  color: var(--bsp-ink);
  padding: 5px 12px;
}
.bsp-chip-small { font-size: 10px; }
.bsp-chip-link:hover { color: var(--bsp-ink); }

/* ============================================================
   HEADER — one-row layout, STICKY
   ============================================================ */
.bsp-header {
  background: var(--bsp-paper);
  border-bottom: 1px solid var(--bsp-rule);
  position: sticky;
  top: 0;
  z-index: 200;
  /* Tiny shadow on scroll for separation */
  box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.2s;
}
.bsp-header.is-scrolled {
  box-shadow: 0 1px 0 var(--bsp-rule), 0 4px 16px rgba(0,0,0,0.04);
}
.bsp-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.bsp-burger {
  display: none;
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: 36px;
  height: 36px;
}
.bsp-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--bsp-ink);
  margin: 4px 0;
}

.bsp-logo {
  display: inline-block;
  color: var(--bsp-ink-pure);
  flex-shrink: 0;
}
.bsp-logo img { height: 28px; width: auto; display: block; }
.bsp-wordmark {
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.22em;
  font-size: 18px;
  text-transform: uppercase;
}
.bsp-wordmark strong { font-weight: 800; }

/* Primary nav inline */
.bsp-nav { display: flex; justify-content: flex-end; }
.bsp-nav-list { display: flex; gap: 0; }
.bsp-nav-item { position: relative; }
.bsp-nav-item > a,
.bsp-nav-item .bsp-nav-item-row > a {
  display: block;
  padding: 12px 18px;
  font-family: var(--bsp-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bsp-ink);
  text-decoration: none;
  transition: color 0.15s;
}
.bsp-nav-item > a:hover,
.bsp-nav-item .bsp-nav-item-row > a:hover { color: var(--bsp-accent); }
.bsp-nav-item.has-sub > a::after,
.bsp-nav-item.has-sub .bsp-nav-item-row > a::after {
  content: '';
  display: inline-block;
  width: 4px; height: 4px;
  border-right: 1px solid var(--bsp-muted);
  border-bottom: 1px solid var(--bsp-muted);
  transform: rotate(45deg);
  margin-left: 4px;
  vertical-align: 3px;
}
.bsp-subnav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bsp-paper);
  border: 1px solid var(--bsp-rule);
  border-top: 2px solid var(--bsp-ink);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, transform 0.15s, visibility 0.15s;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.bsp-nav-item.has-sub:hover > .bsp-subnav,
.bsp-nav-item.has-sub:focus-within > .bsp-subnav {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.bsp-subnav li a {
  display: block;
  padding: 9px 22px;
  font-family: var(--bsp-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsp-muted);
  white-space: nowrap;
}
.bsp-subnav li a:hover { color: var(--bsp-ink); background: var(--bsp-paper-soft); }

/* Right-side actions */
.bsp-actions { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.bsp-search {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--bsp-ink);
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 0.15s;
}
.bsp-search:hover { border-color: var(--bsp-rule-strong); }
.bsp-subscribe {
  font-family: var(--bsp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bsp-paper);
  background: var(--bsp-ink);
  padding: 11px 22px;
  text-decoration: none;
  transition: background 0.15s;
}
.bsp-subscribe:hover { background: var(--bsp-ink-pure); color: var(--bsp-paper); }

/* ============================================================
   HERO — contained within page max-width, wider/shorter aspect
   ============================================================ */
.bsp-hero {
  position: relative;
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 36px;
}
.bsp-hero-link {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--bsp-paper);
  overflow: hidden;
}
.bsp-hero-image {
  width: 100%;
  aspect-ratio: 5 / 2;        /* wider/shorter than 16:9, less tall than current */
  overflow: hidden;
}
.bsp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;  /* bias upward to keep faces in frame */
}
.bsp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.bsp-hero-link:hover .bsp-hero-image img { transform: scale(1.02); }
.bsp-hero-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 56px 64px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0) 100%);
  color: var(--bsp-paper);
  max-width: 70%;
}
.bsp-hero-overlay .bsp-category-chip {
  background: #5dd39e;
  color: var(--bsp-ink);
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  display: inline-block;
}
.bsp-hero-title {
  font-family: var(--bsp-serif);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  margin: 8px 0 0;
  color: var(--bsp-paper);
  letter-spacing: -0.005em;
}

@media (max-width: 900px) {
  .bsp-hero-image { aspect-ratio: 4 / 3; }
  .bsp-hero-overlay { padding: 24px; max-width: 100%; }
  .bsp-hero-title { font-size: 26px; }
}

/* ============================================================
   2-COLUMN LAYOUT — main content + sidebar
   ============================================================ */
.bsp-layout {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 48px;
  align-items: start;
}
.bsp-main { min-width: 0; }
.bsp-sidebar { position: sticky; top: 24px; }

@media (max-width: 900px) {
  .bsp-layout { grid-template-columns: 1fr; gap: 36px; padding: 32px 20px; }
  .bsp-sidebar { position: static; }
}

/* ---------- Section header ---------- */
.bsp-cat-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--bsp-rule-strong);
  padding-bottom: 14px;
  margin: 48px 0 28px;
}
.bsp-cat-header:first-child { margin-top: 0; }
.bsp-cat-header-center { justify-content: center; }
.bsp-cat-title {
  font-family: var(--bsp-sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin: 0;
  color: var(--bsp-ink);
}
.bsp-cat-title-small { font-size: 13px; }
.bsp-cat-all {
  font-family: var(--bsp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bsp-muted);
  border-bottom: 1px solid transparent;
}
.bsp-cat-all:hover { color: var(--bsp-ink); border-bottom-color: var(--bsp-ink); }

/* ============================================================
   EDITOR'S PICKS — 1 big featured + 4 stacked thumbs
   ============================================================ */
.bsp-picks { margin-bottom: 16px; }
.bsp-picks-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}
.bsp-picks-feature { display: block; color: var(--bsp-ink); }
.bsp-picks-feature-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 14px;
}
.bsp-picks-feature-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.bsp-picks-feature:hover .bsp-picks-feature-image img { transform: scale(1.02); }
.bsp-picks-feature-title {
  font-family: var(--bsp-serif);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  margin: 0 0 6px;
}
.bsp-picks-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bsp-picks-thumb {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
  align-items: center;
  color: var(--bsp-ink);
}
.bsp-picks-thumb-image { aspect-ratio: 1/1; overflow: hidden; }
.bsp-picks-thumb-image img { width: 100%; height: 100%; object-fit: cover; }
.bsp-picks-thumb-title {
  font-family: var(--bsp-serif);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 700px) {
  .bsp-picks-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CATEGORY BLOCK — 1 large overlay feature + 3 text-below thumbnails
   ============================================================ */
.bsp-cat-block { margin-bottom: 32px; }
.bsp-cat-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.bsp-feature-tile {
  position: relative;
  display: block;
  color: var(--bsp-paper);
  overflow: hidden;
}
.bsp-feature-tile-large { aspect-ratio: 16 / 9; }
.bsp-feature-tile-image { width: 100%; height: 100%; }
.bsp-feature-tile-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.bsp-feature-tile:hover .bsp-feature-tile-image img { transform: scale(1.04); }
.bsp-feature-tile-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0) 100%);
}
.bsp-feature-tile-overlay .bsp-category-chip {
  color: var(--bsp-ink);
  background: #5dd39e;
  padding: 4px 10px;
  font-weight: 700;
}
.bsp-feature-tile-title {
  font-family: var(--bsp-serif);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bsp-paper);
  margin: 6px 0 0;
  max-width: 24em;
}
.bsp-feature-tile-large .bsp-feature-tile-title { font-size: 36px; }

.bsp-cat-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.bsp-mini-card { display: block; color: var(--bsp-ink); }
.bsp-mini-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 10px;
}
.bsp-mini-image img { width: 100%; height: 100%; object-fit: cover; }
.bsp-mini-title {
  font-family: var(--bsp-serif);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 4px;
}
.bsp-mini-date {
  font-family: var(--bsp-sans);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bsp-muted);
}

@media (max-width: 700px) {
  .bsp-cat-thumbs { grid-template-columns: 1fr; gap: 16px; }
  .bsp-feature-tile-title { font-size: 22px; }
  .bsp-feature-tile-large .bsp-feature-tile-title { font-size: 24px; }
  .bsp-feature-tile-large { aspect-ratio: 4/3; }
}

/* ============================================================
   PLACES BLOCK — 1 large LEFT + 2 stacked smaller RIGHT (text below each)
   ============================================================ */
.bsp-places-3up {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: start;
}
.bsp-places-big { display: block; color: var(--bsp-ink); text-decoration: none; }
.bsp-places-big-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 16px;
}
.bsp-places-big-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.bsp-places-big:hover .bsp-places-big-image img { transform: scale(1.02); }
.bsp-places-big-title {
  font-family: var(--bsp-serif);
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--bsp-ink);
}

.bsp-places-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bsp-places-small { display: block; color: var(--bsp-ink); text-decoration: none; }
.bsp-places-small-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin-bottom: 10px;
}
.bsp-places-small-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.bsp-places-small:hover .bsp-places-small-image img { transform: scale(1.02); }
.bsp-places-small-title {
  font-family: var(--bsp-serif);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--bsp-ink);
}

@media (max-width: 700px) {
  .bsp-places-3up { grid-template-columns: 1fr; }
  .bsp-places-big-title { font-size: 20px; }
}

/* ============================================================
   PEOPLE BLOCK — rotating carousel
   ============================================================ */
.bsp-people-carousel {
  position: relative;
  background: #000;
  overflow: hidden;
}
.bsp-people-slides {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
}
.bsp-people-slide {
  position: absolute;
  inset: 0;
  display: block;
  color: var(--bsp-paper);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  pointer-events: none;
}
.bsp-people-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.bsp-people-slide-image { width: 100%; height: 100%; }
.bsp-people-slide-image img { width: 100%; height: 100%; object-fit: cover; }
.bsp-people-slide-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 48px 56px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 50%, rgba(0,0,0,0) 100%);
  max-width: 75%;
}
.bsp-people-slide-overlay .bsp-category-chip {
  background: #5dd39e;
  color: var(--bsp-ink);
  padding: 5px 12px;
  font-weight: 700;
}
.bsp-people-slide-title {
  font-family: var(--bsp-serif);
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  color: var(--bsp-paper);
  margin: 10px 0 0;
  letter-spacing: -0.005em;
}

.bsp-carousel-dots {
  position: absolute;
  bottom: 18px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 5;
}
.bsp-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.bsp-carousel-dot:hover { background: rgba(255,255,255,0.7); }
.bsp-carousel-dot.is-active { background: #fff; transform: scale(1.3); }

@media (max-width: 700px) {
  .bsp-people-slide-overlay { padding: 24px; max-width: 100%; }
  .bsp-people-slide-title { font-size: 22px; }
  .bsp-people-slides { aspect-ratio: 4 / 3; }
}

/* ============================================================
   SIDEBAR widgets
   ============================================================ */
.bsp-side-widget {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bsp-rule);
}
.bsp-side-widget:last-child { border-bottom: none; }
.bsp-side-title {
  font-family: var(--bsp-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bsp-ink);
  margin: 0 0 18px;
}

/* Issue cover — real magazine cover image + floating pink "Issue 92" badge */
.bsp-side-issue {
  border-bottom: none;
  padding-bottom: 0;
  position: relative;
}
.bsp-issue-cover {
  display: block;
  position: relative;
  width: 100%;
  max-width: 220px;
  margin: 0 auto;
  background: var(--bsp-paper-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}
.bsp-issue-cover img {
  display: block;
  width: 100%;
  height: auto;
}
.bsp-issue-cover:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.18);
}
.bsp-issue-badge {
  position: absolute;
  right: -16px;
  bottom: -22px;
  background: #e63a87;
  color: #fff;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bsp-serif);
  font-style: italic;
  font-size: 16px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 6px 18px rgba(230,58,135,0.4);
  letter-spacing: -0.01em;
  transform: rotate(-3deg);
}

/* Social */
.bsp-side-social li { margin-bottom: 8px; }
.bsp-side-social a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--bsp-rule);
  font-family: var(--bsp-sans);
  font-size: 12px;
  color: var(--bsp-ink);
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.bsp-side-social a:hover { background: var(--bsp-paper-soft); border-color: var(--bsp-ink); }
.bsp-social-name {
  font-weight: 600;
  letter-spacing: 0.05em;
}
.bsp-social-action {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bsp-muted);
}

/* Events */
.bsp-side-events li { margin-bottom: 14px; }
.bsp-side-events a {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  align-items: center;
  color: var(--bsp-ink);
  text-decoration: none;
}
.bsp-side-events img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.bsp-side-event-title {
  font-family: var(--bsp-serif);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

/* Sidebar signup */
.bsp-side-signup p {
  font-family: var(--bsp-sans);
  font-size: 13px;
  color: var(--bsp-muted);
  margin: 0 0 14px;
}
.bsp-side-signup-btn {
  display: block;
  text-align: center;
  background: var(--bsp-ink);
  color: var(--bsp-paper);
  padding: 12px;
  font-family: var(--bsp-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
}

/* ============================================================
   TOP VIDEO — full-width, premium player feel with overlay title
   ============================================================ */
.bsp-top-video-section {
  max-width: 1280px;
  margin: 24px auto 64px;
  padding: 0 36px;
}
.bsp-top-video-feature {
  display: block;
  color: var(--bsp-paper);
  text-decoration: none;
}
.bsp-top-video-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.bsp-top-video-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.bsp-top-video-feature:hover .bsp-top-video-image img { transform: scale(1.03); }

.bsp-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  background: rgba(255,255,255,0.96);
  color: var(--bsp-ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.bsp-video-play svg { display: block; transform: translateX(2px); }
.bsp-top-video-feature:hover .bsp-video-play {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--bsp-accent);
}

.bsp-top-video-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 40px 48px;
  background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.bsp-top-video-title {
  font-family: var(--bsp-serif);
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--bsp-paper);
  margin: 0;
  max-width: 28em;
  letter-spacing: -0.005em;
}

@media (max-width: 700px) {
  .bsp-top-video-section { padding: 0 20px; }
  .bsp-top-video-overlay { padding: 20px 24px; }
  .bsp-top-video-title { font-size: 20px; }
  .bsp-video-play { width: 64px; height: 64px; }
}

/* ============================================================
   ISSUE TEASE band
   ============================================================ */
.bsp-issue-tease {
  background: var(--bsp-paper-soft);
  border-top: 1px solid var(--bsp-rule);
  border-bottom: 1px solid var(--bsp-rule);
  padding: 64px 36px;
  text-align: center;
}
.bsp-issue-tease-inner { max-width: 720px; margin: 0 auto; }
.bsp-issue-tease-eyebrow {
  font-family: var(--bsp-sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--bsp-accent);
  font-weight: 700;
  display: block;
  margin-bottom: 14px;
}
.bsp-issue-tease-title {
  font-family: var(--bsp-serif);
  font-size: 38px;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 14px;
}
.bsp-issue-tease-text {
  font-family: var(--bsp-sans);
  font-size: 16px;
  color: var(--bsp-muted);
  margin: 0 auto 28px;
}
.bsp-issue-tease-cta {
  display: inline-block;
  background: var(--bsp-ink);
  color: var(--bsp-paper);
  padding: 14px 28px;
  font-family: var(--bsp-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bsp-issue-tease-cta:hover { background: var(--bsp-ink-pure); color: var(--bsp-paper); }

/* ============================================================
   EDITOR OF THE WEEK
   ============================================================ */
.bsp-editor {
  max-width: 1080px;
  margin: 56px auto;
  padding: 0 36px;
}
.bsp-editor-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  background: var(--bsp-paper-soft);
  padding: 36px;
  color: var(--bsp-ink);
  align-items: center;
}
.bsp-editor-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
}
.bsp-editor-name {
  font-family: var(--bsp-serif);
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 10px;
}
.bsp-editor-bio {
  font-family: var(--bsp-sans);
  font-size: 14px;
  color: var(--bsp-muted);
  margin: 0 0 14px;
}
.bsp-editor-cta {
  font-family: var(--bsp-sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bsp-accent);
  font-weight: 700;
}
@media (max-width: 700px) {
  .bsp-editor-card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .bsp-editor-photo { margin: 0 auto; }
}

/* ============================================================
   POST GRID (used by index, tag, author)
   ============================================================ */
.bsp-archive-header {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 36px 28px;
  border-bottom: 1px solid var(--bsp-rule);
}
.bsp-archive-eyebrow {
  display: block;
  font-family: var(--bsp-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bsp-accent);
  font-weight: 700;
  margin-bottom: 12px;
}
.bsp-archive-title {
  font-family: var(--bsp-serif);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 12px;
}
.bsp-archive-deck {
  font-family: var(--bsp-sans);
  font-size: 17px;
  color: var(--bsp-muted);
  max-width: 56ch;
  margin: 0 auto;
}

.bsp-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px 48px;
}
.bsp-card { display: block; color: var(--bsp-ink); }
.bsp-card-image { aspect-ratio: 4 / 3; overflow: hidden; margin-bottom: 14px; }
.bsp-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.bsp-card:hover .bsp-card-image img { transform: scale(1.03); }
.bsp-card-title {
  font-family: var(--bsp-serif);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 6px;
}
.bsp-card-date {
  font-family: var(--bsp-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bsp-muted);
}

@media (max-width: 900px) {
  .bsp-post-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; padding: 0 20px 32px; }
  .bsp-archive-title { font-size: 36px; }
}
@media (max-width: 480px) {
  .bsp-post-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Pagination
   ============================================================ */
.pagination, .gh-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 48px auto;
  padding-top: 32px;
  border-top: 1px solid var(--bsp-rule);
  max-width: 1280px;
}
.pagination a {
  font-family: var(--bsp-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--bsp-ink);
  padding: 8px 14px;
  border: 1px solid var(--bsp-ink);
}
.pagination a:hover { background: var(--bsp-ink); color: var(--bsp-paper); }

/* ============================================================
   SINGLE ARTICLE — image-first, left-aligned, image-led layout
   ============================================================ */
.bsp-article-main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 36px;
}
.bsp-article { }

.bsp-article-lead {
  margin: 0 0 32px;
  max-width: 100%;
}
.bsp-article-lead img {
  width: 100%;
  height: auto;
  display: block;
}
.bsp-article-lead figcaption {
  font-family: var(--bsp-sans);
  font-size: 13px;
  color: var(--bsp-muted);
  margin-top: 10px;
}

.bsp-article-header {
  text-align: left;
  margin-bottom: 40px;
  max-width: 820px;
}

.bsp-article-tag-line {
  font-family: var(--bsp-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bsp-accent);
  font-weight: 700;
  margin-bottom: 16px;
}
.bsp-article-tag-link {
  color: var(--bsp-accent);
  text-decoration: none;
}
.bsp-article-tag-link:hover { color: var(--bsp-ink); }
.bsp-pipe { color: var(--bsp-rule-strong); margin: 0 4px; }

.bsp-article-title {
  font-family: var(--bsp-serif);
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  color: var(--bsp-ink);
  text-align: left;
}

.bsp-article-deck {
  font-family: var(--bsp-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.4;
  color: var(--bsp-muted);
  margin: 0 0 20px;
  max-width: 60ch;
}

.bsp-article-meta {
  font-family: var(--bsp-sans);
  font-size: 13px;
  color: var(--bsp-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  letter-spacing: 0.02em;
  text-transform: none;
}
.bsp-article-meta time { font-weight: 600; color: var(--bsp-ink); }
.bsp-meta-author { color: var(--bsp-muted); }
.bsp-meta-read {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bsp-muted);
}
.bsp-article-body {
  font-family: var(--bsp-sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--bsp-ink);
  max-width: 760px;
}
.bsp-article-body > * { max-width: 100%; }
.bsp-article-body p { margin: 0 0 1.4em; }
.bsp-article-body img, .bsp-article-body figure { max-width: 100%; margin: 32px 0; }
.bsp-article-body figcaption {
  font-family: var(--bsp-sans);
  font-size: 13px;
  color: var(--bsp-muted);
  text-align: center;
  margin-top: 10px;
}
.bsp-article-body blockquote {
  border-left: 3px solid var(--bsp-accent);
  padding: 4px 0 4px 22px;
  font-style: italic;
  font-family: var(--bsp-serif);
  font-size: 22px;
  line-height: 1.5;
  color: var(--bsp-ink);
  margin: 32px auto;
}
.bsp-article-body h2 { font-family: var(--bsp-serif); font-size: 30px; margin: 48px 0 18px; }
.bsp-article-body h3 { font-family: var(--bsp-serif); font-size: 22px; margin: 40px 0 14px; }
.bsp-article-body a { color: var(--bsp-ink); border-bottom: 1px solid var(--bsp-accent); }
.bsp-article-body a:hover { color: var(--bsp-accent); }
.bsp-article-body blockquote { max-width: 100%; margin: 32px 0; }
.bsp-article-tags {
  max-width: 760px;
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--bsp-rule);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.bsp-tag-label { font-family: var(--bsp-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--bsp-muted); margin-right: 8px; }
.bsp-tag { font-family: var(--bsp-sans); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bsp-ink); border: 1px solid var(--bsp-rule-strong); padding: 6px 12px; }
.bsp-tag:hover { border-color: var(--bsp-ink); }

.bsp-related {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 36px 64px;
}
.bsp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .bsp-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .bsp-related-grid { grid-template-columns: 1fr; } }
@media (max-width: 700px) {
  .bsp-article-main { padding: 24px 20px; }
  .bsp-article-title { font-size: 28px; }
  .bsp-article-deck { font-size: 17px; }
  .bsp-article-body { font-size: 17px; }
  .bsp-article-lead { margin: 0 0 24px; }
}

/* ============================================================
   AUTHOR / PAGE
   ============================================================ */
.bsp-author-header { text-align: center; padding: 0 36px 36px; border-bottom: 1px solid var(--bsp-rule); margin: 48px 0; }
.bsp-author-photo { width: 140px; height: 140px; border-radius: 50%; object-fit: cover; margin: 0 auto 22px; }
.bsp-page-header { text-align: center; margin-bottom: 32px; padding: 48px 36px 0; }
.bsp-page-title { font-family: var(--bsp-serif); font-size: 48px; font-weight: 700; letter-spacing: -0.01em; }

/* ============================================================
   ISSUES (/issues/) shop landing
   ============================================================ */
.bsp-main { /* default - if no layout wrapper, fall back to centered */ }
main.bsp-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 36px 64px;
}
.bsp-issues-subscribe {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--bsp-ink);
  color: var(--bsp-paper);
  padding: 28px 36px;
  margin-bottom: 48px;
}
.bsp-issues-subscribe h3 { font-family: var(--bsp-serif); font-size: 24px; font-weight: 700; margin: 0 0 4px; color: var(--bsp-paper); }
.bsp-issues-subscribe p { font-family: var(--bsp-sans); font-size: 14px; margin: 0; opacity: 0.75; }
.bsp-issues-subscribe-btn {
  display: inline-block;
  background: var(--bsp-accent);
  color: var(--bsp-ink);
  padding: 14px 28px;
  font-family: var(--bsp-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}
.bsp-issues-subscribe-btn.bsp-disabled { background: var(--bsp-muted); cursor: not-allowed; }

.bsp-issues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 40px 24px;
}
.bsp-issue-card { display: flex; flex-direction: column; }
.bsp-issue-cover {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #f8f8f8 0%, #efece5 100%);
  border: 1px solid var(--bsp-rule);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  font-family: var(--bsp-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--bsp-muted);
  text-align: center;
  position: relative;
}
.bsp-issue-cover::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid var(--bsp-rule);
}
/* Image-based cover variant — used when we have a real cover image */
.bsp-issue-cover-img {
  background: var(--bsp-paper-soft);
  overflow: hidden;
  padding: 0;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bsp-issue-cover-img::before { display: none; }
.bsp-issue-cover-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bsp-issue-card:hover .bsp-issue-cover-img {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.14);
}
.bsp-issue-meta {
  font-family: var(--bsp-sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bsp-muted);
  margin-bottom: 6px;
}
.bsp-issue-title {
  font-family: var(--bsp-serif);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0 0 8px;
}
.bsp-issue-price { font-family: var(--bsp-sans); font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.bsp-issue-formats { display: flex; gap: 6px; }
.bsp-issue-formats span {
  font-family: var(--bsp-sans);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bsp-muted);
  border: 1px solid var(--bsp-rule-strong);
  padding: 3px 8px;
}
.bsp-issues-footnote {
  text-align: center;
  font-family: var(--bsp-sans);
  font-size: 13px;
  color: var(--bsp-muted);
  margin: 48px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--bsp-rule);
}

/* ============================================================
   Koenig editor classes
   ============================================================ */
.kg-width-wide { width: 100vw; max-width: 85vw; margin-left: 50%; transform: translateX(-50%); }
.kg-width-full { width: 100vw; max-width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.kg-width-wide img, .kg-width-full img { width: 100%; height: auto; }
.kg-image { max-width: 100%; height: auto; }
.kg-card { margin: 32px auto; max-width: 65ch; }
.kg-card.kg-width-wide, .kg-card.kg-width-full { max-width: 100%; }
.kg-card figcaption { font-family: var(--bsp-sans); font-size: 13px; color: var(--bsp-muted); text-align: center; margin-top: 10px; }
.kg-bookmark-card { border: 1px solid var(--bsp-rule); padding: 20px; }
.kg-bookmark-title { font-family: var(--bsp-serif); font-size: 18px; margin: 0 0 6px; }
.kg-callout-card { background: var(--bsp-paper-soft); border-left: 3px solid var(--bsp-accent); padding: 20px 24px; margin: 32px auto; max-width: 65ch; }

/* ============================================================
   FOOTER — dark
   ============================================================ */
.bsp-footer {
  background: #0d0d0d;
  color: #cccccc;
  padding: 56px 36px 32px;
  margin-top: 80px;
}
.bsp-footer-inner { max-width: 1280px; margin: 0 auto; }

.bsp-footer-brand { text-align: center; margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid #2a2a2a; }
.bsp-footer-logo { display: inline-block; }
.bsp-footer-logo img { height: 28px; margin: 0 auto; filter: invert(1); }
.bsp-wordmark-light { color: #ffffff; }
.bsp-footer-tagline {
  font-family: var(--bsp-sans);
  font-size: 13px;
  color: #888;
  margin: 14px 0 0;
  letter-spacing: 0.02em;
}

.bsp-footer-widgets {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  padding-bottom: 40px;
  border-bottom: 1px solid #2a2a2a;
}
.bsp-footer-widget-title {
  font-family: var(--bsp-sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid #2a2a2a;
}

/* Popular posts list */
.bsp-footer-posts { list-style: none; padding: 0; margin: 0; }
.bsp-footer-posts li { margin-bottom: 14px; }
.bsp-footer-posts a {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
  color: #ddd;
  text-decoration: none;
}
.bsp-footer-posts img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  display: block;
}
.bsp-footer-post-title {
  font-family: var(--bsp-serif);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 500;
  color: #eee;
}
.bsp-footer-posts a:hover .bsp-footer-post-title { color: var(--bsp-accent); }

/* Instagram grid */
.bsp-footer-instagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.bsp-footer-instagram a {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #1a1a1a;
}
.bsp-footer-instagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.bsp-footer-instagram a:hover img { opacity: 0.7; }

/* Footer base */
.bsp-footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-family: var(--bsp-sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #888;
}
.bsp-footer-nav { display: flex; gap: 24px; }
.bsp-footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
}
.bsp-footer-nav a:hover { color: var(--bsp-accent); }
.bsp-footer-copy {
  color: #777;
  letter-spacing: 0.1em;
}

@media (max-width: 700px) {
  .bsp-footer-widgets { grid-template-columns: 1fr; gap: 36px; }
  .bsp-footer-base { flex-direction: column; gap: 12px; }
}

/* ============================================================
   NAV ROW + TOGGLE BUTTON (mobile expand/collapse)
   ============================================================ */
.bsp-nav-item-row { display: contents; } /* desktop: layout unchanged */
.bsp-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 44px;
  height: 44px;
  position: relative;
}
/* Plus icon */
.bsp-nav-toggle::before,
.bsp-nav-toggle::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--bsp-ink);
  transition: transform 0.2s;
}
.bsp-nav-toggle::before {
  width: 12px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.bsp-nav-toggle::after {
  width: 1.5px; height: 12px;
  transform: translate(-50%, -50%);
}
.bsp-nav-item.is-open .bsp-nav-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

/* ============================================================
   MOBILE NAV — burger menu w/ collapsed sub-categories
   ============================================================ */
@media (max-width: 900px) {
  .bsp-header-inner { grid-template-columns: auto 1fr auto; padding: 16px 20px; }
  .bsp-burger { display: block; }
  .bsp-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bsp-paper); border-bottom: 1px solid var(--bsp-rule); max-height: calc(100vh - 60px); overflow-y: auto; }
  .bsp-nav.is-open { display: block; }
  .bsp-nav-list { flex-direction: column; }
  .bsp-nav-item { border-bottom: 1px solid var(--bsp-rule); }
  .bsp-nav-item.has-sub > a::after { display: none; }

  /* Show the +/− toggle button on mobile, lay item out as flex row */
  .bsp-nav-item-row {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }
  .bsp-nav-item-row > a {
    flex: 1;
    display: block;
    padding: 14px 22px;
    font-family: var(--bsp-sans);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bsp-ink);
  }
  .bsp-nav-toggle { display: block; margin-right: 12px; }

  /* Sub-nav: hidden by default, shown when parent has .is-open */
  .bsp-subnav {
    display: none !important;
    position: static;
    transform: none;
    border: none;
    background: var(--bsp-paper-soft);
    padding: 0;
    box-shadow: none;
    min-width: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }
  .bsp-nav-item.is-open > .bsp-subnav {
    display: block !important;
    padding: 4px 0 8px;
  }
  .bsp-subnav li a { padding: 10px 40px; font-size: 12px; display: block; }

  .bsp-actions { gap: 8px; }
  .bsp-subscribe { padding: 8px 12px; font-size: 10px; }
  .bsp-search { width: 28px; height: 28px; }
}
