/* ==================================================================
 * 20FIT MEDIA — FRONT PAGE CSS
 * Sections: hero featured / topics / all articles grid / newsletter
 * Loaded only on the homepage.
 * ================================================================== */

.tf-home { background: var(--c-paper); }

.tf-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ HERO FEATURED (full bleed) ============ */
.tf-hero-feat { position: relative; margin: 0; }
.tf-hero-feat__link {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}
.tf-hero-feat__img {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  background: var(--c-ink);
  overflow: hidden;
}
.tf-hero-feat__img img,
.tf-hero-feat__img-placeholder {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.tf-hero-feat__img-placeholder {
  background: linear-gradient(135deg, var(--c-ink), var(--c-red-deep));
}
.tf-hero-feat__link:hover .tf-hero-feat__img img { transform: scale(1.03); }
.tf-hero-feat__shade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.45) 65%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.tf-hero-feat__body {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 0 48px;
  color: var(--c-paper);
}
.tf-hero-feat__cat {
  display: inline-block;
  margin-bottom: 16px;
  padding: 5px 11px;
  background: var(--c-red);
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-paper);
}
.tf-hero-feat__title {
  margin: 0 0 16px;
  max-width: 920px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-paper);
}
.tf-hero-feat__excerpt {
  margin: 0 0 16px;
  max-width: 720px;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}
.tf-hero-feat__meta {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ============ SECTIONS ============ */
.tf-section { padding: 80px 0; }
.tf-section--cream { background: var(--c-cream); }

.tf-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.tf-section__kicker {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-red);
}
.tf-section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--c-ink);
}
.tf-section__all {
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--c-ink);
  border-bottom: 2px solid var(--c-red);
  padding-bottom: 4px;
  transition: color 0.15s var(--ease);
}
.tf-section__all:hover { color: var(--c-red); }

/* ============ TOPIC GRID ============ */
.tf-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--c-line);
  border: 1px solid var(--c-line);
}
.tf-topic {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 32px 28px;
  background: var(--c-paper);
  text-decoration: none;
  color: var(--c-ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  min-height: 120px;
  position: relative;
}
.tf-topic::after {
  content: "→";
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-ui);
  font-size: 16px;
  color: var(--c-line);
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.tf-topic:hover {
  background: var(--c-ink);
  color: var(--c-paper);
}
.tf-topic:hover::after {
  color: var(--c-red);
  transform: translateX(4px);
}
.tf-topic__name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  letter-spacing: -0.015em;
}
.tf-topic__count {
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-muted);
}
.tf-topic:hover .tf-topic__count {
  color: rgba(255, 255, 255, 0.65);
}

/* ============ ALL ARTICLES GRID (4 columns at desktop) ============ */
.tf-articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.tf-card {
  display: flex;
  flex-direction: column;
  background: var(--c-paper);
  text-decoration: none;
  color: var(--c-ink);
  transition: transform 0.3s var(--ease);
}
.tf-card:hover { transform: translateY(-4px); }
.tf-card:hover .tf-card__img img { transform: scale(1.04); }

.tf-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-line-soft);
}
.tf-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s var(--ease);
}
.tf-card__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--c-cream), var(--c-line-soft));
}

.tf-card__body {
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tf-card__cat {
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-red);
}
.tf-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  line-height: 1.2; letter-spacing: -0.015em;
  color: var(--c-ink);
  transition: color 0.15s var(--ease);
}
.tf-card:hover .tf-card__title { color: var(--c-red); }
.tf-card__meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--c-muted);
}

.tf-articles-grid__more {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ============ BUTTONS ============ */
.tf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: 0;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  text-decoration: none;
}
.tf-btn--primary {
  background: var(--c-ink);
  color: var(--c-paper);
}
.tf-btn--primary:hover { background: var(--c-red); }

.tf-articles-empty {
  padding: 60px 0;
  text-align: center;
  color: var(--c-muted);
  font-family: var(--font-body);
  font-size: 1rem;
}
.tf-articles-empty a {
  color: var(--c-red);
  font-weight: 600;
  border-bottom: 1px solid var(--c-red);
}

/* ============ NEWSLETTER STRIP ============ */
.tf-newsletter {
  background: var(--c-ink);
  color: var(--c-paper);
  padding: 64px 0;
  position: relative;
}
.tf-newsletter::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--c-red);
}
.tf-newsletter__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.tf-newsletter__kicker {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-ui);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--c-red);
}
.tf-newsletter__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-paper);
}
.tf-newsletter__sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
}
.tf-newsletter__form {
  display: flex;
  gap: 0;
  width: 100%;
}
.tf-newsletter__form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: var(--c-paper);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  border-right: 0;
  transition: border-color 0.2s var(--ease);
}
.tf-newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.45); }
.tf-newsletter__form input:focus { border-color: var(--c-red); }
.tf-newsletter__form button {
  padding: 16px 24px;
  background: var(--c-red);
  border: 1px solid var(--c-red);
  color: var(--c-paper);
  font-family: var(--font-ui);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s var(--ease);
  white-space: nowrap;
}
.tf-newsletter__form button:hover { background: var(--c-red-deep); }

