/*
Theme Name:  WellnessLife
Theme URI:   https://wellnesslife.news
Description: Magazine-style wellness theme for WellnessLife.news
Version:     1.0.0
Author:      WellnessLife editorial
Text Domain: wellnesslife
*/

/* ── Design tokens ───────────────────────────────────────── */
:root {
  --black:   #0F0F0F;
  --off-black:#1A1A1A;
  --white:   #FFFFFF;
  --cream:   #FBF8F5;
  --rose:    #FFF0EE;
  --coral:   #E84848;
  --coral-dk:#C83030;
  --lime:    #C8F544;
  --muted:   #6E6E6E;
  --line:    #E8E0D8;

  /* Category accents */
  --c-fitness:      #E84848;
  --c-beauty:       #D45A8A;
  --c-health:       #2A8A6A;
  --c-nutrition:    #C47A18;
  --c-body:         #7A5AAA;
  --c-relationships:#D45A8A;

  --disp: 'Barlow Condensed', Impact, sans-serif;
  --body: 'Manrope', -apple-system, sans-serif;

  --radius: 1px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }

/* ── Utilities ───────────────────────────────────────────── */
.wrap { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
.skip { position: absolute; left: -9999px; }
.skip:focus { position: static; }

/* ── Eyebrow / category label ───────────────────────────── */
.cat-label {
  font-family: var(--body);
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  display: inline-block; margin-bottom: 8px;
}
.cat-label.fitness      { color: var(--c-fitness) }
.cat-label.beauty       { color: var(--c-beauty) }
.cat-label.health       { color: var(--c-health) }
.cat-label.nutrition    { color: var(--c-nutrition) }
.cat-label.body         { color: var(--c-body) }
.cat-label.relationships{ color: var(--c-relationships) }

/* ── Topstrip ────────────────────────────────────────────── */
.topstrip {
  background: var(--coral); color: #fff;
  font-family: var(--body); font-size: 11.5px;
  font-weight: 700; letter-spacing: .06em;
  text-align: center; padding: 9px 0;
  text-transform: uppercase;
}
.topstrip a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* ── Navigation ──────────────────────────────────────────── */
.masthead {
  background: var(--white);
  border-bottom: 3px solid var(--black);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.mast-top {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.site-logo {
  font-family: var(--disp);
  font-size: 38px; font-weight: 900;
  letter-spacing: -.02em; line-height: 1;
  color: var(--black); text-transform: uppercase;
}
.site-logo .logo-accent { color: var(--coral); }
.mast-actions { display: flex; align-items: center; gap: 14px; }
.search-toggle {
  display: flex; align-items: center; gap: 7px;
  font-family: var(--body); font-size: 12px;
  font-weight: 600; color: var(--muted);
  border: 1.5px solid var(--line); padding: 7px 14px;
  background: transparent; cursor: pointer; border-radius: var(--radius);
  transition: border-color .15s;
}
.search-toggle:hover { border-color: var(--black); }
.search-toggle svg { width: 14px; height: 14px; }
#hy-search-wrap { position: relative; }
#hy-search-drop {
  position: absolute; top: calc(100% + 10px); right: 0;
  background: var(--white); border: 1.5px solid var(--black);
  padding: 12px; width: calc(100vw - 32px); max-width: 340px; z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
#hy-search-drop form { display: flex; gap: 0; }
#hy-search-drop input {
  flex: 1; border: 1.5px solid var(--line); border-right: none;
  outline: none; padding: 11px 12px; font-size: 15px;
  font-family: var(--body); color: var(--black); background: var(--cream);
}
#hy-search-drop button {
  border: none; background: var(--black); color: #fff;
  padding: 0 16px; font-size: 12px; font-weight: 700;
  font-family: var(--body); cursor: pointer; text-transform: uppercase;
  letter-spacing: .04em;
}
#hy-search-drop button:hover { background: var(--coral); }
.nav-cats { background: var(--black); }
.nav-cats-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  display: flex; gap: 0;
  overflow-x: auto; scrollbar-width: none;
}
.nav-cats-inner::-webkit-scrollbar { display: none; }
.nav-cats-inner a {
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75); padding: 13px 20px;
  display: block; white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background .15s, color .15s;
}
.nav-cats-inner a:hover,
.nav-cats-inner .current-menu-item a,
.nav-cats-inner .current_page_item a { background: var(--coral); color: #fff; }

/* Mobile search dropdown */
.search-desktop { display: none; }

/* ── Ad slots ────────────────────────────────────────────── */
.wl-ad {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; color: var(--muted);
  background: #F0EDE8;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.wl-ad:empty { display: none; }
.wl-ad .adlab {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted);
}
.wl-ad .adsize { font-size: 11px; color: #C0B8B0; margin-top: 4px; }
.wl-ad-billboard { min-height: 250px; }
.wl-ad-leaderboard { min-height: 90px; }
.wl-ad-infeed { min-height: 90px; }
.wl-ad-inarticle { min-height: 280px; max-width: 336px; margin: 28px auto; }
.wl-ad-halfpage { min-height: 600px; max-width: 300px; }

/* ── Section head ────────────────────────────────────────── */
.sec { padding: 56px 0; }
.sec-label {
  display: flex; align-items: center; margin-bottom: 32px;
}
.sec-label-bg {
  background: var(--black); color: #fff;
  font-family: var(--disp); font-size: 30px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em;
  padding: 5px 16px; line-height: 1;
}
.sec-label-accent {
  background: var(--coral); color: #fff;
  font-family: var(--disp); font-size: 30px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em;
  padding: 5px 14px; line-height: 1; font-style: italic;
}
.sec-label-line { flex: 1; height: 3px; background: var(--black); }
.sec-viewall {
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  display: flex; align-items: center; gap: 6px;
  margin-left: 20px; flex: none; white-space: nowrap; cursor: pointer;
  transition: color .15s;
}
.sec-viewall:hover { color: var(--coral); }

/* ── Cards ───────────────────────────────────────────────── */
.cards-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.cards-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

.wl-card { cursor: pointer; }
.wl-card-img {
  overflow: hidden; position: relative;
  margin-bottom: 14px; border-radius: var(--radius);
  background: #D0C4BC;
}
.wl-card-img.h169 { aspect-ratio: 16/9; }
.wl-card-img.h43  { aspect-ratio: 4/3; }
.wl-card-img.h45  { aspect-ratio: 4/5; }
.wl-card-img img  { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.wl-card h3 {
  font-family: var(--disp); font-size: 22px; font-weight: 900;
  text-transform: uppercase; line-height: 1.05; letter-spacing: .01em;
  color: var(--black); margin-bottom: 8px; transition: color .12s;
}
.wl-card:hover h3 { color: var(--coral); }
.wl-card .meta {
  font-family: var(--body); font-size: 11px; font-weight: 600;
  color: var(--muted); letter-spacing: .04em; text-transform: uppercase;
  margin-top: 6px;
}

/* Overlay text on image */
.wl-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.9) 0%, rgba(0,0,0,.4) 60%, transparent 100%);
  padding: 18px 18px 20px;
}
.wl-card-overlay h3 { color: #fff; }
.wl-card-overlay .cat-label { margin-bottom: 6px; }

/* Dark card */
.wl-card-dark { background: var(--black); padding: 20px; min-height: 180px; }
.wl-card-dark h3 { color: #fff; font-size: 24px; }

/* Row list */
.rowlist { display: flex; flex-direction: column; }
.rowitem {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  cursor: pointer;
}
.rowitem:last-child { border-bottom: none; }
.rowitem-n {
  font-family: var(--disp); font-size: 34px; font-weight: 900;
  color: var(--line); line-height: 1; flex: none; width: 32px;
  margin-top: -2px; transition: color .12s;
}
.rowitem:hover .rowitem-n { color: var(--coral); }
.rowitem h4 {
  font-family: var(--disp); font-size: 19px; font-weight: 800;
  text-transform: uppercase; line-height: 1.05; color: var(--black);
  transition: color .12s;
}
.rowitem:hover h4 { color: var(--coral); }

/* ── Hero (homepage) ─────────────────────────────────────── */
.hero {
  position: relative; height: 88vh;
  max-height: 660px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,#2A1A1A 0%,#4A2828 40%,#784040 70%,#9A6050 100%);
}
.hero-bg img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.82) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.1) 100%);
}
.hero-inner {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: flex-end;
  max-width: 1300px; margin: 0 auto; padding: 0 28px 52px;
}
.hero-left { max-width: 620px; }
.hero-cat {
  display: inline-block; background: var(--coral); color: #fff;
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--disp);
  font-size: clamp(50px, 7vw, 84px);
  font-weight: 900; line-height: .95; letter-spacing: -.01em;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.hero h1 i { color: var(--lime); font-style: italic; }
