/* ====================================================================
   Tomaro News Layout — Frontend Stylesheet
   All classes prefixed `.tnl-` to avoid collisions with the Kadence theme.
   ==================================================================== */

:root {
  --tnl-paper:        #FFFFFF;
  --tnl-paper-deep:   #F6F5F2;
  --tnl-paper-edge:   #E5E3DD;
  --tnl-ink:          #111111;
  --tnl-ink-soft:     #2A2A2A;
  --tnl-ink-mute:     #6E6E6E;
  --tnl-rule:         #1A1A1A;
  --tnl-hairline:     #E5E3DD;
  --tnl-crimson:      #B5201F;
  --tnl-crimson-deep: #861514;

  --tnl-font-display: "Fraunces", "Times New Roman", serif;
  --tnl-font-body:    "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  --tnl-font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", monospace;

  --tnl-container: 1380px;
  --tnl-gutter:    28px;
}

/* Scope reset only to plugin nodes so we don't fight the theme */
.tnl-breaking, .tnl-hero, .tnl-latest, .tnl-cat-section,
.tnl-pullquote, .tnl-picks, .tnl-newsletter {
  font-family: var(--tnl-font-body);
  color: var(--tnl-ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  background: var(--tnl-paper);
}

.tnl-breaking *, .tnl-hero *, .tnl-latest *, .tnl-cat-section *,
.tnl-pullquote *, .tnl-picks *, .tnl-newsletter * {
  box-sizing: border-box;
}

.tnl-breaking img, .tnl-hero img, .tnl-latest img, .tnl-cat-section img,
.tnl-pullquote img, .tnl-picks img, .tnl-newsletter img {
  max-width: 100%;
  display: block;
  height: auto;
}

.tnl-wrap {
  max-width: var(--tnl-container);
  margin: 0 auto;
  padding: 0 var(--tnl-gutter);
  position: relative;
  z-index: 2;
}

/* ============== TYPE UTILITIES ============== */
.tnl-eyebrow {
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tnl-crimson);
  font-weight: 500;
  display: inline-block;
}

.tnl-fade-in { animation: tnl-fadeUp .9s cubic-bezier(.2,.8,.2,1) both; }
.tnl-d2 { animation-delay: 0.15s; }
@keyframes tnl-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============== BREAKING TICKER ============== */
.tnl-breaking {
  background: var(--tnl-crimson);
  color: var(--tnl-paper);
  overflow: hidden;
  border-bottom: 1px solid var(--tnl-crimson-deep);
}
.tnl-breaking-inner {
  display: flex;
  align-items: center;
  height: 44px;
  gap: 18px;
}
.tnl-breaking-label {
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--tnl-ink);
  color: var(--tnl-paper);
  padding: 8px 14px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tnl-breaking-label::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--tnl-crimson);
  animation: tnl-pulse 1.6s ease-in-out infinite;
}
@keyframes tnl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
.tnl-breaking-track {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}
.tnl-breaking-stream {
  display: inline-flex;
  gap: 50px;
  animation: tnl-marquee 60s linear infinite;
  font-size: 13.5px;
  font-weight: 500;
}
.tnl-breaking-stream span::before {
  content: "◆";
  color: var(--tnl-ink);
  margin-right: 16px;
  font-size: 8px;
  vertical-align: middle;
}
@keyframes tnl-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============== HERO ============== */
.tnl-hero {
  padding: 50px 0 70px;
  border-bottom: 1px solid var(--tnl-rule);
}
.tnl-hero a { color: inherit; text-decoration: none; }

.tnl-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  align-items: start;
}
.tnl-hero-lead .tnl-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--tnl-ink);
}
.tnl-hero-lead .tnl-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.tnl-hero-lead:hover .tnl-image-wrap img { transform: scale(1.04); }
.tnl-img-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--tnl-paper);
  color: var(--tnl-ink);
  padding: 6px 12px;
  font-family: var(--tnl-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}