/* ============ ALL ARTICLES PAGE (page-all-articles.php) ============ */
.tf-allpage {
  background: var(--c-paper);
  padding-top: 64px;
}
.tf-allpage__head {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-line);
}
.tf-allpage__title {
  margin: 6px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-ink);
}
.tf-allpage__sub {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--c-muted);
  max-width: 640px;
}

.tf-allpage__filter {
  background: var(--c-paper);
  padding: 24px 0;
  position: sticky;
  top: var(--header-h);
  z-index: 80;
  border-bottom: 1px solid var(--c-line);
}
.admin-bar .tf-allpage__filter { top: calc(var(--header-h) + 32px); }
@media (max-width: 782px) {
  .admin-bar .tf-allpage__filter { top: calc(var(--header-h) + 46px); }
}

/* CATEGORY CHIPS */
.tf-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tf-chips::-webkit-scrollbar { display: none; }
.tf-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.tf-chip:hover {
  background: var(--c-line);
  border-color: var(--c-line);
}
.tf-chip.is-active {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
}
.tf-chip__count {
  font-size: 11px;
  opacity: 0.7;
  font-weight: 500;
}

/* PAGINATION */
.tf-pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
.tf-pagination .page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tf-pagination .page-numbers li { margin: 0; }
.tf-pagination .page-numbers a,
.tf-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-ink);
  background: transparent;
  border: 1px solid var(--c-line);
  text-decoration: none;
  transition: background 0.15s var(--ease), color 0.15s var(--ease), border-color 0.15s var(--ease);
}
.tf-pagination .page-numbers a:hover {
  background: var(--c-cream);
  border-color: var(--c-ink);
}
.tf-pagination .page-numbers .current {
  background: var(--c-ink);
  color: var(--c-paper);
  border-color: var(--c-ink);
}
.tf-pagination .page-numbers .dots {
  border-color: transparent;
  color: var(--c-muted);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
  .tf-articles-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .tf-hero-feat__img { aspect-ratio: 4 / 3; }
  .tf-hero-feat__body { padding-bottom: 36px; }
  .tf-topic-grid { grid-template-columns: repeat(2, 1fr); }
  .tf-newsletter__inner { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .tf-container { padding: 0 20px; }
  .tf-section { padding: 56px 0; }
  .tf-hero-feat__body { padding-bottom: 28px; }
  .tf-hero-feat__img { aspect-ratio: 3 / 4; }
  .tf-articles-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .tf-topic-grid { grid-template-columns: 1fr; }
  .tf-section__head { flex-direction: column; align-items: flex-start; }
  .tf-newsletter { padding: 48px 0; }
  .tf-newsletter__form { flex-direction: column; }
  .tf-newsletter__form input { border-right: 1px solid rgba(255, 255, 255, 0.18); border-bottom: 0; }
  .tf-newsletter__form button { width: 100%; }

  .tf-allpage { padding-top: 40px; }
  .tf-allpage__filter { padding: 16px 0; }
  .tf-pagination .page-numbers a,
  .tf-pagination .page-numbers span {
    min-width: 36px; height: 36px; font-size: 12px;
  }
}

@media (max-width: 480px) {
  .tf-articles-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* =====================================================================
   MONOCLE-INSPIRED COMPONENTS (added round 4)
   Editorial-dense layout: hero split, side panel, ecosystem features,
   list view, section dividers, kickers.
===================================================================== */

/* ---------- KICKER (small label) ---------- */
.tf-kicker {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.tf-kicker--red { color: var(--c-red); }

/* ---------- SECTION DIVIDER ---------- */
.tf-divider {
  border: 0;
  border-top: 1px solid var(--c-line);
  margin: 0;
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
}

/* ---------- SMALLER SECTION VARIANT (Monocle-density) ---------- */
.tf-section--sm {
  padding: 56px 0;
}
@media (max-width: 768px) {
  .tf-section--sm { padding: 40px 0; }
}

/* ---------- HERO SPLIT (60/40 grid) — Monocle-style compact ---------- */
.tf-hero-split {
  padding: 32px 0 24px;
  background: var(--c-paper);
}
.tf-hero-split__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
.tf-hero-split__feat {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s var(--ease);
}
.tf-hero-split__feat:hover { transform: translateY(-2px); }
.tf-hero-split__feat-img {
  position: relative;
  aspect-ratio: 16 / 9;
  max-height: 460px;
  overflow: hidden;
  background: var(--c-line-soft);
  margin-bottom: 20px;
}
.tf-hero-split__feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.tf-hero-split__feat:hover .tf-hero-split__feat-img img { transform: scale(1.04); }
.tf-hero-split__feat-body {
  padding-right: 16px;
}
.tf-hero-split__feat-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-ink);
  margin: 0 0 12px;
}
.tf-hero-split__feat:hover .tf-hero-split__feat-title { color: var(--c-red-deep); }
.tf-hero-split__feat-lead {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--c-muted);
  margin: 0 0 12px;
}

