/*
Theme Name: The Lux Journals
Theme URI: https://theluxjournals.com
Author: The Lux Journals
Description: Custom editorial theme for The Lux Journals. Bold identity — Archivo Black headlines with red block treatment, Libre Franklin body, Arimo labels, white canvas.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: luxjournals
*/

/* ---------- Tokens ---------- */
:root {
  --tlj-white: #FFFFFF;
  --tlj-ink: #111111;
  --tlj-red: #C44C58;
  --tlj-rose: #C49898;
  --tlj-blush: #F3E7E4;
  --tlj-burgundy: #451C21;
  --tlj-grey: #6B6B6B;
  --tlj-line: #E7E0DE;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'Libre Franklin', sans-serif;
  --font-label: 'Arimo', sans-serif;
  --measure: 700px;
  --wrap: 1240px;
  --pad: clamp(20px, 4vw, 48px);
}

/* ---------- Reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  background: var(--tlj-white);
  color: var(--tlj-ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  font-weight: 400;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--tlj-red);
  outline-offset: 2px;
}

.tlj-wrap { max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(1px,1px,1px,1px);
  word-wrap: normal !important;
}

/* ---------- Type ---------- */
h1, h2, h3, .tlj-display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.08;
  letter-spacing: 0;
  margin: 0 0 0.6em;
}
.tlj-label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* Signature: red block headline. Blocks hug each line. */
.tlj-block {
  display: inline;
  background: var(--tlj-red);
  color: #fff;
  padding: 0.1em 0.22em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
a .tlj-block, a.tlj-blocklink { text-decoration: none; }
a:hover .tlj-block, a:focus .tlj-block { background: var(--tlj-burgundy); }

/* Red highlight subline — the "i quit my job" treatment */
.tlj-highlight {
  display: inline;
  background: var(--tlj-red);
  color: #fff;
  font-family: var(--font-label);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
  padding: 0.15em 0.4em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* ---------- Masthead ---------- */
.tlj-masthead { border-bottom: 2px solid var(--tlj-ink); background: var(--tlj-white); }
.tlj-masthead-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.tlj-monogram { display: flex; align-items: center; text-decoration: none; }
.tlj-monogram img { max-height: 44px; width: auto; }
.tlj-monogram-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1;
}
.tlj-wordmark {
  font-family: var(--font-label);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
}

/* Nav */
.tlj-nav-row { display: flex; align-items: center; justify-content: center; gap: 8px; padding-bottom: 14px; position: relative; }
.tlj-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 26px; }
.tlj-nav a {
  font-family: var(--font-label);
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; padding: 6px 2px;
  border-bottom: 3px solid transparent;
}
.tlj-nav a:hover, .tlj-nav .current-menu-item > a, .tlj-nav .current-cat > a {
  border-bottom-color: var(--tlj-red);
}
.tlj-nav-toggle {
  display: none;
  font-family: var(--font-label); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  background: none; border: 2px solid var(--tlj-ink); padding: 8px 14px; cursor: pointer;
}
@media (max-width: 820px) {
  .tlj-nav-toggle { display: inline-block; margin-bottom: 14px; }
  .tlj-nav { display: none; width: 100%; }
  .tlj-nav.is-open { display: block; padding-bottom: 16px; }
  .tlj-nav ul { flex-direction: column; align-items: center; gap: 2px; }
  .tlj-nav-row { flex-direction: column; }
}

/* ---------- Homepage ---------- */
.tlj-section { padding: clamp(40px, 7vw, 84px) 0; }
.tlj-section + .tlj-section { border-top: 1px solid var(--tlj-line); }
.tlj-section-head { margin-bottom: clamp(24px, 4vw, 44px); }
.tlj-section-head h2 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); margin: 0; }

/* Hero */
.tlj-hero { padding: clamp(28px, 5vw, 64px) 0 clamp(40px, 7vw, 80px); }
.tlj-hero a { text-decoration: none; }
.tlj-hero-media { margin: 0 0 26px; }
.tlj-hero-media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.tlj-hero-title {
  font-size: clamp(1.9rem, 5.4vw, 4rem);
  max-width: 20ch;
  margin: 0 0 14px;
}
.tlj-hero-excerpt { max-width: var(--measure); color: var(--tlj-grey); font-size: 1.05rem; margin: 12px 0 0; }
.tlj-meta { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tlj-grey); }
.tlj-meta .cat { color: var(--tlj-red); margin-right: 14px; }

/* Cards */
.tlj-card a { text-decoration: none; display: block; }
.tlj-card figure { margin: 0 0 14px; overflow: hidden; background: var(--tlj-blush); }
.tlj-card img { width: 100%; object-fit: cover; transition: transform .45s ease; }
.tlj-card a:hover img { transform: scale(1.04); }
.tlj-card h3 { font-size: clamp(1rem, 1.6vw, 1.25rem); margin: 8px 0 6px; }
.tlj-card a:hover h3 { color: var(--tlj-red); }
.tlj-card .tlj-meta { display: block; }
.tlj-card-portrait img { aspect-ratio: 3 / 4; }
.tlj-card-landscape img { aspect-ratio: 4 / 3; }

/* Asymmetric grid: large left, two stacked right, three below */
.tlj-grid-editorial { display: grid; gap: clamp(24px, 3vw, 40px); grid-template-columns: 1fr; }
@media (min-width: 821px) {
  .tlj-grid-editorial { grid-template-columns: 1.6fr 1fr; }
  .tlj-grid-lead { grid-row: span 2; }
  .tlj-grid-lead img { aspect-ratio: 4 / 5; }
  .tlj-grid-lead h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); }
}
.tlj-grid-row3 { display: grid; gap: clamp(24px, 3vw, 40px); grid-template-columns: 1fr; margin-top: clamp(24px, 3vw, 40px); }
@media (min-width: 640px) { .tlj-grid-row3 { grid-template-columns: repeat(3, 1fr); } }

/* Editorial Spotlight */
.tlj-spotlight { background: var(--tlj-blush); }
.tlj-spotlight-inner { display: grid; gap: clamp(24px, 4vw, 56px); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 821px) { .tlj-spotlight-inner { grid-template-columns: 1.1fr 1fr; } }
.tlj-spotlight img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.tlj-spotlight h2 { font-size: clamp(1.5rem, 3.4vw, 2.4rem); }
.tlj-spotlight a { text-decoration: none; }

/* Newsletter */
.tlj-newsletter { background: var(--tlj-burgundy); color: #fff; }
.tlj-newsletter h2 { color: #fff; font-size: clamp(1.4rem, 3vw, 2.1rem); }
.tlj-newsletter p { max-width: 60ch; color: rgba(255,255,255,0.85); }
.tlj-newsletter .tlj-zoho { margin-top: 22px; }
.tlj-newsletter .tlj-zoho input[type="email"], .tlj-newsletter .tlj-zoho input[type="text"] {
  font-family: var(--font-body); font-size: 1rem; padding: 12px 14px;
  border: 2px solid #fff; background: transparent; color: #fff; min-width: min(320px, 70vw);
}
.tlj-newsletter .tlj-zoho input::placeholder { color: rgba(255,255,255,0.6); }
.tlj-newsletter .tlj-zoho button, .tlj-newsletter .tlj-zoho input[type="submit"] {
  font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 0.78rem; background: var(--tlj-red); color: #fff; border: 2px solid var(--tlj-red);
  padding: 12px 22px; cursor: pointer;
}
.tlj-newsletter .tlj-zoho button:hover, .tlj-newsletter .tlj-zoho input[type="submit"]:hover { background: #fff; color: var(--tlj-burgundy); }
.tlj-admin-note { border: 2px dashed var(--tlj-rose); padding: 14px 18px; font-size: 0.9rem; }

/* Pillar showcase */
.tlj-pillars { display: grid; gap: clamp(24px, 3vw, 36px); grid-template-columns: 1fr; }
@media (min-width: 640px) { .tlj-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tlj-pillars { grid-template-columns: repeat(3, 1fr); } }
.tlj-pillar-label { margin-bottom: 10px; }
.tlj-pillar-label a { text-decoration: none; }

/* ---------- Category / archive ---------- */
.tlj-archive-head { padding: clamp(32px, 6vw, 64px) 0 clamp(20px, 3vw, 36px); }
.tlj-archive-head h1 { font-size: clamp(1.8rem, 4.6vw, 3.2rem); margin: 0; }
.tlj-archive-desc { max-width: var(--measure); color: var(--tlj-grey); margin-top: 12px; }
.tlj-archive-layout { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; padding-bottom: clamp(40px, 7vw, 84px); }
@media (min-width: 821px) { .tlj-archive-layout { grid-template-columns: 220px 1fr; } }
.tlj-subnav { position: sticky; top: 24px; align-self: start; }
.tlj-subnav ul { list-style: none; margin: 0; padding: 0; }
.tlj-subnav a {
  font-family: var(--font-label); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  display: block; padding: 9px 0 9px 14px; border-left: 3px solid transparent;
}
.tlj-subnav a:hover { color: var(--tlj-red); }
.tlj-subnav .is-active > a { border-left-color: var(--tlj-rose); color: var(--tlj-red); }
@media (max-width: 820px) {
  .tlj-subnav { position: static; }
  .tlj-subnav ul { display: flex; flex-wrap: wrap; gap: 4px 18px; }
  .tlj-subnav a { border-left: 0; border-bottom: 3px solid transparent; padding: 6px 0; }
  .tlj-subnav .is-active > a { border-bottom-color: var(--tlj-rose); }
}
.tlj-archive-grid { display: grid; gap: clamp(24px, 3vw, 40px); grid-template-columns: repeat(2, 1fr); }
@media (min-width: 1024px) { .tlj-archive-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .tlj-archive-grid { grid-template-columns: 1fr; } }

/* Pagination */
.tlj-pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: clamp(32px, 5vw, 56px); }
.tlj-pagination .page-numbers {
  font-family: var(--font-label); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.1em;
  text-decoration: none; padding: 10px 15px; border: 2px solid var(--tlj-ink);
}
.tlj-pagination .page-numbers.current { background: var(--tlj-red); border-color: var(--tlj-red); color: #fff; }
.tlj-pagination a.page-numbers:hover { background: var(--tlj-ink); color: #fff; }

/* ---------- Article ---------- */
.tlj-article-head { padding: clamp(32px, 6vw, 64px) 0 clamp(20px, 4vw, 40px); }
.tlj-article-head .tlj-meta { margin-bottom: 18px; display: block; }
.tlj-article-title { font-size: clamp(1.9rem, 5vw, 3.6rem); max-width: 22ch; }
.tlj-article-standfirst { max-width: var(--measure); font-size: 1.2rem; line-height: 1.6; color: var(--tlj-grey); }
.tlj-article-hero { margin: 0 0 clamp(28px, 5vw, 56px); }
.tlj-article-hero img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.tlj-article-hero figcaption { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tlj-grey); margin-top: 8px; }

.tlj-article-body { max-width: var(--measure); margin: 0 auto; padding-bottom: clamp(48px, 8vw, 96px); }
.tlj-article-body > * { margin-top: 0; margin-bottom: 1.5em; }
.tlj-article-body h2 { font-size: clamp(1.2rem, 2.4vw, 1.6rem); margin-top: 2em; }
.tlj-article-body h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); margin-top: 1.8em; }
.tlj-article-body a { color: var(--tlj-red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.tlj-article-body a:hover { color: var(--tlj-burgundy); }
.tlj-article-body img { margin: 2em auto; }
.tlj-article-body blockquote {
  margin: 2.2em 0; padding: 0;
  border: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  line-height: 1.25;
}
.tlj-article-body blockquote p { display: inline; background: var(--tlj-blush); padding: 0.1em 0.22em; -webkit-box-decoration-break: clone; box-decoration-break: clone; }
.tlj-article-body blockquote cite { display: block; margin-top: 1em; font-family: var(--font-label); font-style: normal; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tlj-grey); }
.tlj-article-body hr { border: 0; border-top: 2px solid var(--tlj-ink); width: 80px; margin: 3em 0; }
.tlj-article-body figcaption { font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--tlj-grey); }

/* Layout: The Edit — numbered entries */
.layout-edit .tlj-article-body h2 { counter-increment: tlj-edit; display: block; margin-top: 2.4em; }
.layout-edit .tlj-article-body { counter-reset: tlj-edit; }
.layout-edit .tlj-article-body h2::before {
  content: counter(tlj-edit, decimal-leading-zero);
  display: inline-block;
  background: var(--tlj-red); color: #fff;
  padding: 0.1em 0.35em; margin-right: 0.5em;
}

/* Layout: The Interview — H4 = question */
.layout-interview .tlj-article-body h4 {
  font-family: var(--font-label); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--tlj-red);
  margin-top: 2.2em; margin-bottom: 0.6em;
}