.hero-dek {
  font-family: var(--body); font-size: 16px; line-height: 1.65;
  color: rgba(255,255,255,.7); max-width: 480px; margin-bottom: 24px;
}
.hero-meta {
  font-family: var(--body); font-size: 12px;
  color: rgba(255,255,255,.5); font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  display: flex; gap: 12px; margin-bottom: 22px;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--black);
  font-family: var(--body); font-size: 12px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 24px; cursor: pointer; transition: background .15s;
}
.hero-btn:hover { background: var(--lime); }
.hero-right {
  margin-left: auto; width: 290px;
  background: rgba(0,0,0,.55);
  border-left: 3px solid var(--coral);
}
.hero-side-item {
  padding: 15px 17px; border-bottom: 1px solid rgba(255,255,255,.1);
  cursor: pointer; transition: background .15s;
}
.hero-side-item:last-child { border-bottom: none; }
.hero-side-item:hover { background: rgba(255,255,255,.07); }
.hero-side-cat {
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 5px;
}
.hero-side-title {
  font-family: var(--disp); font-size: 18px; font-weight: 800;
  text-transform: uppercase; line-height: 1.1; color: #fff;
}

/* ── Ticker ──────────────────────────────────────────────── */
.ticker {
  background: var(--lime); padding: 10px 0; overflow: hidden;
  border-bottom: 2px solid var(--black);
}
.ticker-track {
  display: flex; gap: 40px; white-space: nowrap;
  font-family: var(--body); font-size: 11.5px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--black);
  align-items: center; min-width: max-content;
}
.ticker-dot { color: var(--coral); font-size: 14px; flex: none; }