.tnl-caption {
  font-family: var(--tnl-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--tnl-ink-mute);
  margin: 8px 0 0;
  text-transform: uppercase;
}
.tnl-hero-lead .tnl-eyebrow { margin-top: 24px; display: block; }
.tnl-hero-title {
  font-family: var(--tnl-font-display);
  font-weight: 400;
  font-size: clamp(34px, 4.2vw, 58px);
  letter-spacing: -0.022em;
  line-height: 1.02;
  margin: 14px 0 18px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--tnl-ink);
}
.tnl-hero-title em {
  font-style: italic;
  color: var(--tnl-crimson);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.tnl-hero-lead .tnl-deck {
  font-family: var(--tnl-font-display);
  font-size: 19px;
  line-height: 1.5;
  color: var(--tnl-ink-soft);
  font-weight: 300;
  font-variation-settings: "opsz" 24;
  margin: 0 0 20px;
  max-width: 60ch;
}
.tnl-hero-lead .tnl-deck::first-letter {
  font-size: 3.4em;
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  color: var(--tnl-crimson);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 60;
}
.tnl-hero-meta {
  display: flex;
  gap: 18px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--tnl-hairline);
}
.tnl-author {
  display: flex;
  gap: 10px;
  align-items: center;
}
.tnl-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--tnl-paper-deep);
  border: 1px solid var(--tnl-hairline);
  overflow: hidden;
  display: inline-block;
  flex-shrink: 0;
}
.tnl-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tnl-avatar-sm { width: 28px; height: 28px; }
.tnl-author-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--tnl-ink);
}
.tnl-read {
  margin-left: auto;
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--tnl-ink-mute);
  text-transform: uppercase;
}

/* Hero side column — tuned for 5 cards */
.tnl-hero-side {
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--tnl-rule);
  padding-left: 48px;
}
.tnl-side-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tnl-ink);
  margin-bottom: 14px;
}
.tnl-side-header h3 {
  font-family: var(--tnl-font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 30;
  margin: 0;
  color: var(--tnl-ink);
}
.tnl-side-header .tnl-num {
  font-family: var(--tnl-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  color: var(--tnl-ink-mute);
}
.tnl-side-card {
  padding: 16px 0;
  border-bottom: 1px solid var(--tnl-hairline);
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 14px;
  transition: padding-left .3s;
}
.tnl-side-card:last-child { border-bottom: none; }
.tnl-side-card:hover { padding-left: 6px; }
.tnl-side-card .tnl-thumb {
  width: 78px; height: 78px;
  overflow: hidden;
  background: var(--tnl-ink);
  flex-shrink: 0;
}
.tnl-side-card .tnl-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
  filter: contrast(1.05) saturate(0.95);
}
.tnl-side-card:hover .tnl-thumb img { transform: scale(1.08); }
.tnl-side-card .tnl-thumb-empty { background: var(--tnl-paper-deep); }
.tnl-side-card .tnl-cat {
  font-family: var(--tnl-font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tnl-crimson);
  font-weight: 500;
  margin-bottom: 3px;
}
.tnl-side-card h4 {
  font-family: var(--tnl-font-display);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.18;
  margin: 0 0 6px;
  font-variation-settings: "opsz" 24;
  color: var(--tnl-ink);
}
.tnl-side-card .tnl-meta {
  font-family: var(--tnl-font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--tnl-ink-mute);
  text-transform: uppercase;
}

/* ============== SECTION HEADER (shared) ============== */
.tnl-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--tnl-ink);
  gap: 16px;
  flex-wrap: wrap;
}
.tnl-section-head .tnl-left { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.tnl-section-head h2 {
  font-family: var(--tnl-font-display);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 0;
  color: var(--tnl-ink);
}
.tnl-section-head h2 em {
  font-style: italic;
  color: var(--tnl-crimson);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.tnl-section-head .tnl-num-tag {
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tnl-ink-mute);
}
.tnl-section-head .tnl-more {
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--tnl-ink);
  padding-bottom: 4px;
  text-decoration: none;
  color: var(--tnl-ink);
  transition: all .25s;
}
.tnl-section-head .tnl-more::after { content: "→"; transition: transform .25s; }
.tnl-section-head .tnl-more:hover { color: var(--tnl-crimson); border-color: var(--tnl-crimson); gap: 12px; }
.tnl-section-head .tnl-more:hover::after { transform: translateX(4px); }