/* Layout: The City Guide — sticky TOC */
.tlj-guide-toc { position: sticky; top: 0; z-index: 40; background: var(--tlj-white); border-top: 2px solid var(--tlj-ink); border-bottom: 2px solid var(--tlj-ink); overflow-x: auto; }
.tlj-guide-toc ul { list-style: none; display: flex; gap: 26px; margin: 0; padding: 12px var(--pad); white-space: nowrap; }
.tlj-guide-toc a { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; }
.tlj-guide-toc a:hover { color: var(--tlj-red); }

/* Related */
.tlj-related { border-top: 2px solid var(--tlj-ink); }

/* ---------- Footer ---------- */
.tlj-footer { background: var(--tlj-burgundy); color: #fff; margin-top: clamp(48px, 8vw, 96px); }
.tlj-footer a { color: #fff; text-decoration: none; }
.tlj-footer-top { display: grid; gap: clamp(28px, 4vw, 56px); grid-template-columns: 1fr; padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px); }
@media (min-width: 821px) { .tlj-footer-top { grid-template-columns: 1.2fr 1fr 1fr; } }
.tlj-footer .tlj-label { color: var(--tlj-rose); display: block; margin-bottom: 14px; }
.tlj-footer-nav ul { list-style: none; margin: 0; padding: 0; }
.tlj-footer-nav li { margin-bottom: 8px; }
.tlj-footer-nav a { font-family: var(--font-label); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.tlj-footer-nav a:hover { color: var(--tlj-rose); }
.tlj-footer-about { color: rgba(255,255,255,0.8); font-size: 0.95rem; max-width: 40ch; }
.tlj-footer-closer { overflow: hidden; padding-bottom: clamp(20px, 3vw, 36px); }
.tlj-footer-closer span {
  display: block;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: clamp(2.2rem, 9.5vw, 8.2rem);
  line-height: 0.95;
  white-space: nowrap;
  color: #fff;
  opacity: 0.95;
}
.tlj-footer-bottom { border-top: 1px solid rgba(255,255,255,0.2); padding: 18px 0; display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; font-family: var(--font-label); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* ---------- 404 ---------- */
.tlj-404 { padding: clamp(56px, 10vw, 120px) 0; text-align: center; }
.tlj-404 h1 { font-size: clamp(2.2rem, 7vw, 5rem); }
.tlj-404 p { max-width: 46ch; margin: 18px auto; color: var(--tlj-grey); }

/* ---------- Search ---------- */
.tlj-searchform { display: flex; gap: 10px; max-width: 520px; margin: 24px auto 0; }
.tlj-searchform input[type="search"] { flex: 1; font-family: var(--font-body); font-size: 1rem; padding: 12px 14px; border: 2px solid var(--tlj-ink); }
.tlj-searchform button { font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; background: var(--tlj-ink); color: #fff; border: 2px solid var(--tlj-ink); padding: 12px 20px; cursor: pointer; }
.tlj-searchform button:hover { background: var(--tlj-red); border-color: var(--tlj-red); }

/* ---------- WP alignment/core classes ---------- */
.alignwide { margin-left: calc(50% - min(50vw, calc(var(--wrap) / 2)) + var(--pad)); margin-right: calc(50% - min(50vw, calc(var(--wrap) / 2)) + var(--pad)); max-width: none; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); max-width: 100vw; }
.aligncenter { margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }

/* ========== v1.1 — Pass 4 additions ========== */

/* Bigger strapline for article bodies */
.tlj-strap { font-size: clamp(1rem, 2vw, 1.25rem); padding: 0.3em 0.6em; letter-spacing: 0.05em; }

/* Image position utilities (map to WP alignments too) */
.img-wide, .tlj-article-body .alignwide { width: min(92vw, 1000px); max-width: none; position: relative; left: 50%; transform: translateX(-50%); margin-left: 0; margin-right: 0; }
.img-full, .tlj-article-body .alignfull { width: 100vw; max-width: 100vw; position: relative; left: 50%; transform: translateX(-50%); margin-left: 0; margin-right: 0; margin-top: 2.4em; margin-bottom: 2.4em; }
.img-pair { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; width: min(92vw, 1000px); position: relative; left: 50%; transform: translateX(-50%); }
@media (max-width: 560px) { .img-pair { grid-template-columns: 1fr; } }
.tlj-article-body .alignright, .img-inset-r { float: right; width: min(46%, 300px); margin: 0.4em 0 1.2em 1.6em; }
.tlj-article-body .alignleft { float: left; width: min(46%, 300px); margin: 0.4em 1.6em 1.2em 0; }
@media (max-width: 560px) {
  .tlj-article-body .alignright, .tlj-article-body .alignleft, .img-inset-r { float: none; width: 100%; margin: 1.4em 0; }
}
.tlj-fig { margin: 2.2em 0; }

/* Layout B: split opener */
.tlj-split-open { display: grid; gap: clamp(24px, 4vw, 56px); align-items: end; grid-template-columns: 1fr; padding: clamp(32px, 6vw, 64px) 0; }
@media (min-width: 821px) { .tlj-split-open { grid-template-columns: 1.15fr 1fr; } }
.tlj-split-open .tlj-article-title { font-size: clamp(1.8rem, 4.4vw, 3.2rem); }
.tlj-split-open img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }

/* Layout C/D: statement opener */
.tlj-statement-open { padding: clamp(56px, 10vw, 120px) 0 clamp(32px, 6vw, 64px); }
.tlj-statement-open .tlj-article-title { font-size: clamp(2.4rem, 7.4vw, 5.4rem); max-width: 16ch; }
.tlj-statement-open .tlj-article-standfirst { font-size: clamp(1.15rem, 2vw, 1.35rem); }

/* Layout D: photo essay — auto-numbered captions */
.layout-photoessay .tlj-article-body { counter-reset: tlj-photo; }
.layout-photoessay .tlj-article-body figure { margin-top: clamp(32px, 5vw, 64px); margin-bottom: clamp(32px, 5vw, 64px); }
.layout-photoessay .tlj-article-body figcaption { display: flex; gap: 14px; align-items: baseline; font-family: var(--font-body); font-size: 0.98rem; letter-spacing: 0; text-transform: none; color: var(--tlj-ink); margin-top: 14px; }
.layout-photoessay .tlj-article-body figcaption::before { counter-increment: tlj-photo; content: counter(tlj-photo, decimal-leading-zero); font-family: var(--font-display); font-size: 0.9rem; background: var(--tlj-red); color: #fff; padding: 0.15em 0.45em; flex: 0 0 auto; }

/* Layout E: review verdict card */
.tlj-verdict { border: 3px solid var(--tlj-ink); margin: 2.6em 0; padding: clamp(20px, 3vw, 32px); }
.tlj-verdict .vhead { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-bottom: 2px solid var(--tlj-ink); padding-bottom: 16px; margin-bottom: 18px; }
.tlj-verdict h2, .tlj-verdict h3 { font-size: 1.15rem; margin: 0; }
.tlj-score { display: flex; gap: 5px; }
.tlj-score i { width: 18px; height: 18px; background: var(--tlj-blush); display: block; }
.tlj-score i.f { background: var(--tlj-red); }
.tlj-verdict dl { margin: 0; display: grid; gap: 12px; }
.tlj-verdict dt, .tlj-verdict p strong:first-child { font-family: var(--font-label); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tlj-grey); display: block; }
.tlj-verdict dd { margin: 2px 0 0; }
.tlj-verdict p { margin: 0 0 12px; }
.tlj-verdict .final { margin-top: 18px; padding-top: 16px; border-top: 2px solid var(--tlj-ink); font-weight: 600; }

/* Layout F: the letter */
.layout-letter .tlj-article-body { max-width: 600px; }
.tlj-letter-open { text-align: center; padding: clamp(40px, 7vw, 80px) 0 clamp(20px, 3vw, 36px); }
.tlj-letter-open .tlj-article-title { margin-left: auto; margin-right: auto; font-size: clamp(1.7rem, 4.4vw, 3rem); }
.layout-letter .tlj-article-body > p:first-of-type::first-letter { font-family: var(--font-display); font-size: 3.4em; line-height: 0.9; float: left; background: var(--tlj-red); color: #fff; padding: 0.12em 0.18em; margin: 0.08em 0.18em 0 0; }
.tlj-signoff { margin-top: 2.6em; border-top: 2px solid var(--tlj-ink); padding-top: 1.6em; }
.tlj-signoff .sig { font-family: var(--font-display); font-size: 1.3rem; text-transform: uppercase; }
.tlj-signoff .role { font-family: var(--font-label); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tlj-grey); margin-top: 6px; }

/* The Edit slider (JS builds it from H2 sections) */
.tlj-slider { position: relative; padding: 0 0 clamp(40px, 7vw, 84px); }
.tlj-slider-track { display: flex; gap: clamp(18px, 2.5vw, 32px); overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px var(--pad) 14px; scrollbar-width: thin; scrollbar-color: var(--tlj-red) var(--tlj-blush); }
.tlj-slide { flex: 0 0 min(400px, 82vw); scroll-snap-align: start; }
.tlj-slide .num { font-family: var(--font-display); font-size: 1rem; display: inline-block; background: var(--tlj-red); color: #fff; padding: 0.15em 0.45em; margin: 12px 0; }
.tlj-slide h2, .tlj-slide h3 { font-size: clamp(1.05rem, 1.8vw, 1.3rem); margin: 4px 0 8px; }
.tlj-slide p { font-size: 0.98rem; margin: 0 0 10px; }
.tlj-slide img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.tlj-slide figure { margin: 0; }
.tlj-slider-arrows { display: flex; gap: 8px; justify-content: flex-end; padding: 0 var(--pad); margin-top: 14px; }
.tlj-slider-arrows button { font-family: var(--font-display); font-size: 1.1rem; background: #fff; border: 2px solid var(--tlj-ink); width: 46px; height: 46px; cursor: pointer; line-height: 1; }
.tlj-slider-arrows button:hover { background: var(--tlj-red); border-color: var(--tlj-red); color: #fff; }

/* Interview split opener + quickfire */
.tlj-int-open { display: grid; gap: clamp(24px, 4vw, 56px); grid-template-columns: 1fr; align-items: end; padding: clamp(32px, 6vw, 64px) 0; }
@media (min-width: 821px) { .tlj-int-open { grid-template-columns: 1fr 0.85fr; } }
.tlj-int-open img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.tlj-quickfire { background: var(--tlj-blush); padding: clamp(22px, 3vw, 36px); margin: 2.4em 0; }
.tlj-quickfire h2, .tlj-quickfire h3 { font-size: 1.1rem; margin-bottom: 1em; }
.tlj-quickfire dl { margin: 0; display: grid; gap: 14px; }
.tlj-quickfire dt, .tlj-quickfire p strong:first-child { font-family: var(--font-label); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--tlj-red); display: block; }
.tlj-quickfire dd { margin: 2px 0 0; font-weight: 600; }
.tlj-quickfire p { margin: 0 0 12px; font-weight: 600; }

/* The Brief */
.tlj-brief-head { padding: clamp(28px, 5vw, 52px) 0 clamp(16px, 3vw, 28px); }
.tlj-brief-head .tlj-article-title { font-size: clamp(1.5rem, 3.6vw, 2.4rem); max-width: 26ch; }
.layout-brief .tlj-article-body { max-width: 620px; }
.tlj-readtime { color: var(--tlj-grey); margin-left: 14px; }

/* Buttons */
.tlj-btn { display: inline-block; font-family: var(--font-label); font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.78rem; background: var(--tlj-red); color: #fff; border: 2px solid var(--tlj-red); padding: 14px 26px; text-decoration: none; cursor: pointer; }
.tlj-btn:hover { background: var(--tlj-burgundy); border-color: var(--tlj-burgundy); color: #fff; }
.tlj-btn.ghost { background: transparent; color: var(--tlj-ink); border-color: var(--tlj-ink); }
.tlj-btn.ghost:hover { background: var(--tlj-ink); color: #fff; }

/* Page components (patterns) */
.tlj-page-body { max-width: var(--measure); margin: 0 auto; padding-bottom: clamp(48px, 8vw, 96px); }
.tlj-page-body > * { margin-top: 0; margin-bottom: 1.5em; }
.tlj-page-body h2 { font-size: clamp(1.15rem, 2.2vw, 1.5rem); margin-top: 2.2em; }
.tlj-stats { display: grid; gap: clamp(16px, 2.5vw, 28px); grid-template-columns: repeat(2, 1fr); margin: 2em 0; }
@media (min-width: 821px) { .tlj-stats { grid-template-columns: repeat(4, 1fr); } }
.tlj-stat { border: 2px solid var(--tlj-ink); padding: 20px 18px; }
.tlj-stat b { font-family: var(--font-display); font-size: clamp(1.3rem, 2.6vw, 1.9rem); display: block; line-height: 1.05; }
.tlj-stat span { font-family: var(--font-label); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tlj-grey); display: block; margin-top: 8px; }
.tlj-offer { border-top: 2px solid var(--tlj-ink); padding: 1.6em 0 0.4em; }
.tlj-offer h3 { font-size: 1.1rem; }
.tlj-note { background: var(--tlj-blush); padding: 16px 20px; font-size: 0.92rem; }
.tlj-contact-grid { display: grid; gap: clamp(16px, 2.5vw, 28px); grid-template-columns: 1fr; margin: 2em 0; }
@media (min-width: 640px) { .tlj-contact-grid { grid-template-columns: repeat(3, 1fr); } }
.tlj-contact-card { border: 2px solid var(--tlj-ink); padding: 22px 20px; }
.tlj-contact-card h3 { font-size: 0.95rem; margin-bottom: 10px; }
.tlj-contact-card a { color: var(--tlj-red); font-weight: 600; text-decoration: none; }
.tlj-contact-card p { font-size: 0.92rem; margin: 0.4em 0 0; color: var(--tlj-grey); }

/* Newsletter landing page template */
.tlj-news-landing { padding: clamp(48px, 9vw, 110px) 0; text-align: center; }
.tlj-news-landing h1 { font-size: clamp(2rem, 6vw, 4.2rem); max-width: 18ch; margin: 0 auto 0.5em; }
.tlj-news-landing .sub { max-width: 52ch; margin: 0 auto; color: var(--tlj-grey); font-size: 1.1rem; }
.tlj-news-landing .tlj-zoho { justify-content: center; display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }
.tlj-news-landing .tlj-zoho input[type="email"] { border-color: var(--tlj-ink); color: var(--tlj-ink); }
.tlj-news-landing .tlj-zoho input::placeholder { color: var(--tlj-grey); }
.tlj-proof { display: flex; gap: clamp(20px, 4vw, 56px); justify-content: center; flex-wrap: wrap; margin: 2.6em 0; }
.tlj-proof div b { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); display: block; }
.tlj-proof div span { font-family: var(--font-label); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tlj-grey); }

/* 404 image */
.tlj-404-img { max-width: min(440px, 80vw); margin: 0 auto 28px; }
.tlj-404-img img { width: 100%; }

/* ========== v1.2 — Byline + writers ========== */
.tlj-byline { font-family: var(--font-label); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--tlj-grey); margin: 14px 0 0; }
.tlj-byline a { color: var(--tlj-ink); text-decoration: none; border-bottom: 2px solid var(--tlj-rose); }
.tlj-byline a:hover { color: var(--tlj-red); border-bottom-color: var(--tlj-red); }
.tlj-byline .role { color: var(--tlj-grey); font-weight: 400; }
.tlj-letter-open .tlj-byline { margin-top: 16px; }

/* Writers grid (About page pattern) */
.tlj-writers { display: grid; gap: clamp(20px, 3vw, 36px); grid-template-columns: 1fr; margin: 2em 0; }
@media (min-width: 640px) { .tlj-writers { grid-template-columns: repeat(2, 1fr); } }
.tlj-writer { border-top: 2px solid var(--tlj-ink); padding-top: 16px; }
.tlj-writer h3 { font-size: 1.05rem; margin: 0 0 4px; }
.tlj-writer .role { font-family: var(--font-label); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tlj-red); display: block; margin-bottom: 10px; }
.tlj-writer p { margin: 0; font-size: 0.95rem; color: var(--tlj-grey); }

/* ============================================================
   HOMEPAGE (Editoria Home 1 arrangement) + BOLD FOOTER
   Added in build 10. Standalone theme: no external stylesheet
   competes with these rules, so no !important is needed.
   ============================================================ */

/* ---- Hero slider: reuses the proven .tlj-hero styles above.
       Only show/hide and the controls are added here. ---- */
.tlj-slider { position: relative; }
.tlj-slide { display: none; }
.tlj-slide.is-active { display: block; }
.tlj-slider-controls { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.tlj-slider-arrow { background: var(--tlj-blush, #F3E7E4); border: 0; color: #111; width: 38px; height: 38px; cursor: pointer; font-size: 15px; transition: background .2s ease, color .2s ease; }
.tlj-slider-arrow:hover { background: var(--tlj-red); color: #fff; }
.tlj-slider-dots { display: flex; gap: 8px; }
.tlj-slider-dots button { width: 9px; height: 9px; border-radius: 50%; border: 0; background: #D8CFCD; padding: 0; cursor: pointer; }
.tlj-slider-dots button.is-active { background: var(--tlj-red); }

/* ---- Meta line (category + date now a real <time>) ---- */
.tlj-meta { display: flex; align-items: center; gap: 10px; font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; line-height: 1.2; margin: 14px 0 6px; }
.tlj-meta .cat { color: var(--tlj-red); text-decoration: none; }
.tlj-meta .cat:hover { color: var(--tlj-burgundy); }
.tlj-meta .date { color: #8A8A8A; font-weight: 400; }
.tlj-meta .date::before { content: ''; display: inline-block; width: 14px; height: 1px; background: #D8CFCD; vertical-align: middle; margin-right: 10px; }

/* ---- Columns row (author-led) ---- */
.tlj-columns-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.4vw,36px); }
.tlj-column-card { border: 1px solid var(--tlj-hairline, #E7E0DE); padding: clamp(18px,2vw,28px); }
.tlj-column-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.tlj-column-author img { border-radius: 50%; display: block; }
.tlj-column-author span { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8A8A8A; }
.tlj-column-card h3 { font-size: clamp(17px,1.5vw,21px); line-height: 1.2; margin: 0; }
.tlj-column-card a { text-decoration: none; }
.tlj-column-card a:hover h3 { color: var(--tlj-red); }

/* ---- Editor's Picks ---- */
.tlj-picks { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(24px,3vw,52px); align-items: start; }
.tlj-picks-lead a { text-decoration: none; display: block; }
.tlj-picks-lead figure { margin: 0; overflow: hidden; }
.tlj-picks-lead img { width: 100%; aspect-ratio: 3/2; object-fit: cover; display: block; }
.tlj-picks-lead h3 { font-size: clamp(22px,2.6vw,34px); line-height: 1.1; letter-spacing: -.01em; margin: 0 0 10px; }
.tlj-picks-lead a:hover h3 { color: var(--tlj-red); }
.tlj-picks-excerpt { font-family: var(--font-body); font-size: 16px; line-height: 1.6; color: #4A4A4A; margin: 0; }
.tlj-picks-list { display: flex; flex-direction: column; gap: 20px; }
.tlj-pick-item { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: start; }
.tlj-pick-item a { text-decoration: none; }
.tlj-pick-item figure { margin: 0; overflow: hidden; }
.tlj-pick-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.tlj-pick-item h4 { font-family: var(--font-display); font-size: 16px; line-height: 1.25; margin: 0 0 4px; }
.tlj-pick-item a:hover h4 { color: var(--tlj-red); }

/* ---- Topics strip ---- */
.tlj-topics { text-align: center; }
.tlj-topics-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px; margin-top: 20px; }
.tlj-topics-strip a { font-family: var(--font-display); font-size: clamp(18px,2.2vw,30px); color: var(--tlj-ink, #111); text-decoration: none; border-bottom: 3px solid transparent; padding: 2px 8px; }
.tlj-topics-strip a:hover { color: var(--tlj-red); border-bottom-color: var(--tlj-red); }

/* ---- Footer: bold Editoria arrangement ---- */
.tlj-footer { background: var(--tlj-burgundy); color: #fff; text-align: center; margin-top: clamp(40px,6vw,80px); }
.tlj-footer a { color: #fff; text-decoration: none; }
.tlj-footer-inner { padding-top: clamp(36px,4.5vw,60px); padding-bottom: clamp(24px,3.5vw,40px); display: flex; flex-direction: column; align-items: center; gap: clamp(12px,1.6vw,20px); }
.tlj-footer-inner > *, .tlj-footer-inner p { margin: 0; }
.tlj-footer-mark { font-family: var(--font-display); font-size: clamp(24px,3vw,38px); line-height: 1; color: #fff; border: 2px solid var(--tlj-red); padding: 8px 12px; }
.tlj-footer-mark:hover { background: var(--tlj-red); }
.tlj-footer-mark.has-logo { border: 0; padding: 0; }
.tlj-footer-mark.has-logo img { display: block; height: clamp(30px,3.4vw,52px); width: auto; filter: brightness(0) invert(1); }
.tlj-footer-about { font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: var(--tlj-rose); max-width: 42em; }
.tlj-footer-news { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.tlj-footer-news .tlj-label { color: var(--tlj-rose); }
.tlj-subscribe { background: var(--tlj-red); color: #fff; font-family: var(--font-label); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 12px 34px; display: inline-block; line-height: 1; }
.tlj-subscribe:hover { background: #fff; color: var(--tlj-burgundy); }
.tlj-adminhint { font-family: var(--font-label); font-size: 11px; color: rgba(255,255,255,.45); }
.tlj-footer-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 26px; }
.tlj-footer-nav a { font-family: var(--font-label); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.tlj-footer-nav a:hover { color: var(--tlj-red); }
.tlj-footer-social { display: flex; align-items: center; gap: 12px; font-family: var(--font-label); font-size: 13px; }
.tlj-footer-social a { border-bottom: 1px solid var(--tlj-red); padding-bottom: 2px; }
.tlj-footer-social a:hover { color: var(--tlj-rose); }
.tlj-footer-social .sep { color: var(--tlj-red); }
.tlj-footer-closer { overflow: hidden; line-height: 0; padding: 0 clamp(8px,1.5vw,24px); }
.tlj-footer-closer span { display: block; font-family: var(--font-display); color: #fff; white-space: nowrap; font-size: clamp(54px,15.4vw,320px); line-height: .78; letter-spacing: -.02em; margin-bottom: -.13em; text-align: center; }
.tlj-footer-closer.has-logo img { display: block; width: 100%; height: auto; margin-bottom: -6.5%; filter: brightness(0) invert(1); }
.tlj-footer-bottom { border-top: 1px solid rgba(255,255,255,.16); padding: 14px 0; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-family: var(--font-label); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.7); }

@media (max-width: 900px) {
	.tlj-columns-row { grid-template-columns: 1fr; }
	.tlj-picks { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
	.tlj-footer-bottom { justify-content: center; text-align: center; }
	.tlj-pick-item { grid-template-columns: 92px 1fr; }
}


/* ---- Meta line: enforce everywhere the partial appears ---- */
.tlj-meta,
a .tlj-meta,
.tlj-picks-lead .tlj-meta,
.tlj-pick-item .tlj-meta,
.tlj-card .tlj-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-label);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
	line-height: 1.2;
	margin: 14px 0 8px;
}
.tlj-meta .cat, a .tlj-meta .cat { color: var(--tlj-red); text-decoration: none; font-size: inherit; font-family: inherit; }
.tlj-meta .date, a .tlj-meta .date { color: #8A8A8A; font-weight: 400; font-size: inherit; font-family: inherit; }
.tlj-meta .date::before { content: ''; display: inline-block; width: 14px; height: 1px; background: #D8CFCD; vertical-align: middle; margin-right: 10px; }

/* Picks lead headline scale */
.tlj-picks-lead h3 { margin-top: 0; }

/* ============================================================
   BUILD 14 — masthead, homepage, article, pages, 404
   ============================================================ */

/* ---- Masthead: real wordmark, overlapping the lead image ---- */
.tlj-masthead { padding: clamp(28px,3.5vw,52px) 0 0; }
.tlj-masthead-logo { display: block; text-align: center; }
.tlj-masthead-logo img { width: clamp(240px,30vw,430px); height: auto; display: inline-block; }
.tlj-nav-row {
	display: flex; align-items: center; justify-content: center; gap: clamp(16px,2.4vw,36px);
	margin-top: clamp(16px,2vw,28px); padding-bottom: 14px; border-bottom: 1px solid var(--tlj-hairline,#E7E0DE);
	position: relative;
}
.tlj-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px,2vw,30px); }
.tlj-nav a { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tlj-ink,#111); text-decoration: none; }
.tlj-nav a:hover { color: var(--tlj-red); }
.tlj-nav-subscribe {
	font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	background: var(--tlj-red); color: #fff; padding: 9px 18px; text-decoration: none; position: absolute; right: 0;
}
.tlj-nav-subscribe:hover { background: var(--tlj-burgundy); color: #fff; }
.tlj-nav-toggle { display: none; }

/* Sticky bar */
/* Bug fix: the bar is position:fixed and was overlapping page content with
   no reserved space. JS sets --tlj-stickybar-h once the bar is visible;
   body.tlj-stickybar-visible then pushes content down by that amount. */
body.tlj-stickybar-visible { padding-top: var(--tlj-stickybar-h, 0px); }

.tlj-stickybar {
	position: fixed; top: 0; left: 0; right: 0; z-index: 900;
	background: rgba(255,255,255,.97); border-bottom: 1px solid var(--tlj-hairline,#E7E0DE);
	transform: translateY(-100%); transition: transform .25s ease;
}
.tlj-stickybar.is-visible { transform: translateY(0); }
.tlj-stickybar-inner { display: flex; align-items: center; gap: 24px; padding-top: 10px; padding-bottom: 10px; }
.tlj-stickybar-crest img { height: 30px; width: auto; display: block; }
.tlj-stickybar-nav { flex: 1; }
.tlj-stickybar-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(12px,1.8vw,26px); }
.tlj-stickybar-nav a { font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tlj-ink,#111); text-decoration: none; }
.tlj-stickybar-nav a:hover { color: var(--tlj-red); }
.tlj-stickybar .tlj-nav-subscribe { position: static; padding: 7px 14px; }

/* ---- Lead story ---- */
.tlj-lead { padding-top: clamp(30px,4vw,56px); padding-bottom: clamp(48px,6vw,90px); }
.tlj-lead-head { display: grid; grid-template-columns: minmax(120px,180px) 1fr; gap: clamp(20px,3vw,48px); align-items: start; margin-bottom: clamp(24px,3vw,44px); }
.tlj-eyebrow-rail { display: flex; flex-direction: column; gap: 6px; padding-top: 10px; }
.tlj-eyebrow-cat { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tlj-red); text-decoration: none; }
.tlj-eyebrow-author, .tlj-eyebrow-date { font-family: var(--font-label); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: #8A8A8A; }
.tlj-lead-title { margin: 0 0 16px; }
.tlj-lead-title a { font-family: var(--font-display); font-size: clamp(30px,5vw,72px); line-height: 1.02; letter-spacing: -.02em; color: var(--tlj-ink,#111); text-decoration: none; }
.tlj-lead-title a:hover { color: var(--tlj-red); }
.tlj-lead-standfirst { font-family: var(--font-body); font-size: clamp(16px,1.4vw,20px); line-height: 1.55; color: #4A4A4A; max-width: 38em; margin: 0; }
.tlj-lead-media { display: block; line-height: 0; }
.tlj-lead-media img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

/* ---- Sections ---- */
.tlj-section { padding-top: clamp(48px,6vw,110px); padding-bottom: clamp(48px,6vw,110px); }
.tlj-section-head { border-top: 2px solid var(--tlj-ink,#111); padding-top: 16px; margin-bottom: clamp(24px,3vw,44px); }
.tlj-section-head h2 { font-family: var(--font-display); font-size: clamp(20px,2.4vw,32px); letter-spacing: -.01em; margin: 0; }

/* ---- The Edit ---- */
.tlj-edit-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr; gap: clamp(24px,3vw,52px); align-items: start; }
.tlj-briefs { display: flex; flex-direction: column; gap: 26px; border-left: 1px solid var(--tlj-hairline,#E7E0DE); padding-left: clamp(16px,2vw,28px); }
.tlj-brief { display: grid; grid-template-columns: 62px 1fr; gap: 14px; align-items: start; }
.tlj-brief-date { font-family: var(--font-label); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #8A8A8A; line-height: 1.5; }
.tlj-brief-body { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: #4A4A4A; margin: 0; }
.tlj-brief-body a { color: var(--tlj-ink,#111); text-decoration: none; }
.tlj-brief-body a:hover strong { color: var(--tlj-red); }

/* ---- Burgundy band, overlapping the section above ---- */
.tlj-band { background: var(--tlj-burgundy); color: #fff; padding: clamp(44px,5vw,86px) 0 clamp(48px,6vw,96px); margin-top: clamp(-40px,-4vw,-20px); position: relative; }
.tlj-band-label { display: block; font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--tlj-rose); margin-bottom: clamp(20px,2.5vw,36px); }
.tlj-band-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(18px,2.2vw,34px); }
.tlj-band-card a { text-decoration: none; display: block; }
.tlj-band-card figure { margin: 0 0 14px; overflow: hidden; }
.tlj-band-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform .45s ease; }
.tlj-band-card a:hover img { transform: scale(1.03); }
.tlj-band-cat { font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tlj-rose); }
.tlj-band-card h3 { font-family: var(--font-display); font-size: clamp(15px,1.3vw,19px); line-height: 1.22; color: #fff; margin: 8px 0 0; }
.tlj-band-card a:hover h3 { color: var(--tlj-rose); }

/* ---- Most Read ---- */
.tlj-mostread-title { font-family: var(--font-display); font-size: clamp(38px,7vw,104px); line-height: .95; letter-spacing: -.03em; margin: 0 0 clamp(28px,3.5vw,56px); }
.tlj-mostread-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: clamp(16px,2vw,30px); }
.tlj-rank a { text-decoration: none; display: block; }
.tlj-rank-num { font-family: var(--font-label); font-size: 12px; letter-spacing: .1em; color: #8A8A8A; display: block; margin-bottom: 10px; }
.tlj-rank figure { margin: 0 0 12px; overflow: hidden; }
.tlj-rank img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; transition: transform .45s ease; }
.tlj-rank a:hover img { transform: scale(1.03); }
.tlj-rank-cat { display: flex; align-items: center; gap: 8px; font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tlj-ink,#111); }
.tlj-rank-cat .chip { width: 9px; height: 9px; background: var(--tlj-red); display: inline-block; }
.tlj-rank h3 { font-family: var(--font-display); font-size: clamp(14px,1.2vw,18px); line-height: 1.2; margin: 8px 0 0; }
.tlj-rank a:hover h3 { color: var(--tlj-red); }

/* ---- Masonry ---- */
.tlj-masonry { columns: 3; column-gap: clamp(20px,2.6vw,40px); }
.tlj-masonry .tlj-card { break-inside: avoid; margin-bottom: clamp(26px,3vw,46px); display: inline-block; width: 100%; }

/* ---- Article pages ---- */
.tlj-article-head .tlj-wrap { display: grid; grid-template-columns: minmax(120px,180px) 1fr; gap: clamp(20px,3vw,48px); align-items: start; }
.tlj-article-head .tlj-meta { grid-column: 1; grid-row: 1 / span 3; flex-direction: column; align-items: flex-start; gap: 6px; margin: 10px 0 0; }
.tlj-article-head .tlj-meta .date::before { display: none; }
.tlj-article-head .tlj-article-title,
.tlj-article-head .tlj-byline,
.tlj-article-head .tlj-article-standfirst { grid-column: 2; }
.tlj-article-title {
	font-size: clamp(30px,4.6vw,68px); line-height: 1.03; letter-spacing: -.02em; margin: 0 0 14px;
	/* Bug fix: ch-based max-width + vw-based font-size can outgrow the
	   viewport on a single long word (e.g. "NEIGHBOURHOOD") with nothing
	   telling it to break — it overflows past the screen edge instead of
	   wrapping. Force it to always break rather than overflow. */
	overflow-wrap: break-word; word-break: break-word; max-width: 100%;
}
.tlj-block { overflow-wrap: break-word; word-break: break-word; }
.tlj-article-standfirst { font-family: var(--font-body); font-size: clamp(16px,1.35vw,20px); line-height: 1.55; color: #4A4A4A; max-width: 36em; }
.tlj-article-hero { margin: clamp(28px,3.5vw,56px) 0 clamp(32px,4vw,64px); }
.tlj-article-hero img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.tlj-article-hero figcaption, .tlj-article-body figcaption { font-family: var(--font-label); font-size: 11px; letter-spacing: .08em; color: #8A8A8A; text-align: center; margin-top: 10px; }
.tlj-article-body { max-width: 700px; margin: 0 auto; font-size: 19px; line-height: 1.72; }
.tlj-article-body > p { margin: 0 0 1.5em; }
.tlj-article-body h2 { font-size: clamp(22px,2vw,30px); line-height: 1.15; margin: 2em 0 .6em; }
.tlj-article-body h3 { font-size: clamp(18px,1.5vw,22px); margin: 1.8em 0 .5em; }
/* Images break the measure */
.tlj-article-body figure, .tlj-article-body .wp-block-image { max-width: 1000px; width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.tlj-article-body figure img, .tlj-article-body .wp-block-image img { width: 100%; height: auto; display: block; }
/* Pull quotes */
.tlj-article-body blockquote {
	max-width: 900px; width: 100%; margin: 2.2em 0 2.2em -100px; padding: 0; border: 0; background: none;
	font-family: var(--font-display); font-size: clamp(22px,2.4vw,36px); line-height: 1.18; color: var(--tlj-ink,#111);
}
.tlj-article-body blockquote::before { content: ''; display: block; width: 56px; height: 4px; background: var(--tlj-red); margin-bottom: 20px; }
.tlj-article-body blockquote p { margin: 0; font-family: inherit; font-size: inherit; }

/* ---- Static pages ---- */
.tlj-page-head { padding: clamp(36px,4.5vw,72px) 0 clamp(20px,2.5vw,36px); border-bottom: 1px solid var(--tlj-hairline,#E7E0DE); }
.tlj-page-title { font-family: var(--font-display); font-size: clamp(34px,6vw,88px); line-height: .98; letter-spacing: -.025em; margin: 0; }
.tlj-page-body { max-width: 700px; margin: clamp(32px,4vw,64px) auto clamp(56px,7vw,110px); font-size: 18px; line-height: 1.72; }
.tlj-page-body .tlj-lede { font-size: clamp(19px,1.6vw,24px); line-height: 1.5; color: var(--tlj-ink,#111); margin: 0 0 1.6em; }
.tlj-page-body h2 { font-size: clamp(20px,1.8vw,26px); margin: 2em 0 .5em; }
.tlj-page-body p { margin: 0 0 1.4em; }
.tlj-page-body a { color: var(--tlj-red); }

/* ---- 404 ---- */
.tlj-404 { text-align: center; padding: clamp(60px,9vw,150px) 0; }
.tlj-404 h1 { font-family: var(--font-display); font-size: clamp(56px,12vw,180px); line-height: .9; letter-spacing: -.04em; margin: 0 0 18px; }
.tlj-404 p { font-family: var(--font-body); font-size: 18px; color: #4A4A4A; max-width: 34em; margin: 0 auto 28px; }

@media (max-width: 1024px) {
	.tlj-edit-grid { grid-template-columns: 1fr 1fr; }
	.tlj-briefs { grid-column: 1 / -1; border-left: 0; padding-left: 0; border-top: 1px solid var(--tlj-hairline,#E7E0DE); padding-top: 22px; }
	.tlj-band-grid { grid-template-columns: repeat(2,1fr); }
	.tlj-mostread-grid { grid-template-columns: repeat(2,1fr); }
	.tlj-masonry { columns: 2; }
	.tlj-article-body blockquote { margin-left: 0; }
}
@media (max-width: 700px) {
	.tlj-lead-head, .tlj-article-head .tlj-wrap { grid-template-columns: 1fr; }
	.tlj-eyebrow-rail { flex-direction: row; flex-wrap: wrap; gap: 12px; padding-top: 0; }
	.tlj-article-head .tlj-meta { grid-row: auto; flex-direction: row; }
	.tlj-nav-subscribe { position: static; }
	.tlj-nav-row { flex-wrap: wrap; }
	.tlj-band-grid, .tlj-mostread-grid { grid-template-columns: 1fr 1fr; }
	.tlj-masonry { columns: 1; }
	.tlj-article-body figure, .tlj-article-body .wp-block-image { width: 100%; margin-left: 0; transform: none; }
}

/* ============================================================
   BUILD 15 — masthead lockup, three-column footer,
   longer homepage, roomier category pages
   ============================================================ */

/* ---- Masthead: crest left, wordmark right ---- */
.tlj-masthead-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.tlj-masthead-crest img { height: clamp(56px,5.4vw,90px); width: auto; display: block; }
.tlj-masthead-word img { width: clamp(220px,24vw,360px); height: auto; display: block; }
.tlj-nav-row { justify-content: center; margin-top: clamp(20px,2.4vw,34px); }

/* ---- Footer: newsletter strip + three columns ---- */
.tlj-footer { background: var(--tlj-burgundy); color: #fff; margin-top: clamp(40px,6vw,80px); }
.tlj-footer a { color: #fff; text-decoration: none; }
.tlj-footer-news-strip {
	text-align: center; padding-top: clamp(44px,5vw,76px); padding-bottom: clamp(34px,4vw,56px);
	border-bottom: 1px solid rgba(255,255,255,.16);
}
.tlj-footer-news-strip .tlj-label { color: var(--tlj-rose); display: block; margin-bottom: 12px; }
.tlj-footer-news-strip h2 { font-family: var(--font-display); font-size: clamp(22px,2.6vw,38px); line-height: 1.1; color: #fff; margin: 0 0 22px; }
.tlj-footer-cols {
	display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: clamp(28px,4vw,72px);
	padding-top: clamp(36px,4vw,60px); padding-bottom: clamp(32px,3.6vw,52px);
	text-align: left;
}
.tlj-footer-col > .tlj-label { color: var(--tlj-rose); display: block; margin-bottom: 16px; }
.tlj-footer-crest img { height: 50px; width: auto; display: block; margin-bottom: 18px; }
.tlj-footer-col--brand p { font-family: var(--font-body); font-size: 14px; line-height: 1.7; color: var(--tlj-rose); margin: 0 0 20px; max-width: 30em; }
.tlj-footer-col ul { list-style: none; margin: 0; padding: 0; }
.tlj-footer-col li { margin: 0 0 9px; }
.tlj-footer-col a { font-family: var(--font-label); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.tlj-footer-col a:hover { color: var(--tlj-red); }
.tlj-footer-social { display: flex; align-items: center; gap: 12px; font-family: var(--font-label); font-size: 13px; }
.tlj-footer-social a { border-bottom: 1px solid var(--tlj-red); padding-bottom: 2px; letter-spacing: normal; text-transform: none; font-size: 13px; font-weight: 400; }
.tlj-footer-social .sep { color: var(--tlj-red); }
.tlj-footer-bottom { border-top: 1px solid rgba(255,255,255,.16); }

/* ---- Homepage: pillar showcase + newsletter ---- */
.tlj-pillar-row { display: grid; grid-template-columns: 260px 1fr; gap: clamp(24px,3vw,52px); padding: clamp(26px,3vw,46px) 0; border-top: 1px solid var(--tlj-hairline,#E7E0DE); align-items: start; }
.tlj-pillar-row:first-of-type { border-top: 0; padding-top: 0; }
.tlj-pillar-side h3 { font-family: var(--font-display); font-size: clamp(20px,2vw,28px); margin: 0 0 10px; }
.tlj-pillar-side h3 a { color: var(--tlj-ink,#111); text-decoration: none; }
.tlj-pillar-side h3 a:hover { color: var(--tlj-red); }
.tlj-pillar-desc { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: #6B6B6B; margin-bottom: 14px; }
.tlj-pillar-all { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--tlj-red); text-decoration: none; }
.tlj-pillar-all:hover { color: var(--tlj-ink,#111); }
.tlj-pillar-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.2vw,34px); }
/* Defensive fix for a reported overlap between cards in this rail: grid
   items don't shrink below their content's natural size by default, which
   can push a card wider than its track and overlap its neighbour. Forcing
   min-width:0 and allowing text to wrap keeps every card inside its track. */
.tlj-pillar-cards > * { min-width: 0; }
.tlj-pillar-cards .tlj-card h3,
.tlj-pillar-cards .tlj-card .tlj-meta { overflow-wrap: break-word; word-break: break-word; }
.tlj-home-news { background: var(--tlj-blush,#F3E7E4); text-align: center; padding: clamp(48px,6vw,96px) 0; }
.tlj-home-news .tlj-label { display: block; margin-bottom: 12px; }
.tlj-home-news h2 { font-family: var(--font-display); font-size: clamp(24px,3vw,44px); line-height: 1.08; margin: 0 0 12px; }
.tlj-home-news p { font-family: var(--font-body); font-size: 16px; color: #4A4A4A; margin: 0 0 24px; }

/* ---- Category / archive pages: give them room ---- */
.tlj-archive-head { padding-top: clamp(30px,4vw,60px); padding-bottom: clamp(20px,2.4vw,34px); }
.tlj-archive-head h1 { font-size: clamp(30px,5vw,72px); line-height: 1.02; letter-spacing: -.02em; margin: 10px 0 0; }
.tlj-archive-desc { font-family: var(--font-body); font-size: clamp(15px,1.3vw,19px); line-height: 1.6; color: #4A4A4A; max-width: 40em; margin: 16px 0 0; }
.tlj-archive-layout { padding-bottom: clamp(48px,6vw,100px); }
.tlj-archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(28px,3.2vw,52px); }
.tlj-archive-grid .tlj-card h3 { font-size: clamp(17px,1.4vw,21px); line-height: 1.2; }
.tlj-subnav { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 22px 0 0; padding: 0; list-style: none; }
.tlj-subnav a { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8A8A8A; text-decoration: none; }
.tlj-subnav a:hover, .tlj-subnav .is-active a { color: var(--tlj-red); }

@media (max-width: 1024px) {
	.tlj-footer-cols { grid-template-columns: 1fr 1fr; }
	.tlj-footer-col--brand { grid-column: 1 / -1; }
	.tlj-pillar-row { grid-template-columns: 1fr; }
	.tlj-pillar-cards { grid-template-columns: repeat(2,1fr); }
	.tlj-archive-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 700px) {
	.tlj-masthead-top { flex-direction: column; gap: 14px; }
	.tlj-footer-cols { grid-template-columns: 1fr; }
	.tlj-pillar-cards, .tlj-archive-grid { grid-template-columns: 1fr; }
}

/* Masthead name set in Archivo Black (default) */
.tlj-masthead-word--type span {
	font-family: var(--font-display);
	font-size: clamp(17px,2.1vw,32px);
	line-height: 1;
	letter-spacing: -.01em;
	color: var(--tlj-ink,#111);
	text-transform: uppercase;
	display: block;
}
.tlj-masthead-word--type:hover span { color: var(--tlj-red); }

/* ============================================================
   BUILD 17 — tighter masthead, mega menu, coloured lead,
   fixed category grid
   ============================================================ */

/* Masthead: bigger crest, smaller name, far less air */
.tlj-masthead { padding-top: clamp(16px,1.6vw,26px); }
.tlj-masthead-crest img { height: clamp(90px,8.5vw,140px); }
.tlj-masthead-word--type span { font-size: clamp(23px,2.3vw,36px); letter-spacing: .01em; }
.tlj-nav-row { margin-top: clamp(10px,1.2vw,18px); padding-bottom: 0; border-bottom: 0; }
.tlj-masthead .tlj-wrap { position: relative; }

/* Mega menu */
.tlj-mega-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(14px,2vw,34px); }
.tlj-mega-item { position: static; }
.tlj-mega-top {
	display: block; padding: 14px 0; font-family: var(--font-label); font-size: 11px; font-weight: 700;
	letter-spacing: .16em; text-transform: uppercase; color: var(--tlj-ink,#111); text-decoration: none;
	border-bottom: 2px solid transparent;
}
.tlj-mega-item:hover .tlj-mega-top, .tlj-mega-top:focus { color: var(--tlj-red); border-bottom-color: var(--tlj-red); }
.tlj-mega-panel {
	position: absolute; left: 0; right: 0; top: 100%; z-index: 800;
	background: var(--tlj-blush,#F3E7E4); border-top: 1px solid var(--tlj-hairline,#E7E0DE);
	opacity: 0; visibility: hidden; transform: translateY(-6px);
	transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}
.tlj-mega-item:hover .tlj-mega-panel, .tlj-mega-item:focus-within .tlj-mega-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.tlj-mega-inner { display: grid; grid-template-columns: 220px 1fr; gap: clamp(24px,3vw,56px); padding-top: 30px; padding-bottom: 34px; text-align: left; }
.tlj-mega-links { display: flex; flex-direction: column; gap: 11px; }
.tlj-mega-links a { font-family: var(--font-label); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--tlj-ink,#111); text-decoration: none; }
.tlj-mega-links a:hover { color: var(--tlj-red); }
.tlj-mega-all { color: var(--tlj-red) !important; }
.tlj-mega-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(16px,2vw,30px); }
.tlj-mega-card { text-decoration: none; display: block; }
.tlj-mega-card figure { margin: 0 0 10px; overflow: hidden; background: #fff; }
.tlj-mega-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; transition: transform .4s ease; }
.tlj-mega-card:hover img { transform: scale(1.04); }
.tlj-mega-cat { font-family: var(--font-label); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #8A6A6A; }
.tlj-mega-cat span { color: var(--tlj-red); }
.tlj-mega-card h4 { font-family: var(--font-display); font-size: 15px; line-height: 1.22; color: var(--tlj-ink,#111); margin: 6px 0 0; }
.tlj-mega-card:hover h4 { color: var(--tlj-red); }

/* Lead: colour, image beside the words */
.tlj-lead { padding-top: 0; padding-bottom: 0; background: var(--tlj-blush,#F3E7E4); }
.tlj-lead-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(24px,3.4vw,64px); align-items: center; padding-top: clamp(32px,4vw,70px); padding-bottom: clamp(32px,4vw,70px); }
.tlj-lead-text { max-width: 40em; }
.tlj-eyebrow-rail { flex-direction: row; gap: 16px; align-items: center; padding-top: 0; margin-bottom: 16px; }
.tlj-lead-title a { font-size: clamp(28px,3.6vw,58px); }
.tlj-lead-standfirst { margin-bottom: 20px; }
.tlj-lead-more { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--tlj-red); text-decoration: none; }
.tlj-lead-more:hover { color: var(--tlj-burgundy); }
.tlj-lead-media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* Category: sidebar column only when there are subcategories */
.tlj-archive-layout { grid-template-columns: 1fr !important; }
.tlj-archive-layout.has-subnav { grid-template-columns: 1fr !important; }
@media (min-width: 900px) {
	.tlj-archive-layout.has-subnav { grid-template-columns: 220px 1fr !important; }
}
.tlj-subnav ul { display: flex; flex-direction: column; gap: 10px; list-style: none; margin: 0; padding: 0; }
.tlj-archive-head h1 .tlj-block { font-size: inherit; }

@media (max-width: 900px) {
	.tlj-mega-panel { position: static; opacity: 1; visibility: visible; transform: none; display: none; }
	.tlj-lead-grid { grid-template-columns: 1fr; }
	.tlj-mega-inner { grid-template-columns: 1fr; }
}

/* Mega panel: wider link column, two columns when a pillar has many children */
.tlj-mega-inner { grid-template-columns: 300px 1fr; }
.tlj-mega-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 18px; align-content: start; }
.tlj-mega-all { grid-column: 1 / -1; }
@media (max-width: 900px) { .tlj-mega-inner { grid-template-columns: 1fr; } }

/* Series band heading */
.tlj-band-head { margin-bottom: clamp(20px,2.5vw,36px); max-width: 46em; }
.tlj-band-title { font-family: var(--font-display); font-size: clamp(26px,3.4vw,52px); line-height: 1.02; color: #fff; margin: 8px 0 8px; }
.tlj-band-sub { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: var(--tlj-rose); margin: 0 0 14px; }
.tlj-band-all { font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: #fff; text-decoration: none; border-bottom: 1px solid var(--tlj-red); padding-bottom: 3px; }
.tlj-band-all:hover { color: var(--tlj-rose); }
.tlj-footer-series { list-style: none; margin: 0 0 9px; padding: 0; }

/* ============================================================
   BUILD 22 — masthead fixes, mobile nav, card meta enforcement,
   Most Read scale, By Section
   ============================================================ */

/* Wordmark: no underline anywhere */
.tlj-masthead-word, .tlj-masthead-word:hover, .tlj-masthead-word--type span { text-decoration: none !important; border-bottom: 0 !important; }

/* Subscribe: clear of the rule line, and the rule sits below the row */
.tlj-nav-row { padding-bottom: clamp(14px,1.6vw,22px); border-bottom: 1px solid var(--tlj-hairline,#E7E0DE); position: relative; }
.tlj-nav-subscribe { position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.tlj-mega-top { padding: 8px 0; }

/* Card meta — must beat .tlj-card .tlj-meta { display:block } from the base sheet */
article.tlj-card .tlj-meta,
.tlj-card .tlj-meta,
.tlj-archive-grid .tlj-card .tlj-meta,
.tlj-pillar-cards .tlj-card .tlj-meta {
	display: flex !important;
	align-items: center !important;
	gap: 10px !important;
	font-family: var(--font-label) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	letter-spacing: .14em !important;
	text-transform: uppercase !important;
	line-height: 1.2 !important;
	margin: 14px 0 8px !important;
}
.tlj-card .tlj-meta .cat { color: var(--tlj-red) !important; margin-right: 0 !important; }
.tlj-card .tlj-meta .date { color: #8A8A8A !important; font-weight: 400 !important; }

/* Card titles: clearly links, with hover */
.tlj-card h3 { transition: color .18s ease; }
.tlj-card a { text-decoration: none; }
.tlj-card a:hover h3, .tlj-card h3 a:hover { color: var(--tlj-red); }
.tlj-card figure { overflow: hidden; }
.tlj-card img { transition: transform .45s ease; }
.tlj-card a:hover img { transform: scale(1.03); }

/* Most Read: back to a sane scale */
.tlj-mostread-title { font-size: clamp(28px,3.4vw,52px) !important; margin-bottom: clamp(22px,2.6vw,40px) !important; }
.tlj-rank-num { font-size: 11px; color: #B0A6A4; }

/* By Section: three across, tighter rows */
.tlj-pillar-row { grid-template-columns: 220px 1fr; padding: clamp(22px,2.4vw,36px) 0; }
.tlj-pillar-cards { grid-template-columns: repeat(3,1fr); }
.tlj-pillar-side h3 { font-size: clamp(18px,1.8vw,26px); }

/* ---- Mobile navigation ---- */
.tlj-nav-toggle {
	display: none; align-items: center; gap: 8px; background: none; border: 0; cursor: pointer;
	font-family: var(--font-label); font-size: 11px; font-weight: 700; letter-spacing: .16em;
	text-transform: uppercase; color: var(--tlj-ink,#111); padding: 8px 0;
}
.tlj-nav-toggle span { display: block; width: 20px; height: 2px; background: var(--tlj-ink,#111); }
.tlj-nav-toggle span + span { margin-top: -6px; }

@media (max-width: 900px) {
	.tlj-nav-toggle { display: flex; }
	.tlj-nav-row { justify-content: space-between; }
	.tlj-nav-subscribe { position: static; transform: none; }
	.tlj-mega { display: none; width: 100%; order: 3; }
	body.tlj-nav-open .tlj-mega { display: block; }
	.tlj-mega-list { flex-direction: column; gap: 0; align-items: stretch; }
	.tlj-mega-top { padding: 14px 0; font-size: 13px; }
	.tlj-mega-panel { display: block; position: static; opacity: 1; visibility: visible; transform: none; background: transparent; border: 0; }
	.tlj-mega-inner { display: block; padding: 0 0 16px; }
	.tlj-mega-links { display: flex; flex-direction: column; gap: 8px; }
	.tlj-mega-links a { font-size: 11px; opacity: .8; }
	.tlj-mega-cards { display: none; }
	.tlj-masthead-top { flex-direction: row; align-items: center; }
	.tlj-masthead-crest img { height: 76px; }
	.tlj-masthead-word--type span { font-size: 24px; }
	.tlj-pillar-row { grid-template-columns: 1fr; }
	.tlj-pillar-cards { grid-template-columns: 1fr; }
	.tlj-mostread-grid { grid-template-columns: 1fr 1fr; }
}

/* Build 23 — dropdown panel tightened */
.tlj-mega-inner { grid-template-columns: 210px 1fr; padding-top: 24px; padding-bottom: 26px; align-items: start; }
.tlj-mega-links { display: flex; flex-direction: column; gap: 9px; }
.tlj-mega-links a { white-space: nowrap; font-size: 11px; }
.tlj-mega-all { margin-bottom: 4px; }
.tlj-mega-cards { grid-template-columns: repeat(3,1fr); gap: 20px; }
.tlj-mega-card figure { margin-bottom: 8px; }
.tlj-mega-card img { aspect-ratio: 3/2; }
.tlj-mega-card h4 { font-size: 14px; line-height: 1.2; }
.tlj-mega-panel { box-shadow: 0 14px 30px rgba(17,17,17,.06); }

/* Dropdown subcategories: always one column */
.tlj-mega-links {
	display: flex !important;
	flex-direction: column !important;
	grid-template-columns: none !important;
	gap: 10px !important;
	align-items: flex-start !important;
}
.tlj-mega-links a { white-space: nowrap; }

/* Build 25 — The Edit refinement, Just Published, Explore strip */
.tlj-edit-grid { grid-template-columns: 0.9fr 1.4fr 0.85fr; align-items: start; }
.tlj-edit-feature .tlj-card h3 { font-size: clamp(20px,1.9vw,28px) !important; line-height: 1.12 !important; }
.tlj-edit-standfirst { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #4A4A4A; margin: 10px 0 0; max-width: 34em; }
.tlj-edit-side .tlj-card img { aspect-ratio: 3/4; object-fit: cover; }
.tlj-edit-feature .tlj-card img { aspect-ratio: 3/2; object-fit: cover; }
.tlj-briefs { gap: 22px; }
.tlj-brief { padding-bottom: 20px; border-bottom: 1px solid var(--tlj-hairline,#E7E0DE); }
.tlj-brief:last-child { border-bottom: 0; padding-bottom: 0; }

.tlj-fresh-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(20px,2.4vw,36px); }
.tlj-fresh-grid .tlj-card img { aspect-ratio: 4/3; object-fit: cover; }

.tlj-explore { background: var(--tlj-burgundy); color: #fff; text-align: center; padding: clamp(40px,5vw,80px) 0; }
.tlj-explore .tlj-label { display: block; color: var(--tlj-rose); margin-bottom: 18px; }
.tlj-explore-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 26px; }
.tlj-explore-strip a { font-family: var(--font-display); font-size: clamp(18px,2.2vw,32px); color: #fff; text-decoration: none; border-bottom: 3px solid transparent; padding: 2px 6px; }
.tlj-explore-strip a:hover { color: var(--tlj-rose); border-bottom-color: var(--tlj-red); }

@media (max-width: 1024px) { .tlj-fresh-grid { grid-template-columns: repeat(2,1fr); } .tlj-edit-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) { .tlj-fresh-grid { grid-template-columns: 1fr; } }

/* Build 27 — Explore strip toned right down */
.tlj-explore { padding: clamp(32px,3.6vw,56px) 0; }
.tlj-explore .tlj-label { margin-bottom: 14px; }
.tlj-explore-strip { gap: 10px 22px; align-items: baseline; }
.tlj-explore-strip a {
	font-family: var(--font-label) !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	letter-spacing: .16em !important;
	text-transform: uppercase !important;
	border-bottom: 0 !important;
	padding: 0 !important;
	color: #fff !important;
}
.tlj-explore-strip a:hover { color: var(--tlj-rose) !important; }
.tlj-explore-strip a + a::before { content: '/'; color: var(--tlj-red); margin-right: 22px; font-weight: 400; }

/* ============================================================
   BUILD 29 — nav row alignment, tighter dropdown, mid-size and
   sticky bar fixes
   ============================================================ */

/* Nav row: one line, Subscribe on the same baseline as the links */
.tlj-nav-row {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: clamp(12px,1.8vw,28px) !important;
	position: relative;
}
.tlj-nav-subscribe {
	position: static !important;
	transform: none !important;
	margin-left: auto !important;
	padding: 10px 20px !important;
	line-height: 1 !important;
	flex: 0 0 auto;
}
.tlj-mega { flex: 0 1 auto; }
.tlj-mega-list { flex-wrap: nowrap !important; }
.tlj-mega-top { white-space: nowrap !important; padding: 10px 0 !important; }

/* Dropdown: tighter line spacing on the subcategories */
.tlj-mega-links { gap: 6px !important; }
.tlj-mega-links a { line-height: 1.35 !important; padding: 2px 0 !important; }
.tlj-mega-all { margin-bottom: 8px !important; }

/* Sticky bar: single tidy row */
.tlj-stickybar-inner { display: flex !important; align-items: center !important; gap: clamp(14px,2vw,28px) !important; flex-wrap: nowrap !important; }
.tlj-stickybar-crest img { height: 26px !important; }
.tlj-stickybar-nav ul { flex-wrap: nowrap !important; gap: clamp(10px,1.5vw,22px) !important; }
.tlj-stickybar-nav a { white-space: nowrap !important; }
.tlj-stickybar .tlj-nav-toggle { display: none !important; }
.tlj-stickybar .tlj-nav-subscribe { margin-left: auto !important; padding: 8px 16px !important; }

/* Switch to the burger earlier, before the links start wrapping */
@media (max-width: 1100px) {
	.tlj-nav-toggle { display: flex !important; }
	.tlj-nav-row { justify-content: space-between !important; flex-direction: row !important; }
	.tlj-mega { display: none; width: 100%; order: 3; }
	body.tlj-nav-open .tlj-mega { display: block; }
	.tlj-mega-list { flex-direction: column !important; flex-wrap: wrap !important; gap: 0 !important; align-items: stretch; }
	.tlj-mega-top { padding: 13px 0 !important; }
	.tlj-nav-subscribe { margin-left: 0 !important; }
	.tlj-stickybar-nav { display: none !important; }
	.tlj-stickybar-inner { justify-content: space-between !important; }
}

/* Burger: proper three bars, not overlapping dashes */
.tlj-nav-toggle { flex-direction: row; align-items: center; gap: 8px; position: relative; padding-left: 26px; }
.tlj-nav-toggle span { position: absolute; left: 0; width: 18px; height: 2px; background: var(--tlj-ink,#111); margin: 0 !important; }
.tlj-nav-toggle span:nth-child(1) { top: 8px; }
.tlj-nav-toggle span:nth-child(2) { top: 14px; }
.tlj-nav-toggle span:nth-child(3) { top: 20px; }

/* ============================================================
   BUILD 31 — 404 cleanup, series link, proper mobile drawer
   ============================================================ */

/* 404: no block behind the type, sane spacing */
.tlj-404 { padding: clamp(40px,5vw,80px) 0 clamp(56px,7vw,110px); }
.tlj-404 img { max-width: 320px; height: auto; margin: 0 auto 28px; display: block; }
.tlj-404 h1 { font-size: clamp(34px,5.4vw,72px) !important; line-height: 1.02 !important; letter-spacing: -.02em; margin: 0 0 16px !important; color: var(--tlj-ink,#111); }
.tlj-404 h1 span { background: none !important; color: inherit !important; padding: 0 !important; box-decoration-break: clone; }
.tlj-404 p { margin-bottom: 24px; }

/* Series item in the top menu */
.tlj-mega-item--series .tlj-mega-top { color: var(--tlj-red) !important; }

/* ---- Mobile drawer ---- */
@media (max-width: 1100px) {
	.tlj-mega {
		position: fixed !important; inset: 0 !important; z-index: 9999 !important;
		background: #fff !important; padding: 74px 22px 40px !important;
		overflow-y: auto !important; -webkit-overflow-scrolling: touch;
		display: block !important; transform: translateX(-100%);
		transition: transform .28s ease; width: 100% !important;
	}
	body.tlj-nav-open { overflow: hidden; }
	body.tlj-nav-open .tlj-mega { transform: translateX(0); }

	.tlj-nav-close {
		display: block !important; position: fixed; top: 18px; right: 20px; z-index: 10000;
		background: none; border: 0; font-size: 40px; line-height: 1; color: var(--tlj-ink,#111);
		cursor: pointer; padding: 0 6px;
	}

	.tlj-mega-list { flex-direction: column !important; gap: 0 !important; }
	.tlj-mega-item { border-bottom: 1px solid var(--tlj-hairline,#E7E0DE); }
	.tlj-mega-top {
		display: flex !important; align-items: center; justify-content: space-between;
		padding: 16px 0 !important; font-size: 13px !important; width: 100%;
	}
	.tlj-mega-item:has(.tlj-mega-panel) .tlj-mega-top::after {
		content: '+'; font-size: 20px; font-weight: 400; color: var(--tlj-red);
	}
	.tlj-mega-item.is-open .tlj-mega-top::after { content: '–'; }

	/* Bug fix: the desktop hover/focus rule (.tlj-mega-top:focus turns red
	   with an underline) lingers after a mobile tap-to-close, since the
	   anchor keeps keyboard focus on iOS/Android after being tapped. That
	   makes a genuinely closed section look like it's still "open" with no
	   visible subcategories. Reset focus styling in the drawer unless the
	   item is actually open. */
	.tlj-mega-item:not(.is-open) .tlj-mega-top:focus {
		color: var(--tlj-ink,#111) !important; border-bottom-color: transparent !important;
	}

	/* Collapsed by default — no endless scrolling */
	.tlj-mega-panel {
		display: none !important; position: static !important; opacity: 1 !important;
		visibility: visible !important; transform: none !important; box-shadow: none !important;
		background: transparent !important; border: 0 !important;
	}
	.tlj-mega-item.is-open .tlj-mega-panel { display: block !important; }
	.tlj-mega-inner { display: block !important; padding: 4px 0 18px !important; }
	/* Bug fix: subcategories read almost identically to the top-level pillar
	   they belong to (same caps treatment, near-identical size, no indent),
	   so an expanded section looked like one flat list rather than a clear
	   parent → children group. Give the expanded panel its own tinted,
	   indented block so the grouping is obvious at a glance. */
	.tlj-mega-links {
		display: flex !important; flex-direction: column !important; gap: 2px !important;
		background: var(--tlj-blush,#F3E7E4) !important; padding: 10px 16px !important;
		border-left: 2px solid var(--tlj-red) !important; margin-top: 4px;
	}
	.tlj-mega-links a {
		font-size: 12px !important; font-weight: 400 !important; letter-spacing: .04em !important;
		text-transform: none !important; color: #4A4A4A !important; opacity: 1 !important;
		padding: 7px 0 !important;
	}
	.tlj-mega-links .tlj-mega-all {
		font-size: 11px !important; font-weight: 700 !important; letter-spacing: .1em !important;
		text-transform: uppercase !important; color: var(--tlj-red) !important;
	}
	.tlj-mega-cards { display: none !important; }
}

@media (min-width: 1101px) {
	.tlj-nav-close { display: none !important; }
}

/* ============================================================
   BUILD 32 — subscribe modal + inline newsletter form
   ============================================================ */
.tlj-modal { position: fixed; inset: 0; z-index: 10001; display: none; }
.tlj-modal.is-open { display: block; }
body.tlj-modal-open { overflow: hidden; }
.tlj-modal-backdrop { position: absolute; inset: 0; background: rgba(17,17,17,.55); }
.tlj-modal-panel {
	position: relative; z-index: 2; background: #fff; max-width: 540px; width: calc(100% - 40px);
	margin: clamp(60px,12vh,140px) auto 0; padding: clamp(28px,3.4vw,46px); text-align: center;
	box-shadow: 0 24px 60px rgba(17,17,17,.22);
}
.tlj-modal-panel .tlj-label { display: block; margin-bottom: 12px; }
.tlj-modal-panel h2 { font-family: var(--font-display); font-size: clamp(22px,2.4vw,32px); line-height: 1.1; margin: 0 0 10px; }
.tlj-modal-panel p { font-family: var(--font-body); font-size: 15px; line-height: 1.6; color: #4A4A4A; margin: 0 0 20px; }
.tlj-modal-small { font-size: 12px !important; color: #8A8A8A !important; margin: 16px 0 0 !important; }
.tlj-modal-close {
	position: absolute; top: 10px; right: 14px; background: none; border: 0;
	font-size: 32px; line-height: 1; color: var(--tlj-ink,#111); cursor: pointer; padding: 4px 8px;
}
.tlj-modal-close:hover { color: var(--tlj-red); }
.tlj-nav-subscribe { font-family: var(--font-label); border: 0; cursor: pointer; }

/* Inline newsletter form styling, for when the Zoho embed lands */
.tlj-home-news form, .tlj-modal-form form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.tlj-home-news input[type="email"], .tlj-home-news input[type="text"],
.tlj-modal-form input[type="email"], .tlj-modal-form input[type="text"] {
	flex: 1 1 260px; max-width: 340px; padding: 13px 14px; border: 1px solid var(--tlj-hairline,#E7E0DE);
	font-family: var(--font-body); font-size: 15px; background: #fff;
}
.tlj-home-news input:focus, .tlj-modal-form input:focus { outline: 0; border-color: var(--tlj-red); }
.tlj-home-news input[type="submit"], .tlj-modal-form input[type="submit"],
.tlj-home-news button[type="submit"], .tlj-modal-form button[type="submit"] {
	background: var(--tlj-red); color: #fff; border: 0; padding: 13px 28px; cursor: pointer;
	font-family: var(--font-label); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
}
.tlj-home-news button[type="submit"]:hover, .tlj-modal-form button[type="submit"]:hover { background: var(--tlj-burgundy); }

/* Build 33 — signup form box */
.tlj-signup { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 0 auto; max-width: 460px; }
.tlj-signup input[type="email"] {
	flex: 1 1 240px; padding: 14px 15px; border: 1px solid var(--tlj-hairline,#E7E0DE);
	font-family: var(--font-body); font-size: 15px; background: #fff; color: var(--tlj-ink,#111);
}
.tlj-signup input[type="email"]::placeholder { color: #A9A2A0; }
.tlj-signup input[type="email"]:focus { outline: 0; border-color: var(--tlj-red); }
.tlj-signup button {
	background: var(--tlj-red); color: #fff; border: 0; padding: 14px 26px; cursor: pointer;
	font-family: var(--font-label); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
	transition: background .2s ease;
}
.tlj-signup button:hover { background: var(--tlj-burgundy); }
.tlj-signup-success {
	font-family: var(--font-label); font-size: 13px; font-weight: 700; letter-spacing: .04em;
	color: var(--tlj-ink,#111); background: var(--tlj-blush,#F3E7E4); border: 1px solid var(--tlj-hairline,#E7E0DE);
	padding: 16px 20px; max-width: 460px; margin: 0 auto; text-transform: none;
}
.tlj-modal-form .tlj-signup-success { background: transparent; border-color: var(--tlj-hairline,#E7E0DE); }
@media (max-width: 480px) {
	.tlj-signup { flex-direction: column; }
	/* Bug fix: without this, the input inherits flex: 1 1 240px from the row
	   layout above — once the axis flips to column, 240px is read as a
	   HEIGHT rather than a width, producing a huge near-empty box. */
	.tlj-signup input[type="email"] { flex: 0 0 auto; width: 100%; max-width: none; }
	.tlj-signup button { width: 100%; }
}
/* Same fix for the homepage newsletter block and Subscribe modal forms,
   which can also end up in a narrow single-column layout on small phones. */
@media (max-width: 480px) {
	.tlj-home-news input[type="email"], .tlj-home-news input[type="text"],
	.tlj-modal-form input[type="email"], .tlj-modal-form input[type="text"] {
		flex: 0 0 auto; width: 100%; max-width: none;
	}
}

/* Build 34 — modal copy sits as one sentence, so give it room */
.tlj-modal-panel h2 { font-size: clamp(20px,2.1vw,28px) !important; line-height: 1.18 !important; max-width: 18em; margin: 0 auto 22px !important; }
.tlj-modal-panel { padding-top: clamp(34px,3.8vw,52px); }

/* ============================================================
   BUILD 35 — series item, single rule per section head,
   less blush
   ============================================================ */

/* Worth It or Not sits as a peer, not a special link */
.tlj-mega-item--series .tlj-mega-top { color: var(--tlj-ink,#111) !important; }
.tlj-mega-item--series:hover .tlj-mega-top { color: var(--tlj-red) !important; }
.tlj-mega-blurb { font-family: var(--font-body); font-size: 13px; line-height: 1.6; color: #6B6B6B; margin: 0 0 6px; max-width: 22em; }

/* One rule above a section heading, not two */
.tlj-section, .tlj-fresh, .tlj-more, .tlj-mostread, .tlj-edit, .tlj-pillars-show {
	border-top: 0 !important;
	border-bottom: 0 !important;
}
.tlj-section-head { border-top: 2px solid var(--tlj-ink,#111) !important; padding-top: 16px !important; }
.tlj-pillar-row { border-top: 0 !important; padding-top: clamp(20px,2.2vw,32px) !important; }
.tlj-pillar-row + .tlj-pillar-row { border-top: 1px solid var(--tlj-hairline,#E7E0DE) !important; }
.tlj-topics { border-top: 0 !important; }

/* Blush: keep it for the lead and the newsletter, drop it elsewhere */
.tlj-card figure, .tlj-mega-card figure { background: #F7F6F5 !important; }
.tlj-archive-head, .tlj-archive-layout, .tlj-archive-grid { background: transparent !important; }
.tlj-archive-grid .tlj-card figure { background: #F7F6F5 !important; }

/* ============================================================
   BUILD 36 — clickable titles, briefs, archive heads, modal
   ============================================================ */

/* Titles are their own links now */
.tlj-card h3 a { color: var(--tlj-ink,#111); text-decoration: none; transition: color .18s ease; }
.tlj-card h3 a:hover { color: var(--tlj-red); }
.tlj-card-media { display: block; }
.tlj-card-media:hover img { transform: scale(1.03); }

/* Briefs: headline on its own line, excerpt beneath */
.tlj-brief-title { font-family: var(--font-display); font-size: 15px; line-height: 1.25; margin: 0 0 6px; }
.tlj-brief-title a { color: var(--tlj-ink,#111); text-decoration: none; transition: color .18s ease; }
.tlj-brief-title a:hover { color: var(--tlj-red); }
.tlj-brief-body { font-family: var(--font-body); font-size: 14px; line-height: 1.6; color: #6B6B6B; margin: 0; }

/* Archive titles: no block, full weight */
.tlj-archive-head h1 { color: var(--tlj-ink,#111) !important; }
.tlj-archive-head h1 span { background: none !important; color: inherit !important; padding: 0 !important; }

/* Modal: two lines, the second quieter */
.tlj-modal-panel h2 { font-size: clamp(22px,2.2vw,30px) !important; margin: 0 0 8px !important; max-width: none; }
.tlj-modal-sub { font-family: var(--font-body) !important; font-size: 16px !important; color: #4A4A4A !important; margin: 0 auto 22px !important; }

/* ============================================================
   BUILD 37 — filter rows on archives
   ============================================================ */
.tlj-filter {
	display: flex; flex-wrap: wrap; gap: 8px 10px;
	margin-top: clamp(18px,2vw,28px);
	padding-bottom: clamp(4px,1vw,10px);
}
.tlj-filter a {
	font-family: var(--font-label); font-size: 11px; font-weight: 700;
	letter-spacing: .12em; text-transform: uppercase; text-decoration: none;
	color: var(--tlj-ink,#111); border: 1px solid var(--tlj-hairline,#E7E0DE);
	padding: 9px 16px; transition: background .18s ease, color .18s ease, border-color .18s ease;
	white-space: nowrap;
}
.tlj-filter a:hover { border-color: var(--tlj-red); color: var(--tlj-red); }
.tlj-filter a.is-active { background: var(--tlj-ink,#111); border-color: var(--tlj-ink,#111); color: #fff; }
.tlj-filter a.is-active:hover { background: var(--tlj-red); border-color: var(--tlj-red); color: #fff; }
.tlj-archive-layout { display: block !important; }
@media (max-width: 600px) {
	.tlj-filter { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; }
	.tlj-filter::-webkit-scrollbar { display: none; }
}

/* Build 39 — side card standfirst matches the feature */
.tlj-edit-side .tlj-edit-standfirst { font-size: 14px; margin-top: 8px; }