/* ── Numbers strip ───────────────────────────────────────── */
.numbers {
  background: var(--cream); padding: 48px 0;
  border-top: 3px solid var(--black); border-bottom: 3px solid var(--black);
}
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.num-item {
  padding: 28px 32px; border-right: 1px solid var(--line);
  text-align: center; cursor: pointer; transition: background .15s;
}
.num-item:last-child { border-right: none; }
.num-item:hover { background: var(--rose); }
.num-big {
  font-family: var(--disp); font-size: 68px; font-weight: 900;
  line-height: .9; color: var(--black); letter-spacing: -.02em;
  margin-bottom: 8px;
}
.num-big b { color: var(--coral); }
.num-label {
  font-family: var(--body); font-size: 13.5px; font-weight: 600;
  color: var(--muted); line-height: 1.4; max-width: 160px; margin: 0 auto;
}
.num-topic {
  display: inline-block; margin-top: 10px;
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--coral); border-bottom: 2px solid var(--coral);
  padding-bottom: 1px;
}

/* ── Editorial dark strip ────────────────────────────────── */
.editorial { background: var(--black); padding: 60px 0; }
.editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.editorial-big {
  position: relative; overflow: hidden; min-height: 460px; cursor: pointer;
  background: linear-gradient(135deg,#2A1A2A,#6A3A5A);
}
.editorial-big img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.editorial-right { display: flex; flex-direction: column; gap: 3px; }
.editorial-sm {
  flex: 1; position: relative; overflow: hidden;
  cursor: pointer; min-height: 150px;
}
.editorial-sm img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.editorial-sm::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 60%);
}
.editorial-sm-content {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  padding: 14px 16px;
}
.editorial-sm-content .cat-label { margin-bottom: 4px; }
.editorial-sm-content h4 {
  font-family: var(--disp); font-size: 20px; font-weight: 800;
  text-transform: uppercase; line-height: 1.05; color: #fff;
}