/* ---------- SIDE PANEL (right column of hero split) ---------- */
.tf-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Arena promo box */
.tf-side-promo {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--c-ink);
  color: var(--c-paper);
  text-decoration: none;
  border-top: 3px solid var(--c-red);
  transition: background 0.2s var(--ease);
}
.tf-side-promo:hover { background: var(--c-ink-soft); }
.tf-side-promo__kicker {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 12px;
}
.tf-side-promo__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--c-paper);
  margin-bottom: 16px;
}
.tf-side-promo__cta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-paper);
  opacity: 0.8;
  transition: opacity 0.2s var(--ease);
}
.tf-side-promo:hover .tf-side-promo__cta { opacity: 1; }

/* Also reading list */
.tf-side-list {
  display: flex;
  flex-direction: column;
}
.tf-side-list__head {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}
.tf-side-list__item {
  display: flex;
  flex-direction: column;
  padding: 14px 0;
  border-bottom: 1px solid var(--c-line-soft);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.2s var(--ease);
}
.tf-side-list__item:last-child { border-bottom: 0; }
.tf-side-list__item:hover {
  padding-left: 4px;
}
.tf-side-list__cat {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 6px;
}
.tf-side-list__title {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 6px;
  transition: color 0.2s var(--ease);
}
.tf-side-list__item:hover .tf-side-list__title { color: var(--c-red-deep); }
.tf-side-list__meta {
  font-family: var(--font-ui);
  font-size: 11px;
  color: var(--c-muted-soft);
  letter-spacing: 0.02em;
}

/* ---------- EXPLORE 20FIT CAROUSEL ---------- */
.tf-eco-carousel__controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tf-eco-carousel__btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-ink);
  background: var(--c-paper);
  color: var(--c-ink);
  font-family: var(--font-ui);
  font-size: 18px;
  line-height: 1;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.tf-eco-carousel__btn:hover,
.tf-eco-carousel__btn:focus-visible {
  background: var(--c-red);
  border-color: var(--c-red);
  color: var(--c-paper);
  outline: none;
}
.tf-eco-carousel {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tf-eco-carousel::-webkit-scrollbar { display: none; }
.tf-eco-grid {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.tf-eco-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
  text-decoration: none;
  color: inherit;
  background: var(--c-paper);
  scroll-snap-align: start;
  transition: transform 0.3s var(--ease);
}
.tf-eco-card:hover { transform: translateY(-2px); }
.tf-eco-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-line-soft);
  margin-bottom: 18px;
}
.tf-eco-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.tf-eco-card:hover .tf-eco-card__img img { transform: scale(1.04); }
.tf-eco-card__body {
  padding: 0 4px;
}
.tf-eco-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--c-ink);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.tf-eco-card:hover .tf-eco-card__title { color: var(--c-red-deep); }
.tf-eco-card__sub {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-muted);
  margin: 0 0 14px;
}
.tf-eco-card__cta {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-red);
}

/* ---------- LIST VIEW (Events & News horizontal) ---------- */
.tf-list-view {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.tf-list-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-line);
  text-decoration: none;
  color: inherit;
  align-items: start;
  transition: padding-left 0.2s var(--ease);
}
.tf-list-item:hover { padding-left: 8px; }
.tf-list-item__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-line-soft);
}
.tf-list-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.tf-list-item:hover .tf-list-item__img img { transform: scale(1.04); }
.tf-list-item__body {
  display: flex;
  flex-direction: column;
}
.tf-list-item__title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--c-ink);
  margin: 8px 0 10px;
  letter-spacing: -0.005em;
}
.tf-list-item:hover .tf-list-item__title { color: var(--c-red-deep); }
.tf-list-item__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  color: var(--c-muted);
  margin: 0 0 10px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .tf-hero-split { padding: 24px 0 16px; }
  .tf-hero-split__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tf-hero-split__feat-img {
    aspect-ratio: 16 / 9;
    max-height: 320px;
  }
  .tf-hero-split__feat-title { font-size: 1.5rem; }
  .tf-eco-carousel__controls { width: 100%; }
  .tf-eco-carousel__btn { flex: 1; }
  .tf-eco-card { flex-basis: min(82vw, 360px); }
  .tf-list-item {
    grid-template-columns: 140px 1fr;
    gap: 18px;
  }
  .tf-list-item__title { font-size: 17px; }
}
@media (max-width: 580px) {
  .tf-hero-split__feat-img {
    aspect-ratio: 4 / 3;
    max-height: 260px;
  }
  .tf-side-promo { padding: 20px 18px; }
  .tf-side-promo__title { font-size: 18px; }
  .tf-list-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .tf-list-item__img { aspect-ratio: 16 / 9; }
}