/* ============== LATEST NEWS GRID ============== */
.tnl-latest {
  padding: 60px 0;
  border-bottom: 1px solid var(--tnl-rule);
  background: var(--tnl-paper-deep);
}
.tnl-latest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--tnl-hairline);
  border-left: 1px solid var(--tnl-hairline);
}
.tnl-news-item {
  border-right: 1px solid var(--tnl-hairline);
  border-bottom: 1px solid var(--tnl-hairline);
  padding: 26px 24px;
  position: relative;
  transition: background .3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  text-decoration: none;
  color: var(--tnl-ink);
  background: var(--tnl-paper-deep);
}
.tnl-news-item:hover { background: var(--tnl-paper); }
.tnl-news-item .tnl-stamp {
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--tnl-crimson);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tnl-news-item .tnl-stamp .tnl-num {
  color: var(--tnl-ink-mute);
  font-size: 22px;
  font-family: var(--tnl-font-display);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 24, "SOFT" 100;
}
.tnl-cat-pill {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--tnl-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--tnl-ink);
  padding: 3px 9px;
  color: var(--tnl-ink);
}
.tnl-news-item h4 {
  font-family: var(--tnl-font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.012em;
  line-height: 1.18;
  font-variation-settings: "opsz" 30;
  margin: auto 0 0;
  color: var(--tnl-ink);
}
.tnl-news-item .tnl-author {
  font-family: var(--tnl-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--tnl-ink-mute);
  text-transform: uppercase;
  display: block;
}

/* ============== CATEGORY SECTIONS ============== */
.tnl-cat-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--tnl-rule);
}
.tnl-cat-section.tnl-alt { background: var(--tnl-paper-deep); }
.tnl-cat-section a { color: inherit; text-decoration: none; }

.tnl-cat-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.tnl-cat-grid-reverse { grid-template-columns: 1fr 1.4fr; }
.tnl-cat-grid-reverse .tnl-order-1 { order: 1; }
.tnl-cat-grid-reverse .tnl-order-2 { order: 2; }