/* ── Newsletter ──────────────────────────────────────────── */
.nl { background: var(--black); padding: 64px 0; }
.nl-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.nl h2 {
  font-family: var(--disp); font-size: 68px; font-weight: 900;
  text-transform: uppercase; line-height: .9; letter-spacing: -.01em; color: #fff;
}
.nl h2 i { color: var(--lime); }
.nl-right p {
  font-family: var(--body); font-size: 16px; line-height: 1.7;
  color: rgba(255,255,255,.6); margin-bottom: 24px;
}
.nl-form { display: flex; gap: 0; }
.nl-form input {
  flex: 1; background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15); border-right: none;
  outline: none; color: #fff; font-family: var(--body); font-size: 14px;
  padding: 14px 18px;
}
.nl-form input::placeholder { color: rgba(255,255,255,.3); }
.nl-form button {
  background: var(--lime); color: var(--black); border: none;
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 0 22px; cursor: pointer; white-space: nowrap;
  transition: background .15s;
}
.nl-form button:hover { background: #DCF830; }
.nl-legal {
  font-family: var(--body); font-size: 11.5px;
  color: rgba(255,255,255,.3); margin-top: 10px;
}

/* ── Single article ──────────────────────────────────────── */
.art-hero { background: var(--black); }
.art-hero-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 480px; min-height: 480px;
}
.art-hero-content {
  padding: 48px 52px 48px 28px;
  display: flex; flex-direction: column; justify-content: center;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 20px;
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .15s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.2); }
.breadcrumb .current { color: var(--coral); }
.art-cat-tag {
  display: inline-block; background: var(--coral); color: #fff;
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 5px 12px; margin-bottom: 18px;
}
.art-hero h1 {
  font-family: var(--disp);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900; line-height: .95; letter-spacing: -.01em;
  text-transform: uppercase; color: #fff; margin-bottom: 16px;
}
.art-hero h1 i { color: var(--lime); font-style: italic; }
.art-dek {
  font-family: var(--body); font-size: 17px; line-height: 1.65;
  color: rgba(255,255,255,.65); margin-bottom: 28px;
}
.art-byline {
  display: flex; align-items: center; gap: 14px;
  padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
}
.art-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), #8A2020);
  flex: none; overflow: hidden;
}
.art-avatar img { width: 100%; height: 100%; object-fit: cover; }
.art-byline-name {
  font-family: var(--body); font-size: 13.5px; font-weight: 700;
  color: #fff; margin-bottom: 2px;
}
.art-byline-meta {
  font-family: var(--body); font-size: 11.5px;
  color: rgba(255,255,255,.4); font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}
.art-hero-img { position: relative; overflow: hidden; }
.art-hero-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
}
.art-hero-img-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg,#3A1818,#6A3030,#9A5A44);
}
.art-share {
  position: absolute; top: 20px; right: 20px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.art-share-btn {
  width: 36px; height: 36px;
  background: rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .15s;
}
.art-share-btn:hover { background: var(--coral); border-color: var(--coral); }
.art-share-btn svg { width: 14px; height: 14px; stroke: #fff; fill: none; stroke-width: 2; }

/* Article body layout */
.art-layout {
  max-width: 1300px; margin: 0 auto; padding: 56px 28px;
  display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start;
}
.art-body {}
.art-intro {
  font-family: var(--body); font-size: 19px; line-height: 1.75;
  color: var(--off-black); font-weight: 500; margin-bottom: 32px;
  padding-left: 20px; border-left: 3px solid var(--coral);
}
.art-body h2 {
  font-family: var(--disp); font-size: 32px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1;
  color: var(--black); margin: 40px 0 16px;
  padding-top: 24px; border-top: 2px solid var(--black);
}
.art-body p {
  font-family: var(--body); font-size: 17px; line-height: 1.8;
  color: #2A2A2A; margin-bottom: 22px;
}
.art-body strong { font-weight: 700; color: var(--black); }
.art-body em { font-style: italic; }
.art-body a { color: var(--coral); border-bottom: 1px solid var(--coral); }

/* Pull quote */
.pullquote {
  margin: 36px 0; padding: 28px 32px;
  background: var(--black); position: relative;
}
.pullquote::before {
  content: '\201C'; position: absolute; top: 8px; left: 14px;
  font-family: var(--disp); font-size: 110px; font-weight: 900;
  color: var(--coral); line-height: .7;
}
.pullquote p {
  font-family: var(--disp); font-size: 26px; font-weight: 700;
  text-transform: uppercase; line-height: 1.1; color: #fff;
  margin: 0; padding-left: 58px;
}
.pullquote cite {
  display: block; margin-top: 12px; padding-left: 58px;
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--coral); font-style: normal;
}

/* Stat callout */
.art-stat {
  margin: 32px 0; display: flex; align-items: center; gap: 22px;
  padding: 22px; background: var(--cream); border-left: 4px solid var(--coral);
}
.art-stat-num {
  font-family: var(--disp); font-size: 64px; font-weight: 900;
  line-height: .85; color: var(--black); flex: none;
}
.art-stat-num b { color: var(--coral); }
.art-stat-text { font-family: var(--body); font-size: 15px; line-height: 1.6; color: var(--muted); }
.art-stat-text strong { color: var(--black); font-weight: 700; display: block; margin-bottom: 4px; }

/* Facts box */
.art-facts { margin: 32px 0; border: 2px solid var(--black); }
.art-facts-head {
  background: var(--black); padding: 11px 20px;
  font-family: var(--disp); font-size: 17px; font-weight: 900;
  text-transform: uppercase; color: #fff; letter-spacing: .02em;
}
.art-facts-body { padding: 18px 20px; }
.art-facts ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.art-facts li {
  display: flex; align-items: flex-start; gap: 12px;
  font-family: var(--body); font-size: 15px; line-height: 1.6; color: #2A2A2A;
}
.art-facts li::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--coral); flex: none; margin-top: 7px;
}

/* Sources */
.art-sources { margin-top: 48px; padding-top: 28px; border-top: 2px solid var(--black); }
.art-sources h3 {
  font-family: var(--disp); font-size: 18px; font-weight: 900;
  text-transform: uppercase; margin-bottom: 14px;
}
.art-sources ol { padding-left: 18px; display: flex; flex-direction: column; gap: 8px; }
.art-sources li {
  font-family: var(--body); font-size: 13px; line-height: 1.6; color: var(--muted);
}
.art-sources a { color: var(--coral); }