.tnl-cat-feature .tnl-image-wrap {
  overflow: hidden;
  background: var(--tnl-ink);
  position: relative;
  aspect-ratio: 4 / 3;
}
.tnl-cat-feature .tnl-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
  filter: contrast(1.05) saturate(0.95);
}
.tnl-cat-feature:hover .tnl-image-wrap img { transform: scale(1.04); }
.tnl-cat-feature .tnl-label-block {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--tnl-paper);
  padding: 8px 14px;
  z-index: 2;
}
.tnl-cat-feature h3 {
  font-family: var(--tnl-font-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 42px);
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin: 22px 0 0;
  font-variation-settings: "opsz" 96, "SOFT" 30;
  color: var(--tnl-ink);
}
.tnl-cat-feature h3 em {
  font-style: italic;
  color: var(--tnl-crimson);
  font-variation-settings: "opsz" 96, "SOFT" 100;
}
.tnl-cat-feature .tnl-deck {
  font-family: var(--tnl-font-display);
  font-size: 17px;
  line-height: 1.55;
  color: var(--tnl-ink-soft);
  font-weight: 300;
  font-variation-settings: "opsz" 18;
  margin: 14px 0 0;
  max-width: 56ch;
}
.tnl-cat-feature .tnl-meta-row {
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--tnl-hairline);
}
.tnl-cat-feature .tnl-meta-row .tnl-author-name {
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tnl-cat-list { display: flex; flex-direction: column; }
.tnl-cat-list-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--tnl-hairline);
  display: grid;
  grid-template-columns: 38px 1fr 110px;
  gap: 16px;
  align-items: start;
  transition: transform .3s;
  text-decoration: none;
}
.tnl-cat-list-item:first-child {
  border-top: 2px solid var(--tnl-ink);
  padding-top: 22px;
}
.tnl-cat-list-item:hover { transform: translateX(6px); }
.tnl-cat-list-item .tnl-num {
  font-family: var(--tnl-font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 32px;
  color: var(--tnl-crimson);
  line-height: 1;
  font-variation-settings: "opsz" 48, "SOFT" 100;
}
.tnl-cat-list-item h4 {
  font-family: var(--tnl-font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 24;
  margin: 0 0 6px;
  color: var(--tnl-ink);
}
.tnl-cat-list-item .tnl-meta {
  font-family: var(--tnl-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--tnl-ink-mute);
  text-transform: uppercase;
}
.tnl-thumb-mini {
  width: 110px; height: 80px;
  overflow: hidden;
  background: var(--tnl-ink);
  flex-shrink: 0;
}
.tnl-thumb-mini img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.tnl-cat-list-item:hover .tnl-thumb-mini img { transform: scale(1.08); }

/* ============== PULL QUOTE ============== */
.tnl-pullquote {
  padding: 100px 0;
  border-bottom: 1px solid var(--tnl-rule);
  background: var(--tnl-ink);
  color: var(--tnl-paper);
  position: relative;
  overflow: hidden;
}
.tnl-pullquote::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 30%, rgba(181,32,31,0.18), transparent 40%),
    radial-gradient(circle at 82% 70%, rgba(140,106,31,0.14), transparent 45%);
  pointer-events: none;
}
.tnl-pullquote-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.tnl-pullquote .tnl-mark {
  font-family: var(--tnl-font-display);
  font-size: 140px;
  line-height: 0.6;
  color: var(--tnl-crimson);
  font-style: italic;
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  display: block;
  margin-bottom: -10px;
}
.tnl-pullquote blockquote {
  font-family: var(--tnl-font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.18;
  font-weight: 300;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 0 0 36px;
  color: var(--tnl-paper);
}
.tnl-pullquote blockquote em {
  font-style: italic;
  color: var(--tnl-crimson);
  font-weight: 300;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.tnl-pullquote .tnl-attrib {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--tnl-font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.tnl-pullquote .tnl-attrib::before, .tnl-pullquote .tnl-attrib::after {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}
.tnl-pullquote .tnl-attrib strong { color: var(--tnl-paper); font-weight: 500; }

/* ============== EDITOR'S PICKS ============== */
.tnl-picks {
  padding: 80px 0;
  border-bottom: 1px solid var(--tnl-rule);
}
.tnl-picks a { color: inherit; text-decoration: none; }
.tnl-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.tnl-pick-card { display: flex; flex-direction: column; }
.tnl-pick-card .tnl-image-wrap {
  overflow: hidden;
  background: var(--tnl-ink);
  aspect-ratio: 5/4;
  margin-bottom: 18px;
  position: relative;
}
.tnl-pick-card .tnl-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
  filter: contrast(1.05) saturate(0.95);
}
.tnl-pick-card:hover .tnl-image-wrap img { transform: scale(1.05); }
.tnl-pick-card .tnl-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--tnl-paper);
  color: var(--tnl-ink);
  padding: 6px 11px;
  font-family: var(--tnl-font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.tnl-pick-card .tnl-eyebrow { margin-bottom: 8px; }
.tnl-pick-card h4 {
  font-family: var(--tnl-font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 30;
  margin: 0 0 10px;
  color: var(--tnl-ink);
}
.tnl-pick-card p {
  color: var(--tnl-ink-soft);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.tnl-pick-card .tnl-meta {
  margin-top: auto;
  font-family: var(--tnl-font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--tnl-ink-mute);
  text-transform: uppercase;
}

/* ============== NEWSLETTER ============== */
.tnl-newsletter {
  padding: 90px 0;
  background: var(--tnl-paper-deep);
  border-bottom: 1px solid var(--tnl-rule);
  position: relative;
  overflow: hidden;
}
.tnl-newsletter::before, .tnl-newsletter::after {
  content: "";
  position: absolute;
  font-family: var(--tnl-font-display);
  font-size: 280px;
  font-style: italic;
  color: var(--tnl-crimson);
  opacity: 0.08;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  line-height: 1;
  pointer-events: none;
}
.tnl-newsletter::before { content: "T"; top: -40px; left: 6%; }
.tnl-newsletter::after  { content: "G"; bottom: -80px; right: 6%; }

.tnl-news-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tnl-newsletter-heading {
  font-family: var(--tnl-font-display);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: -0.022em;
  line-height: 1.05;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  margin: 14px 0 18px;
  color: var(--tnl-ink);
}
.tnl-newsletter-heading em {
  font-style: italic;
  color: var(--tnl-crimson);
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.tnl-newsletter .tnl-left p {
  font-family: var(--tnl-font-display);
  font-size: 18px;
  line-height: 1.55;
  color: var(--tnl-ink-soft);
  font-weight: 300;
  font-variation-settings: "opsz" 18;
  margin: 0;
  max-width: 50ch;
}
.tnl-form {
  background: var(--tnl-paper);
  padding: 40px;
  border: 1px solid var(--tnl-hairline);
  position: relative;
}
.tnl-corner {
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--tnl-ink);
}
.tnl-corner.tnl-tl { top: -1px; left: -1px;  border-right: none; border-bottom: none; }
.tnl-corner.tnl-tr { top: -1px; right: -1px; border-left:  none; border-bottom: none; }
.tnl-corner.tnl-bl { bottom: -1px; left: -1px;  border-right: none; border-top: none; }
.tnl-corner.tnl-br { bottom: -1px; right: -1px; border-left:  none; border-top: none; }
.tnl-form .tnl-label {
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tnl-crimson);
  margin-bottom: 12px;
  display: block;
}
.tnl-form h3 {
  font-family: var(--tnl-font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 30;
  margin: 0 0 22px;
  line-height: 1.15;
  color: var(--tnl-ink);
}
.tnl-field-row {
  display: flex;
  border-bottom: 1px solid var(--tnl-ink);
  margin-bottom: 18px;
}
.tnl-form input[type=email] {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: var(--tnl-font-body);
  font-size: 15px;
  padding: 12px 4px;
  color: var(--tnl-ink);
  outline: none;
  border-radius: 0;
  box-shadow: none;
  min-width: 0;
}
.tnl-form input[type=email]::placeholder { color: var(--tnl-ink-mute); }
.tnl-form button {
  background: var(--tnl-ink);
  color: var(--tnl-paper);
  border: 0;
  padding: 0 22px;
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 0;
}
.tnl-form button:hover { background: var(--tnl-crimson); }
.tnl-form .tnl-terms {
  font-family: var(--tnl-font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--tnl-ink-mute);
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0;
}
.tnl-form-msg {
  margin: 12px 0 0;
  font-family: var(--tnl-font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 1em;
}
.tnl-form-msg.tnl-success { color: var(--tnl-crimson); }
.tnl-form-msg.tnl-error   { color: #B00020; }

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .tnl-hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .tnl-hero-side { border-left: none; padding-left: 0; border-top: 2px solid var(--tnl-ink); padding-top: 26px; }
  .tnl-latest-grid { grid-template-columns: repeat(2, 1fr); }
  .tnl-cat-grid,
  .tnl-cat-grid-reverse { grid-template-columns: 1fr; gap: 36px; }
  .tnl-cat-grid-reverse .tnl-order-1 { order: 0; }
  .tnl-cat-grid-reverse .tnl-order-2 { order: 0; }
  .tnl-picks-grid { grid-template-columns: 1fr; gap: 30px; }
  .tnl-news-inner { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  :root { --tnl-gutter: 18px; }
  .tnl-latest-grid { grid-template-columns: 1fr; }
  .tnl-news-item { min-height: auto; }
  .tnl-hero-lead .tnl-image-wrap img { height: 280px; }
  .tnl-side-card { grid-template-columns: 70px 1fr; }
  .tnl-side-card .tnl-thumb { width: 70px; height: 70px; }
  .tnl-cat-list-item { grid-template-columns: 28px 1fr; }
  .tnl-cat-list-item .tnl-thumb-mini { display: none; }
  .tnl-pullquote { padding: 60px 0; }
  .tnl-pullquote .tnl-mark { font-size: 90px; }
  .tnl-form { padding: 26px; }
  .tnl-breaking-label { padding: 8px 10px; font-size: 10px; }
}