/* Sidebar */
.art-sidebar { position: sticky; top: 90px; }
.sidebar-block { margin-bottom: 32px; }
.sidebar-label {
  font-family: var(--disp); font-size: 15px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .02em;
  padding-bottom: 10px; border-bottom: 2px solid var(--black); margin-bottom: 16px;
}
.sidebar-card {
  display: flex; gap: 12px; margin-bottom: 14px;
  cursor: pointer; align-items: flex-start;
}
.sidebar-thumb {
  width: 70px; height: 54px; flex: none;
  border-radius: var(--radius); overflow: hidden; background: #D0C4BC;
}
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-cat {
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 4px; color: var(--coral);
}
.sidebar-title {
  font-family: var(--disp); font-size: 17px; font-weight: 800;
  text-transform: uppercase; line-height: 1.1; color: var(--black);
  transition: color .12s;
}
.sidebar-card:hover .sidebar-title { color: var(--coral); }
.sidebar-nl { background: var(--black); padding: 22px; }
.sidebar-nl h4 {
  font-family: var(--disp); font-size: 22px; font-weight: 900;
  text-transform: uppercase; color: #fff; margin-bottom: 8px; line-height: 1;
}
.sidebar-nl h4 i { color: var(--lime); }
.sidebar-nl p {
  font-family: var(--body); font-size: 13px;
  color: rgba(255,255,255,.5); line-height: 1.6; margin-bottom: 14px;
}
.sidebar-nl input {
  width: 100%; background: rgba(255,255,255,.08);
  border: 1.5px solid rgba(255,255,255,.15);
  outline: none; color: #fff; font-family: var(--body);
  font-size: 13px; padding: 11px 14px; margin-bottom: 8px;
}
.sidebar-nl input::placeholder { color: rgba(255,255,255,.3); }
.sidebar-nl button {
  width: 100%; background: var(--lime); color: var(--black); border: none;
  font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; padding: 12px; cursor: pointer;
}
.sidebar-nl button:hover { background: #DCF830; }

/* Related */
.art-related { border-top: 3px solid var(--black); padding: 56px 0; background: var(--cream); }
.related-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.rel-card { cursor: pointer; }
.rel-img { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; margin-bottom: 14px; background: #D0C4BC; }
.rel-img img { width: 100%; height: 100%; object-fit: cover; }
.rel-card h3 {
  font-family: var(--disp); font-size: 20px; font-weight: 900;
  text-transform: uppercase; line-height: 1.05; color: var(--black);
  transition: color .12s;
}
.rel-card:hover h3 { color: var(--coral); }
.rel-meta {
  font-family: var(--body); font-size: 11px;
  color: var(--muted); margin-top: 6px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
}

/* Archive */
.archive-head { padding: 36px 0 20px; }
.archive-head .eyebrow {
  font-family: var(--body); font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--coral);
  display: block; margin-bottom: 8px;
}
.archive-head h1 {
  font-family: var(--disp); font-size: 52px; font-weight: 900;
  text-transform: uppercase; line-height: .95; letter-spacing: -.01em;
  color: var(--black);
}
.archive-head p { font-family: var(--body); color: var(--muted); font-size: 16px; margin-top: 10px; max-width: 600px; }
.arc-search {
  display: flex; gap: 0; margin-top: 20px;
  border: 2px solid var(--black); overflow: hidden; max-width: 420px;
}
.arc-search input {
  flex: 1; border: none; outline: none;
  padding: 11px 14px; font-size: 15px;
  font-family: var(--body); color: var(--black); background: var(--cream);
}
.arc-search button {
  border: none; background: var(--black); color: #fff;
  padding: 0 18px; font-size: 12px; font-weight: 700;
  font-family: var(--body); cursor: pointer; text-transform: uppercase;
  letter-spacing: .04em; transition: background .15s;
}
.arc-search button:hover { background: var(--coral); }

/* Search results */
.emptynote {
  background: var(--cream); border: 2px solid var(--line); padding: 20px;
  font-family: var(--body); color: var(--muted); font-size: 15px;
}

/* 404 */
.not-found { padding: 80px 0; text-align: center; }
.not-found h1 {
  font-family: var(--disp); font-size: 120px; font-weight: 900;
  color: var(--coral); line-height: 1; letter-spacing: -.02em;
}
.not-found h2 {
  font-family: var(--disp); font-size: 36px; font-weight: 900;
  text-transform: uppercase; color: var(--black); margin-top: 8px;
}
.not-found p { font-family: var(--body); color: var(--muted); margin-top: 12px; }

/* Page (static) */
.page-head {
  padding: 40px 0 28px;
  border-bottom: 2px solid var(--black); margin-bottom: 32px;
}
.page-head h1 {
  font-family: var(--disp); font-size: 48px; font-weight: 900;
  text-transform: uppercase; color: var(--black); line-height: 1;
}
.page-content {
  font-family: var(--body); font-size: 17px;
  line-height: 1.8; color: #2A2A2A; max-width: 720px;
}
.page-content p { margin-bottom: 20px; }
.page-content h2 {
  font-family: var(--disp); font-size: 28px; font-weight: 900;
  text-transform: uppercase; margin: 32px 0 14px;
}
.page-content a { color: var(--coral); }
.callout {
  background: var(--cream); border-left: 4px solid var(--coral);
  padding: 18px 22px; margin-bottom: 24px;
  font-family: var(--body); font-size: 15px; color: var(--muted);
}

/* Pagination */
.pagination {
  display: flex; justify-content: center; gap: 8px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line);
}
.pagination .page-numbers {
  font-family: var(--body); font-size: 13px; font-weight: 700;
  padding: 8px 14px; border: 1.5px solid var(--line); color: var(--muted);
  transition: background .12s, color .12s; border-radius: var(--radius);
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover {
  background: var(--black); color: #fff; border-color: var(--black);
}

/* Byline on single */
.byline {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0; border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); margin-top: 20px;
}
.byline .av { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; background: var(--coral); flex: none; }
.byline .av img { width: 100%; height: 100%; object-fit: cover; }
.byline .who { display: flex; flex-direction: column; gap: 2px; }
.byline .who b { font-weight: 700; font-size: 13.5px; }
.byline .who span { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer { background: var(--off-black); padding: 48px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px;
}
.footer-brand .site-logo { font-size: 34px; color: #fff; }
.footer-brand p {
  font-family: var(--body); font-size: 13px;
  color: rgba(255,255,255,.45); line-height: 1.65;
  margin-top: 10px; max-width: 220px;
}
.footer-col h5 {
  font-family: var(--body); font-size: 9.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-family: var(--body); font-size: 13.5px;
  color: rgba(255,255,255,.55); margin-bottom: 8px; transition: color .12s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  font-family: var(--body); font-size: 11.5px; color: rgba(255,255,255,.3);
}

/* ── Comments ────────────────────────────────────────────── */
.comments-area { max-width: 720px; margin-top: 48px; }

/* ── Mobile ──────────────────────────────────────────────── */
@media(max-width:900px){
  .wrap { padding: 0 16px; }
  .mast-top { padding: 0 16px; }
  .site-logo { font-size: 30px; }
  .nav-cats-inner { padding: 0 16px; }
  .hero { height: 72vh; max-height: 540px; }
  .hero h1 { font-size: clamp(38px,10vw,60px); }
  .hero-dek { font-size: 14px; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .hero-right { display: none; }
  .hero-inner { padding: 0 16px 32px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .num-item { padding: 20px 16px; }
  .num-big { font-size: 52px; }
  .sec { padding: 36px 0; }
  .sec-label-bg,.sec-label-accent { font-size: 22px; padding: 4px 12px; }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-big { min-height: 260px; }
  .nl-inner { grid-template-columns: 1fr; gap: 28px; }
  .nl h2 { font-size: 50px; }
  .nl-form { flex-direction: column; }
  .nl-form input,.nl-form button { width: 100%; padding: 14px 18px; }
  .art-hero-grid { grid-template-columns: 1fr; }
  .art-hero-img { height: 260px; }
  .art-hero-img-bg { position: absolute; inset: 0; }
  .art-hero-content { padding: 28px 16px 32px; }
  .art-hero h1 { font-size: clamp(34px,9vw,52px); }
  .art-layout { grid-template-columns: 1fr; padding: 32px 16px; gap: 40px; }
  .art-sidebar { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-cta { display: none; }
  .cards-3 { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr 1fr; }
}
@media(max-width:560px){
  .numbers-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cards-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px; }
  .archive-head h1 { font-size: 36px; }
}
