/*
Theme Name: Truth In Media
Theme URI: https://truthinmedia.com
Author: Ben Swann
Author URI: https://truthinmedia.com
Description: Truth In Media — independent journalism platform. Ben Swann design with Truth In Media content.
Version: 1.5.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: truth-in-media
Tags: dark, news, magazine, elementor, custom-header
*/

/* ===================================================
   TRUTH IN MEDIA — STYLES
   =================================================== */

/* ---- CSS VARIABLES ---- */
:root {
  --bs-red:       #dc2626;
  --bs-red-dark:  #b91c1c;
  --bs-red-light: #ef4444;
  --bs-gray-900:  #111827;
  --bs-gray-800:  #1f2937;
  --bs-gray-700:  #374151;
  --bs-gray-500:  #6b7280;
  --bs-gray-400:  #9ca3af;
  --bs-gray-300:  #d1d5db;
  --bs-gray-200:  #e5e7eb;
  --bs-gray-100:  #f3f4f6;
  --bs-gray-50:   #f9fafb;
  --bs-black:     #000000;
  --bs-white:     #ffffff;
  --bs-max-w:     1600px;
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
.bs-header *, .bs-footer *, .bs-main *, .bs-newsletter *, .bs-join-band * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }

/* ==============================
   HEADER
   ============================== */
.bs-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.bs-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Top bar */
.bs-header-top {
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
}
.bs-header-inner {
  max-width: var(--bs-max-w);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.bs-logo {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.bs-logo-primary {
  background: var(--bs-black);
  color: var(--bs-white);
  padding: 8px 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.bs-logo-dot {
  color: var(--bs-red) !important;
  font-size: 1.375rem;
  font-weight: 800;
  text-transform: uppercase !important;
  letter-spacing: 0.05em;
  padding-left: 4px;
}

/* Main nav — hidden on desktop, only shown as mobile dropdown */
.bs-nav-main {
  display: none;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.bs-nav-main.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  background: rgba(255,255,255,0.97);
  padding: 20px 16px;
  border-bottom: 1px solid var(--bs-gray-200);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  z-index: 999;
}
.bs-nav-main.open li { width: 100%; }
.bs-nav-main.open li a { display: block; padding: 10px 0; font-size: 1.0625rem; border-bottom: 1px solid var(--bs-gray-100); color: var(--bs-gray-900); font-weight: 500; }
.bs-nav-main.open li a:hover { color: var(--bs-red); }

/* Header actions */
.bs-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.bs-btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: var(--bs-gray-900);
  transition: background 0.2s;
}
.bs-btn-search:hover { background: rgba(243, 244, 246, 0.8); }
.bs-btn-search svg { width: 20px; height: 20px; }

.bs-btn-subscribe {
  background: var(--bs-black);
  color: var(--bs-white);
  padding: 10px 32px;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: all 0.25s;
}
.bs-btn-subscribe:hover {
  background: var(--bs-gray-800);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Red nav bar */
.bs-nav-red {
  background: linear-gradient(to right, var(--bs-red), var(--bs-red-dark));
}
.bs-nav-red-inner {
  max-width: var(--bs-max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.bs-nav-red ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  padding: 14px 0;
  overflow-x: auto;
}
.bs-nav-red ul li a {
  color: var(--bs-white);
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.bs-nav-red ul li a:hover { color: rgba(229, 231, 235, 0.9); }

/* Hamburger — mobile only; desktop uses the red navigation bar */
.bs-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

/* Keep the navigation control visible even when plugin button resets load. */
@media (max-width: 960px) {
  .bs-menu-toggle {
    display: flex !important;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
  }
}
.bs-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bs-gray-900);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ==============================
   MAIN LAYOUT
   ============================== */
.bs-page-bg {
  background: linear-gradient(135deg, var(--bs-gray-50), var(--bs-gray-100));
  min-height: 100vh;
}
.bs-main {
  max-width: 1920px;
  margin: 0 auto;
  padding: 32px 24px;
}
.bs-section {
  margin-bottom: 56px;
}

/* ==============================
   HERO SECTION
   ============================== */
.bs-hero-wrap {
  position: relative;
  height: 600px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.bs-hero-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.7s ease;
}
.bs-hero-wrap:hover img { transform: scale(1.05); }

.bs-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.1) 100%);
}
.bs-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}
.bs-hero-glass {
  background: rgba(0, 0, 0, 0.72);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bs-hero-glass h1,
.bs-hero-glass .tim-hero-title {
  color: var(--bs-white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 32px;
  max-width: 750px;
  line-height: 1.2;
}

/* Pagination dots */
.bs-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}
.bs-dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
  padding: 0;
}
.bs-dot.active  { background: var(--bs-red); }
.bs-dot.inactive { background: var(--bs-gray-300); }

/* ==============================
   BUTTONS
   ============================== */
.bs-btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--bs-white);
  padding: 16px 32px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.bs-btn-watch:hover {
  background: rgba(185, 28, 28, 0.95);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transform: scale(1.05);
}
.bs-btn-watch svg { width: 20px; height: 20px; fill: white; }

.bs-btn-watch-sm {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--bs-white);
  padding: 12px 24px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.25s;
  letter-spacing: 0.02em;
}
.bs-btn-watch-sm:hover {
  background: rgba(185, 28, 28, 0.95);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: scale(1.05);
}
.bs-btn-watch-sm svg { width: 16px; height: 16px; fill: white; }

/* ==============================
   SECTION HEADER
   ============================== */
.bs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}
.bs-section-header h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--bs-gray-900);
}
.bs-btn-explore {
  background: var(--bs-black);
  color: var(--bs-white);
  padding: 10px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: all 0.25s;
}
.bs-btn-explore:hover {
  background: var(--bs-gray-800);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ==============================
   VIDEO CARD
   ============================== */
.bs-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
.bs-card:hover { box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); }
.bs-card.sm { height: 180px; }
.bs-card.md { height: 300px; }
.bs-card.lg { height: 420px; }

.bs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}
.bs-card:hover img { transform: scale(1.1); }

.bs-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}
.bs-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(220, 38, 38, 0.9);
  backdrop-filter: blur(4px);
  color: var(--bs-white);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  letter-spacing: 0.05em;
}
.bs-card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.bs-card-glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s;
}
.bs-card:hover .bs-card-glass { background: rgba(0, 0, 0, 0.45); }
.bs-card-cat {
  color: var(--bs-gray-300);
  font-size: 0.875rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.bs-card-glass h3 {
  color: var(--bs-white);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}

/* ==============================
   GRIDS
   ============================== */
.bs-grid-1 { display: grid; grid-template-columns: 1fr; gap: 32px; }
.bs-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.bs-grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.bs-mb-8 { margin-bottom: 32px; }

/* ==============================
   SPLIT HERO CARD (USA/Iran style)
   ============================== */
.bs-split-card {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  margin-bottom: 32px;
}
.bs-split-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}
.bs-split-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.bs-split-card:hover .bs-split-imgs img { transform: scale(1.05); }
.bs-split-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}
.bs-split-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(220, 38, 38, 0.9);
  backdrop-filter: blur(12px);
  color: var(--bs-white);
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid rgba(239, 68, 68, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.05em;
}
.bs-split-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}
.bs-split-glass {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.3);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.bs-split-glass h3 {
  color: var(--bs-white);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 24px;
  max-width: 680px;
}

/* Thumbnail row */
.bs-thumb {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s;
}
.bs-thumb:hover { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25); }
.bs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.bs-thumb:hover img { transform: scale(1.1); }

/* ==============================
   NEWS LIST PANEL
   ============================== */
.bs-news-panel {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.bs-news-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  cursor: pointer;
  transition: background 0.2s, padding 0.2s;
  border-radius: 8px;
}
.bs-news-item:last-child { border-bottom: none; }
.bs-news-item:hover { background: linear-gradient(to right, rgba(249,250,251,0.9), transparent); padding-left: 8px; }
.bs-news-item:hover .bs-news-chevron { transform: translateX(4px); }
.bs-news-chevron {
  width: 20px;
  height: 20px;
  color: var(--bs-red);
  flex-shrink: 0;
  margin-top: 2px;
  transition: transform 0.2s;
}
.bs-news-chevron svg { width: 20px; height: 20px; stroke: var(--bs-red); }
.bs-news-text { flex: 1; }
.bs-news-text p {
  color: var(--bs-gray-900);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s;
}
.bs-news-item:hover .bs-news-text p { color: var(--bs-red); }
.bs-news-time {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--bs-gray-400);
  font-size: 0.8rem;
  flex-shrink: 0;
  background: rgba(156, 163, 175, 0.15);
  padding: 3px 10px;
  border-radius: 9999px;
  white-space: nowrap;
}
.bs-news-time svg { width: 13px; height: 13px; stroke: var(--bs-gray-400); }

/* ==============================
   NEWSLETTER
   ============================== */
.bs-newsletter {
  position: relative;
  background: linear-gradient(135deg, var(--bs-gray-900), var(--bs-black));
  padding: 80px 0;
  overflow: hidden;
}
.bs-newsletter-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(220,38,38,0.1), rgba(147,51,234,0.1));
  pointer-events: none;
}
.bs-newsletter-inner {
  max-width: var(--bs-max-w);
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.bs-newsletter-glass {
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}
.bs-newsletter-glass h2 {
  color: var(--bs-white);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.bs-newsletter-glass p {
  color: var(--bs-gray-300);
  font-size: 1.125rem;
  margin-bottom: 32px;
}
.bs-newsletter-form {
  max-width: 576px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
}
.bs-newsletter-form input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border-radius: 9999px;
  border: none;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  outline: none;
  transition: box-shadow 0.2s;
}
.bs-newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 0 2px var(--bs-red), 0 4px 12px rgba(0, 0, 0, 0.15);
}
.bs-btn-newsletter {
  background: var(--bs-red);
  color: var(--bs-white);
  padding: 16px 40px;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.25s;
}
.bs-btn-newsletter:hover {
  background: var(--bs-red-dark);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  transform: scale(1.05);
}

/* ==============================
   FOOTER
   ============================== */
.bs-footer {
  background: var(--bs-black);
  color: var(--bs-white);
}
.bs-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 48px 24px;
}
.bs-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.bs-footer-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
}
.bs-footer-logo-primary {
  background: var(--bs-white);
  color: var(--bs-black);
  padding: 6px 12px;
  font-size: 0.875rem;
  font-weight: 700;
}
.bs-footer-logo-dot {
  color: var(--bs-red);
  font-size: 1.125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-left: 4px;
}
.bs-footer h3 {
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.bs-footer ul { list-style: none; }
.bs-footer ul li { margin-bottom: 8px; }
.bs-footer ul li a {
  color: var(--bs-gray-400);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.bs-footer ul li a:hover { color: var(--bs-white); }
.bs-footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bs-footer-social a {
  color: var(--bs-gray-400);
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.bs-footer-social a:hover { color: var(--bs-white); }
.bs-footer-social svg { width: 20px; height: 20px; }
.bs-footer-bottom {
  border-top: 1px solid var(--bs-gray-800);
  padding-top: 24px;
}
.bs-footer-bottom p {
  color: var(--bs-gray-500);
  font-size: 0.75rem;
}
.bs-footer-bottom a {
  color: var(--bs-gray-500);
  transition: color 0.2s;
}
.bs-footer-bottom a:hover { color: var(--bs-gray-300); }

/* ==============================
   RESPONSIVE
   ============================== */

/* ── Tablet (≤ 1024px) ── */
@media (max-width: 1024px) {
  .bs-grid-3            { grid-template-columns: repeat(2, 1fr); }
  .bs-footer-grid       { grid-template-columns: repeat(2, 1fr); }
  .bs-feature-grid      { grid-template-columns: repeat(2, 1fr); }
  .bs-values-grid       { grid-template-columns: repeat(2, 1fr); }
  .bs-founder           { grid-template-columns: 280px 1fr; gap: 40px; }
  .bs-events-layout     { grid-template-columns: 1fr; }
  .bs-investigations-grid { grid-template-columns: 1fr; }
  .bs-investigation-main  { height: 380px; grid-row: 1; }
  .bs-video-grid        { grid-template-columns: repeat(2, 1fr); }
  .bs-split-text        { gap: 40px; }
}

/* ── Mobile (≤ 768px) ── */
@media (max-width: 768px) {
  /* Header */
  .bs-header-inner      { padding: 14px 16px; }
  .bs-nav-red           { display: none; }
  .bs-menu-toggle       { display: flex; }
  /* Hide Join Now pill from header on mobile — it's in the dropdown menu instead */
  .bs-btn-subscribe     { display: none !important; }

  /* Join Now inside mobile nav menu */
  .bs-nav-join-mobile a {
    display: block;
    margin-top: 8px;
    padding: 12px 0 !important;
    background: var(--bs-black);
    color: var(--bs-white) !important;
    border-radius: 9999px;
    text-align: center;
    font-weight: 700 !important;
    font-size: 1rem !important;
    border-bottom: none !important;
    letter-spacing: 0.01em;
  }

  /* Main layout */
  .bs-main              { padding: 20px 14px; }
  .bs-section           { margin-bottom: 40px; }

  /* Hero — tall enough for all content */
  .bs-hero-wrap         { height: 500px; }
  .bs-hero-content      { padding: 16px; }
  .bs-hero-glass        { padding: 16px; }
  .bs-hero-glass h1,
  .bs-hero-glass .tim-hero-title { font-size: 1.375rem; margin-bottom: 12px; }
  .bs-hero-glass p      { font-size: 0.9375rem; line-height: 1.55; margin-bottom: 20px; }

  /* Grids → single column */
  .bs-grid-3, .bs-grid-2-1 { grid-template-columns: 1fr; }
  .bs-split-imgs        { grid-template-columns: 1fr; }
  .bs-split-card        { height: auto; min-height: 280px; }
  .bs-split-text        { grid-template-columns: 1fr; gap: 24px; }

  /* Cards — taller on mobile so text isn't cut off */
  .bs-card.md           { height: 300px; }
  .bs-card.lg           { height: 340px; }
  .bs-card-body         { padding: 16px; }
  .bs-card-glass        { padding: 14px; }
  .bs-card-glass h3     { font-size: 1rem; margin-bottom: 10px; }

  /* TIM components */
  .bs-feature-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bs-feature-card      { padding: 24px 18px; }
  .bs-values-grid       { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bs-value-card        { padding: 24px; }
  .bs-founder           { grid-template-columns: 1fr; gap: 28px; }
  .bs-founder-img img   { height: 300px; }
  .bs-founder-content blockquote { font-size: 1.375rem; }
  .bs-events-layout     { grid-template-columns: 1fr; }
  .bs-event-featured    { height: 280px; }
  .bs-investigations-grid { grid-template-columns: 1fr; }
  .bs-investigation-main  { height: 300px; grid-row: 1; }
  .bs-video-grid        { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* Page hero */
  .bs-page-hero         { padding: 56px 16px 44px; }
  .bs-page-hero h1      { font-size: 2rem; }

  /* Newsletter / Join */
  .bs-newsletter-form   { flex-direction: column; }
  .bs-btn-newsletter    { width: 100%; text-align: center; justify-content: center; }
  .bs-join-band         { padding: 64px 0; }
  .bs-join-band h2      { font-size: 1.875rem; }
  .bs-join-form         { flex-direction: column; gap: 10px; }
  .bs-join-form button  { width: 100%; }
  .bs-benefits-grid     { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .bs-trust-signals     { flex-direction: column; gap: 16px; }

  /* Footer */
  .bs-footer-grid       { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}

@media (min-width: 769px) {
  .bs-nav-main.open { display: none; }
}

/* ── Small mobile (≤ 480px) ── */
@media (max-width: 480px) {
  .bs-header-inner      { padding: 12px 12px; }
  .bs-hero-wrap         { height: 480px; }
  .bs-hero-glass h1,
  .bs-hero-glass .tim-hero-title { font-size: 1.25rem; }
  .bs-section-header h2 { font-size: 1.375rem; }
  .bs-split-glass h3    { font-size: 1.125rem; }
  .bs-page-hero h1      { font-size: 1.625rem; }
  .bs-page-hero p       { font-size: 0.9375rem; }
  .bs-feature-grid      { grid-template-columns: 1fr; }
  .bs-values-grid       { grid-template-columns: 1fr; }
  .bs-video-grid        { grid-template-columns: 1fr; }
  .bs-benefits-grid     { grid-template-columns: 1fr; }
  .bs-footer-grid       { grid-template-columns: 1fr; }
  .bs-card.md           { height: 280px; }
  .bs-card.lg           { height: 320px; }
  .bs-investigation-main { height: 260px; }
  .bs-join-band h2      { font-size: 1.625rem; }
  .bs-section           { margin-bottom: 32px; }
}

/* ==============================
   TIM CONTENT EXTENSIONS
   (Truth in Media content in Ben Swann design)
   ============================== */

/* Feature / What We Provide grid */
.bs-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bs-feature-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(229, 231, 235, 0.5);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
}
.bs-feature-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.bs-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--bs-red), var(--bs-red-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.bs-feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}
.bs-feature-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bs-gray-900);
  margin-bottom: 10px;
}
.bs-feature-body {
  font-size: 0.9375rem;
  color: var(--bs-gray-500);
  line-height: 1.65;
}

/* Values grid */
.bs-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bs-value-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(229,231,235,0.5);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
}
.bs-value-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.bs-value-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--bs-red);
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}
.bs-value-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bs-gray-900);
  margin-bottom: 10px;
}
.bs-value-body {
  font-size: 0.9375rem;
  color: var(--bs-gray-500);
  line-height: 1.65;
}

/* Founder block */
.bs-founder {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 48px;
  align-items: center;
}
.bs-founder-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}
.bs-founder-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}
.bs-founder-content blockquote {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--bs-gray-900);
  line-height: 1.3;
  margin-bottom: 24px;
  border-left: 4px solid var(--bs-red);
  padding-left: 24px;
}
.bs-founder-content p {
  color: var(--bs-gray-500);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.bs-founder-sig {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--bs-gray-200);
}
.bs-founder-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--bs-gray-900);
}
.bs-founder-role {
  font-size: 0.875rem;
  color: var(--bs-gray-500);
}

/* Events layout */
.bs-events-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
.bs-event-featured {
  position: relative;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
.bs-event-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.bs-event-featured:hover img { transform: scale(1.05); }
.bs-event-featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
}
.bs-event-featured-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
}
.bs-event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220,38,38,0.9);
  backdrop-filter: blur(8px);
  color: white;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 16px;
}
.bs-event-featured-title {
  color: white;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
}
.bs-event-featured-meta {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}
.bs-event-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bs-event-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--bs-gray-200);
  cursor: pointer;
  transition: padding 0.2s;
}
.bs-event-item:hover { padding-left: 8px; }
.bs-event-item:last-child { border-bottom: none; }
.bs-event-item-date {
  text-align: center;
  min-width: 44px;
}
.bs-event-item-date .month {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--bs-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.bs-event-item-date .day {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--bs-gray-900);
  line-height: 1;
}
.bs-event-item-divider {
  width: 1px;
  background: var(--bs-gray-200);
  align-self: stretch;
}
.bs-event-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--bs-gray-900);
  line-height: 1.4;
  margin-bottom: 6px;
}
.bs-event-item-meta {
  font-size: 0.8125rem;
  color: var(--bs-gray-500);
}

/* Split layout (Why We Exist) */
.bs-split-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.bs-split-text-divider {
  width: 48px;
  height: 4px;
  background: var(--bs-red);
  margin-bottom: 24px;
  border-radius: 2px;
}
.bs-split-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--bs-gray-900);
  line-height: 1.2;
}
.bs-split-text p {
  font-size: 1.0625rem;
  color: var(--bs-gray-500);
  line-height: 1.75;
  margin-bottom: 16px;
}
.bs-split-text .bs-highlight {
  color: var(--bs-red);
  font-style: italic;
}

/* Investigations grid */
.bs-investigations-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.bs-investigation-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  cursor: pointer;
}
.bs-investigation-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.bs-investigation-main:hover img { transform: scale(1.05); }
.bs-investigation-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 55%, transparent 100%);
}
.bs-investigation-main-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 36px;
}
.bs-investigation-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(229,231,235,0.5);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}
.bs-investigation-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.bs-investigation-card-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--bs-red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bs-investigation-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bs-gray-900);
  line-height: 1.4;
  margin-bottom: 12px;
}
.bs-investigation-card-meta {
  font-size: 0.8125rem;
  color: var(--bs-gray-500);
}

/* Join band */
.bs-join-band {
  background: linear-gradient(135deg, var(--bs-gray-900), var(--bs-black));
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.bs-join-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(220,38,38,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.bs-join-band-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.bs-join-band h2 {
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
.bs-join-band > .bs-join-band-inner > p {
  color: var(--bs-gray-300);
  font-size: 1.125rem;
  margin-bottom: 40px;
}
.bs-join-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.bs-join-form input[type="email"] {
  flex: 1;
  padding: 16px 24px;
  border-radius: 9999px;
  border: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.92);
  outline: none;
  transition: box-shadow 0.2s;
}
.bs-join-form input[type="email"]:focus {
  box-shadow: 0 0 0 2px var(--bs-red);
}
.bs-join-form button {
  background: var(--bs-red);
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
}
.bs-join-form button:hover {
  background: var(--bs-red-dark);
  transform: scale(1.05);
}

/* Page hero (inner pages) */
.bs-page-hero {
  background: linear-gradient(135deg, var(--bs-gray-900), var(--bs-black));
  padding: 100px 32px 80px;
  position: relative;
  overflow: hidden;
}
.bs-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(220,38,38,0.15), rgba(147,51,234,0.08));
  pointer-events: none;
}
.bs-page-hero-inner {
  max-width: var(--bs-max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.bs-page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-red);
  margin-bottom: 20px;
}
.bs-page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--bs-red);
}
.bs-page-hero h1 {
  color: white;
  font-size: 3.25rem;
  font-weight: 700;
  max-width: 700px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.bs-page-hero p {
  color: var(--bs-gray-300);
  font-size: 1.125rem;
  max-width: 600px;
  line-height: 1.75;
}

/* Section label (red bar tag) */
.bs-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs-red);
  margin-bottom: 16px;
}
.bs-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bs-red);
  flex-shrink: 0;
}

/* Video grid */
.bs-video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bs-video-card {
  border-radius: 12px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.bs-video-card:hover {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: translateY(-4px);
}
.bs-video-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.bs-video-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center top;
  transition: transform 0.7s ease;
}
.bs-video-card:hover .bs-video-thumb img { transform: scale(1.08); }
.bs-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  transition: background 0.3s;
}
.bs-video-card:hover .bs-video-play { background: rgba(0,0,0,0.5); }
.bs-video-play svg {
  width: 40px; height: 40px; fill: white;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.bs-video-info {
  padding: 20px;
}
.bs-video-duration {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--bs-red);
  margin-bottom: 8px;
}
.bs-video-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--bs-gray-900);
  line-height: 1.45;
}

/* Join benefits */
.bs-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.bs-benefit-card {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(229,231,235,0.5);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}
.bs-benefit-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--bs-red), var(--bs-red-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.bs-benefit-icon svg { width: 22px; height: 22px; stroke: white; }
.bs-benefit-title {
  font-size: 1rem; font-weight: 700; color: var(--bs-gray-900); margin-bottom: 10px;
}
.bs-benefit-body {
  font-size: 0.9375rem; color: var(--bs-gray-500); line-height: 1.65;
}

/* Trust signals */
.bs-trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.bs-trust-item {
  text-align: center;
}
.bs-trust-label {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--bs-red);
  display: block;
}
.bs-trust-sub {
  font-size: 0.8125rem;
  color: var(--bs-gray-300);
  margin-top: 4px;
}

/* Responsive additions */
@media (max-width: 1024px) {
  .bs-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-video-grid   { grid-template-columns: repeat(2, 1fr); }
  .bs-values-grid  { grid-template-columns: repeat(2, 1fr); }
  .bs-founder      { grid-template-columns: 1fr; }
  .bs-founder-img img { height: auto; }
  .bs-investigations-grid { grid-template-columns: 1fr; }
  .bs-investigation-main  { grid-row: auto; height: 340px; }
}
@media (max-width: 768px) {
  .bs-feature-grid  { grid-template-columns: 1fr; }
  .bs-video-grid    { grid-template-columns: 1fr; }
  .bs-values-grid   { grid-template-columns: 1fr; }
  .bs-split-text    { grid-template-columns: 1fr; gap: 32px; }
  .bs-events-layout { grid-template-columns: 1fr; }
  .bs-event-featured { height: 280px; }
  .bs-join-form     { flex-direction: column; }
  .bs-page-hero h1  { font-size: 2.25rem; }
  .bs-benefits-grid { grid-template-columns: 1fr; }
}

/* ===================================================
   v1.1.1 — CLIENT UPDATE ON THE v1.0.7 LAYOUT
   =================================================== */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.bs-logo {
  position: relative;
  display: block;
  flex: 0 0 210px;
  width: 210px;
  height: 64px;
  overflow: hidden;
}
.tim-logo-crop { position: absolute; inset: 0; overflow: hidden; }
.tim-logo-crop img {
  position: absolute;
  top: -52px;
  left: 0;
  width: 190px;
  max-width: none;
  height: auto;
}
.tim-x-mark {
  display: grid;
  width: 38px; height: 38px;
  place-items: center;
  background: var(--bs-red);
  text-decoration: none;
}
.tim-x-mark img { width: 17px; height: 17px; display: block; }
.bs-btn-search {
  display:inline-flex;
  border:0;
  background:transparent;
}
.bs-btn-search svg {
  fill:none;
  stroke:currentColor;
  stroke-width:2;
}
.tim-search-panel {
  position:absolute;
  z-index:80;
  top:100%;
  right:24px;
  width:min(520px,calc(100vw - 32px));
  padding:16px;
  border:1px solid var(--bs-gray-200);
  border-radius:0 0 12px 12px;
  background:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.18);
}
.tim-search-panel[hidden] { display:none; }
.tim-search-panel form {
  display:flex;
  gap:10px;
}
.tim-search-panel input {
  min-width:0;
  flex:1;
  min-height:48px;
  padding:0 16px;
  border:1px solid var(--bs-gray-300);
  border-radius:7px;
  font:inherit;
}
.tim-search-panel button {
  min-height:48px;
  padding:0 24px;
  border:0;
  border-radius:7px;
  background:var(--bs-red);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.tim-series-list {
  display:grid;
  gap:34px;
}
.tim-watch-featured-single {
  width:min(1040px,100%);
  grid-template-columns:minmax(0,1fr);
}
.tim-x-viewer-grid {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  align-items:start;
}
.tim-x-series-tabs {
  display:grid;
  width:min(720px,100%);
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:0 auto 14px;
}
.tim-x-series-tabs button {
  display:flex;
  min-height:54px;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:0 18px;
  border:1px solid var(--bs-gray-300);
  border-radius:9px;
  color:var(--bs-gray-900);
  background:#fff;
  font:inherit;
  font-weight:800;
  cursor:pointer;
  transition:border-color .2s,background .2s,color .2s;
}
.tim-x-series-tabs button span {
  color:var(--bs-gray-500);
  font-size:.72rem;
  font-weight:700;
}
.tim-x-series-tabs button:hover,
.tim-x-series-tabs button[aria-selected="true"] {
  border-color:#111;
  color:#fff;
  background:#111;
}
.tim-x-series-tabs button[aria-selected="true"] span {
  color:rgba(255,255,255,.7);
}
.tim-x-series-tabs button:focus-visible {
  outline:3px solid rgba(220,38,38,.25);
  outline-offset:2px;
}
.tim-x-viewer {
  overflow:hidden;
  border:1px solid var(--bs-gray-200);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 35px rgba(15,23,42,.09);
}
.tim-x-viewer-single {
  width:min(720px,100%);
  margin:0 auto;
}
.tim-x-viewer-single .tim-x-viewer-header {
  align-items:center;
  padding:14px 18px;
}
.tim-x-viewer-single .tim-x-viewer-header span {
  margin-bottom:3px;
}
.tim-x-viewer-single .tim-x-viewer-header h3 {
  font-size:1.2rem;
}
.tim-x-viewer-single .tim-x-viewer-mount {
  min-height:0;
  padding:10px 14px;
}
.tim-x-viewer-single .tim-x-viewer-mount > .twitter-tweet-rendered,
.tim-x-viewer-single .tim-x-viewer-mount > iframe {
  zoom:.72;
}
.tim-x-viewer-single .tim-x-viewer-controls {
  padding:10px 14px;
}
.tim-x-viewer-single .tim-x-viewer-controls button {
  min-height:36px;
  padding:0 14px;
  font-size:.78rem;
}
.tim-x-viewer-header {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  padding:22px 24px;
  color:#fff;
  background:linear-gradient(120deg,#080808 0%,#191919 68%,#8f1015 100%);
}
.tim-x-viewer-header span {
  display:block;
  margin-bottom:6px;
  color:#ef4444;
  font-size:.68rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.tim-x-viewer-header h3 {
  margin:0;
  font-size:1.55rem;
}
.tim-x-viewer-header strong {
  flex:0 0 auto;
  color:rgba(255,255,255,.78);
  font-size:.85rem;
}
.tim-x-viewer-mount {
  display:flex;
  min-height:560px;
  align-items:flex-start;
  justify-content:center;
  padding:20px;
  background:var(--bs-gray-50);
}
.tim-x-viewer-mount > .twitter-tweet,
.tim-x-viewer-mount > iframe {
  margin:0 auto!important;
}
.tim-x-viewer-placeholder,
.tim-x-viewer-fallback {
  display:flex;
  width:100%;
  min-height:300px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:14px;
  padding:34px;
  border:1px dashed var(--bs-gray-300);
  border-radius:12px;
  color:var(--bs-gray-600);
  text-align:center;
  background:#fff;
}
.tim-x-viewer-placeholder > span {
  display:grid;
  width:52px;
  height:52px;
  border-radius:50%;
  place-items:center;
  color:#fff;
  background:#080808;
  font-size:1rem;
  font-weight:850;
}
.tim-x-viewer-placeholder p,
.tim-x-viewer-fallback p {
  max-width:330px;
  margin:0;
  line-height:1.55;
}
.tim-x-viewer-fallback a {
  padding:11px 16px;
  border-radius:7px;
  color:#fff;
  background:var(--bs-red);
  font-size:.78rem;
  font-weight:800;
  text-transform:uppercase;
}
.tim-x-viewer-controls {
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:16px;
  align-items:center;
  padding:16px 20px;
  border-top:1px solid var(--bs-gray-200);
  background:#fff;
}
.tim-x-viewer-controls button {
  min-height:42px;
  padding:0 16px;
  border:1px solid var(--bs-gray-300);
  border-radius:7px;
  color:var(--bs-gray-900);
  background:#fff;
  font-weight:750;
  cursor:pointer;
  transition:background .2s,color .2s,border-color .2s;
}
.tim-x-viewer-controls button:hover {
  border-color:var(--bs-red);
  color:#fff;
  background:var(--bs-red);
}
.tim-x-viewer-controls button:focus-visible {
  outline:3px solid rgba(220,38,38,.25);
  outline-offset:2px;
}
.tim-x-viewer-controls span {
  color:var(--bs-gray-600);
  font-size:.78rem;
  font-weight:750;
  text-align:center;
}
.tim-x-layout-group {
  margin-top:26px;
}
.tim-x-layout-heading {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:12px;
}
.tim-x-layout-heading span {
  display:block;
  margin-bottom:4px;
  color:var(--bs-red);
  font-size:.68rem;
  font-weight:850;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.tim-x-layout-heading h3,
.tim-x-layout-heading p {
  margin:0;
}
.tim-x-layout-heading h3 {
  font-size:1.45rem;
}
.tim-x-layout-heading p {
  color:var(--bs-gray-500);
  font-size:.78rem;
  font-weight:750;
}
.tim-x-layout-grid {
  display:grid;
  gap:14px;
  align-items:stretch;
}
.tim-x-layout-grid.is-three {
  grid-template-columns:repeat(3,minmax(0,1fr));
}
.tim-x-series-browser,
.tim-home-x-embeds {
  width:min(1320px,100%);
  margin-inline:auto;
}
.tim-x-grid-controls {
  display:flex;
  align-items:center;
  gap:10px;
}
.tim-x-grid-controls button {
  min-height:38px;
  padding:0 15px;
  border:1px solid var(--bs-gray-300);
  border-radius:7px;
  background:#fff;
  color:var(--bs-gray-900);
  font:inherit;
  font-size:.75rem;
  font-weight:800;
  cursor:pointer;
}
.tim-x-grid-controls button:hover,
.tim-x-grid-controls button:focus-visible {
  border-color:#111;
  background:#111;
  color:#fff;
}
.tim-x-grid-controls span {
  min-width:152px;
  color:var(--bs-gray-500);
  text-align:center;
  font-size:.75rem;
  font-weight:750;
}
.tim-x-grid-placeholder,
.tim-x-embed-loading {
  display:flex;
  min-height:300px;
  align-items:center;
  justify-content:center;
  color:var(--bs-gray-500);
  font-size:.8rem;
  font-weight:700;
  text-align:center;
}
.tim-x-grid-placeholder {
  grid-column:1 / -1;
}
.tim-x-embed-card {
  display:flex;
  overflow:hidden;
  height:100%;
  min-width:0;
  flex-direction:column;
  border:1px solid var(--bs-gray-200);
  border-radius:14px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.08);
}
.tim-x-embed-card > header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:9px 10px;
  color:#fff;
  background:linear-gradient(120deg,#080808 0%,#181818 68%,#861116 100%);
}
.tim-x-embed-card > header span {
  color:#ef4444;
  font-size:.62rem;
  font-weight:850;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.tim-x-embed-card > header strong {
  font-size:.75rem;
}
.tim-x-embed-mount {
  display:flex;
  flex:1;
  min-height:300px;
  align-items:flex-start;
  justify-content:center;
  padding:2px;
  overflow:visible;
  background:var(--bs-gray-50);
}
.tim-x-embed-mount > .twitter-tweet-rendered {
  width:550px!important;
  max-width:none!important;
  margin:0 auto!important;
  transform-origin:top center;
}
.tim-x-layout-grid.is-three .tim-x-embed-mount > .twitter-tweet-rendered {
  zoom:.72;
}
.tim-x-mini-placeholder {
  display:flex;
  width:100%;
  min-height:280px;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  color:var(--bs-gray-500);
  text-align:center;
}
.tim-x-mini-placeholder > span {
  display:grid;
  width:42px;
  height:42px;
  border-radius:50%;
  place-items:center;
  color:#fff;
  background:#111;
  font-weight:850;
}
.tim-x-mini-placeholder p {
  margin:0;
  font-size:.78rem;
}
.tim-watch-series {
  overflow:hidden;
  border:1px solid var(--bs-gray-200);
  border-radius:18px;
  background:#fff;
  box-shadow:0 12px 35px rgba(15,23,42,.08);
}
.tim-series-header {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:30px;
  padding:32px;
  color:#fff;
  background:linear-gradient(120deg,#080808 0%,#191919 65%,#8f1015 100%);
}
.tim-series-kicker {
  display:block;
  margin-bottom:8px;
  color:#ef4444;
  font-size:.72rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.tim-series-header h3 {
  margin:0 0 8px;
  font-size:2rem;
}
.tim-series-header p {
  max-width:720px;
  margin:0;
  color:rgba(255,255,255,.72);
  line-height:1.6;
}
.tim-series-header > a {
  flex:0 0 auto;
  padding:12px 18px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:7px;
  color:#fff;
  font-weight:700;
}
.tim-series-layout {
  padding:28px 32px 32px;
}
.tim-series-embed {
  min-height:240px;
  padding:14px;
  border-radius:12px;
  background:linear-gradient(145deg,#080808 0%,#171717 70%,#8f1015 100%);
}
.tim-series-embed .twitter-tweet {
  display:flex;
  min-height:212px;
  align-items:flex-end;
  margin:0!important;
  padding:28px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:9px;
  background:radial-gradient(circle at 85% 15%,rgba(220,38,38,.32),transparent 34%);
}
.tim-series-embed .twitter-tweet a {
  color:#fff;
  font-size:1.15rem;
  font-weight:800;
  line-height:1.4;
  text-decoration:none;
}
.tim-series-embed .twitter-tweet a::after {
  display:block;
  margin-top:12px;
  color:#ef4444;
  font-size:.72rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  content:"Official X post";
}
.tim-episode-grid {
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.tim-episode-grid a {
  overflow:hidden;
  border:1px solid var(--bs-gray-200);
  border-radius:12px;
  color:#fff;
  background:#090909;
  box-shadow:0 8px 20px rgba(15,23,42,.08);
  transition:transform .2s,border-color .2s,box-shadow .2s;
}
.tim-episode-grid a:hover {
  transform:translateY(-2px);
  border-color:var(--bs-red);
  box-shadow:0 10px 22px rgba(15,23,42,.1);
}
.tim-episode-thumb {
  position:relative;
  display:block;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#111;
}
.tim-episode-thumb::after {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,transparent 52%,rgba(0,0,0,.75) 100%);
  content:"";
}
.tim-episode-thumb img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .25s ease;
}
.tim-episode-grid a:hover .tim-episode-thumb img {
  transform:scale(1.035);
}
.tim-episode-play {
  position:absolute;
  right:12px;
  bottom:12px;
  z-index:1;
  display:grid;
  width:34px;
  height:34px;
  border-radius:50%;
  place-items:center;
  color:#fff;
  background:var(--bs-red);
  font-size:.75rem;
  font-weight:850;
}
.tim-episode-copy {
  display:block;
  padding:15px 16px 17px;
}
.tim-episode-copy span,
.tim-episode-copy small {
  display:block;
  color:rgba(255,255,255,.68);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.07em;
  text-transform:uppercase;
}
.tim-episode-copy strong {
  display:block;
  margin:5px 0 10px;
  color:#fff;
  font-size:1.15rem;
  line-height:1.2;
}
.tim-episode-copy > span {
  color:#ef4444;
}
.tim-logo-crop-footer {
  position: relative;
  display: block;
  width: 190px;
  height: 64px;
  overflow: hidden;
  background: #fff;
}
.tim-logo-crop-footer img { width: 190px; top: -52px; }
.tim-footer-statement { color:#6b7280; font-size:.875rem; line-height:1.6; max-width:240px; margin-top:12px; }

.tim-hero-copy { color:rgba(255,255,255,.8); font-size:1.125rem; line-height:1.7; max-width:680px; margin-bottom:32px; }
.tim-hero-actions { display:flex; gap:16px; flex-wrap:wrap; }
.tim-btn-secondary { background:rgba(255,255,255,.15); border-color:rgba(255,255,255,.25); }
.tim-hero-slide {
  position:absolute;
  inset:0;
  display:none;
  pointer-events:none;
}
.tim-hero-slide.is-active {
  display:block;
  position:relative;
  width:100%;
  height:100%;
  pointer-events:auto;
}
.tim-hero-slide > img { width:100%; height:100%; object-fit:cover; object-position:center center; }
.tim-hero-slide .bs-hero-content, .tim-hero-slide .bs-hero-overlay { position:absolute; }
.bs-dot:focus-visible { outline:3px solid rgba(220,38,38,.35); outline-offset:3px; }
.tim-section-subtitle { max-width:700px; margin:14px 0 0; color:var(--bs-gray-500); line-height:1.65; }
.tim-red-italic { color:var(--bs-red); font-style:italic; margin-bottom:28px; }

.tim-article-list {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:28px;
}
.tim-linked-article {
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  min-height:220px;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--bs-gray-200);
  border-radius:12px;
  box-shadow:0 8px 24px rgba(17,24,39,.07);
}
.tim-linked-article-image { display:block; min-height:220px; overflow:hidden; background:var(--bs-gray-100); }
.tim-linked-article-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s ease; }
.tim-linked-article:hover .tim-linked-article-image img { transform:scale(1.03); }
.tim-linked-article-copy { display:flex; flex-direction:column; align-items:flex-start; padding:26px; }
.tim-linked-article-copy h3 { margin:0; font-size:1.2rem; line-height:1.3; color:var(--bs-gray-900); }
.tim-linked-article-copy h3 a { color:inherit; text-decoration:none; }
.tim-linked-article-copy p { margin:14px 0 22px; color:var(--bs-gray-500); font-size:.925rem; line-height:1.6; }
.tim-read-link { margin-top:auto; color:var(--bs-red); font-size:.75rem; font-weight:800; letter-spacing:.08em; text-decoration:none; text-transform:uppercase; }
.tim-empty-articles { padding:36px; }
.tim-empty-articles h3 { margin:0 0 10px; color:var(--bs-gray-900); }
.tim-empty-articles p { margin:0; color:var(--bs-gray-500); line-height:1.7; }

.tim-video-link, .tim-investigation-link, .tim-report-link { color:inherit; text-decoration:none; }
.bs-video-play img { width:18px; height:18px; }
.tim-watch-now { margin-top:10px; color:var(--bs-red); font-size:.72rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; }
.tim-static-badge { position:static; display:inline-block; margin-bottom:16px; }
.bs-investigation-main-body h3 { color:#fff; font-size:1.5rem; line-height:1.3; max-width:580px; margin:0 0 16px; }
.tim-x-cta, .tim-report-link span { color:var(--bs-red); font-size:.75rem; font-weight:800; letter-spacing:.06em; text-transform:uppercase; }
.tim-centered-heading { justify-content:center; flex-direction:column; text-align:center; gap:8px; margin-bottom:40px; }
.tim-centered-heading .bs-label { justify-content:center; }
.tim-label-center { justify-content:center; margin-bottom:20px; }
.tim-join-intro { color:var(--bs-gray-300); font-size:1.125rem; margin-bottom:40px; }

.tim-single { max-width:900px; margin:0 auto; padding:80px 24px; }
.tim-single-header h1 { margin:24px 0 0; color:var(--bs-gray-900); font-size:clamp(2.4rem,5vw,4.5rem); line-height:1.03; }
.tim-back-link { color:var(--bs-red); font-size:.75rem; font-weight:800; letter-spacing:.08em; text-decoration:none; text-transform:uppercase; }
.tim-single-deck { color:var(--bs-gray-500); font-size:1.2rem; line-height:1.7; }
.tim-single-rule { width:72px; height:4px; margin:30px 0; background:var(--bs-red); }
.tim-single-image { margin:38px 0; }
.tim-single-image img { width:100%; height:auto; border-radius:12px; }
.tim-single-body { max-width:740px; color:var(--bs-gray-700); font-size:1.0625rem; line-height:1.85; }

.tim-archive-grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}
.tim-archive-card {
  display:flex;
  min-width:0;
  flex-direction:column;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--bs-gray-200);
  border-radius:12px;
  box-shadow:0 8px 24px rgba(17,24,39,.07);
}
.tim-archive-image {
  display:block;
  height:220px;
  overflow:hidden;
  background:var(--bs-gray-100);
}
.tim-archive-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .3s ease;
}
.tim-archive-card:hover .tim-archive-image img { transform:scale(1.03); }
.tim-archive-copy {
  display:flex;
  flex:1;
  flex-direction:column;
  align-items:flex-start;
  padding:26px;
}
.tim-archive-copy h2 {
  margin:0;
  color:var(--bs-gray-900);
  font-size:1.25rem;
  line-height:1.35;
}
.tim-archive-copy h2 a { color:inherit; text-decoration:none; }
.tim-archive-copy p {
  margin:14px 0 24px;
  color:var(--bs-gray-500);
  font-size:.925rem;
  line-height:1.65;
}

@media (max-width:1024px) {
  .tim-article-list { grid-template-columns:1fr; }
  .tim-archive-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:768px) {
  .bs-logo { flex-basis:160px; width:160px; height:54px; }
  .tim-logo-crop img { width:160px; top:-44px; }
  .tim-x-mark { display:none; }
  .tim-linked-article { grid-template-columns:1fr; }
  .tim-linked-article-image { height:220px; }
  .tim-archive-grid { grid-template-columns:1fr; }
}

/* ===================================================
   v1.1.4 — ONE CONSISTENT RESPONSIVE HEADER + NEW LOGOS
   =================================================== */
.bs-header,
.bs-header.scrolled {
  background:#fff;
  -webkit-backdrop-filter:none;
  backdrop-filter:none;
  border-bottom:1px solid var(--bs-gray-200);
  box-shadow:none;
}
.bs-header-top { border-bottom:0; }
.bs-header-inner {
  min-height:104px;
  padding:14px 32px;
}
.bs-logo {
  flex:0 0 170px;
  width:170px;
  height:auto;
  min-height:62px;
  overflow:visible;
}
.tim-logo-crop,
.tim-logo-crop-footer {
  position:static;
  display:flex;
  width:100%;
  height:100%;
  align-items:center;
  overflow:visible;
  background:transparent;
}
.tim-logo-crop img,
.tim-logo-crop-footer img {
  position:static;
  display:block;
  width:100%;
  max-width:100%;
  height:auto;
}
.bs-nav-red { display:none !important; }
.tim-x-mark {
  border-radius:0;
}
.tim-x-mark img,
.tim-footer-x-link img,
.bs-nav-x-mobile img {
  display:block;
  width:15px;
  height:15px;
  flex:0 0 15px;
}
.tim-footer-x-link {
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.bs-nav-x-mobile,
.bs-nav-join-mobile {
  display:none;
}
.tim-logo-crop-footer {
  width:190px;
  min-height:72px;
}

@media (min-width:961px) {
  .bs-nav-main,
  .bs-nav-main.open {
    position:static;
    display:flex !important;
    flex:1 1 auto;
    min-width:0;
    flex-direction:row;
    align-items:center;
    justify-content:center;
    gap:clamp(18px,2vw,36px);
    padding:0;
    background:transparent;
    border:0;
    box-shadow:none;
  }
  .bs-nav-main li { width:auto; }
  .bs-nav-main li a,
  .bs-nav-main.open li a {
    display:block;
    padding:10px 0;
    border:0;
    color:var(--bs-gray-900);
    font-size:.95rem;
    font-weight:650;
    white-space:nowrap;
  }
  .bs-nav-main li a:hover,
  .bs-nav-main .current-menu-item > a {
    color:var(--bs-red);
  }
}

/* ===================================================
   v1.2.3: FOOTER AND FLOATING UTILITIES
   =================================================== */
.bs-footer-bottom {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
}
.bs-footer-bottom p {
  margin:0;
}
.tim-legal-links {
  justify-content:flex-end;
}
.tim-floating-actions {
  position:fixed;
  z-index:80;
  right:22px;
  bottom:22px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.tim-floating-action {
  display:grid;
  width:46px;
  height:46px;
  padding:0;
  place-items:center;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  background:#0b0b0b;
  box-shadow:0 8px 24px rgba(0,0,0,.24);
  cursor:pointer;
  transition:opacity .2s ease,transform .2s ease,background .2s ease;
}
.tim-floating-action:hover {
  background:var(--bs-red);
  transform:translateY(-2px);
}
.tim-floating-action svg {
  width:20px;
  height:20px;
  fill:none;
  stroke:#fff;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.tim-floating-action img {
  width:17px;
  height:17px;
}
.tim-scroll-top {
  visibility:hidden;
  opacity:0;
  pointer-events:none;
}
.tim-scroll-top.is-visible {
  visibility:visible;
  opacity:1;
  pointer-events:auto;
}
.tim-floating-x {
  background:var(--bs-red);
}
.tim-cookie-notice {
  position:fixed;
  z-index:75;
  right:88px;
  bottom:22px;
  display:flex;
  width:min(560px,calc(100vw - 130px));
  gap:22px;
  align-items:center;
  justify-content:space-between;
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  background:rgba(8,10,15,.96);
  box-shadow:0 12px 36px rgba(0,0,0,.3);
  color:#fff;
}
.tim-cookie-notice[hidden] {
  display:none;
}
.tim-cookie-copy strong {
  display:block;
  margin-bottom:5px;
  font-size:.9rem;
}
.tim-cookie-copy p {
  margin:0;
  color:rgba(255,255,255,.72);
  font-size:.82rem;
  line-height:1.5;
}
.tim-cookie-copy a {
  color:#fff;
  text-decoration:underline;
  text-underline-offset:2px;
}
.tim-cookie-accept {
  flex:0 0 auto;
  min-height:40px;
  padding:0 18px;
  border:0;
  border-radius:7px;
  background:var(--bs-red);
  color:#fff;
  font-size:.75rem;
  font-weight:800;
  letter-spacing:.05em;
  text-transform:uppercase;
  cursor:pointer;
}
.tim-about-portrait {
  height:clamp(430px,31vw,580px);
  background:linear-gradient(90deg,#050505 0%,#050505 58%,#111 100%);
}
.tim-about-picture {
  position:absolute;
  inset:0;
  display:block;
}
.tim-about-picture img {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
}
.tim-about-portrait .bs-split-overlay {
  background:linear-gradient(90deg,rgba(0,0,0,.96) 0%,rgba(0,0,0,.76) 48%,rgba(0,0,0,.08) 100%);
}
.tim-about-portrait .bs-split-glass {
  max-width:680px;
}
@media (max-width:700px) {
  .tim-about-portrait {
    height:640px;
    background:#050505;
  }
  .tim-about-picture {
    bottom:auto;
    height:420px;
  }
  .tim-about-picture img {
    object-position:center top;
  }
  .tim-about-portrait .bs-split-overlay {
    bottom:auto;
    height:460px;
    background:linear-gradient(180deg,rgba(0,0,0,.03) 0%,rgba(0,0,0,.08) 62%,#050505 100%);
  }
  .tim-about-portrait .bs-split-content {
    inset:auto 16px 16px;
    padding:0;
  }
  .tim-about-portrait .bs-split-glass {
    max-width:none;
    padding:22px;
    background:rgba(0,0,0,.9);
  }
  .tim-about-portrait .bs-split-glass h3 {
    margin:0;
    font-size:1.2rem;
    line-height:1.35;
  }
  .bs-footer-bottom {
    grid-template-columns:1fr;
    gap:10px;
  }
  .tim-legal-links {
    justify-content:flex-start;
  }
  .tim-floating-actions {
    right:14px;
    bottom:14px;
  }
  .tim-cookie-notice {
    right:14px;
    bottom:76px;
    left:14px;
    width:auto;
    gap:14px;
  }
}

/* ===================================================
   v1.2.4 - HOMEPAGE ARTICLE GRID + WATCH CAROUSEL
   =================================================== */
.tim-article-list {
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:20px;
}
.tim-article-list .tim-linked-article {
  min-width:0;
  min-height:360px;
}
.tim-article-list .tim-linked-article-copy {
  right:16px;
  bottom:16px;
  left:16px;
  min-height:160px;
  padding:18px;
}
.tim-article-list .tim-linked-article-copy h3 {
  margin-bottom:16px;
  font-size:clamp(1rem,1.15vw,1.16rem);
  line-height:1.35;
}
.tim-linked-article-copy .tim-read-link {
  display:inline-flex;
  width:auto;
  min-width:0;
  min-height:42px;
  margin-top:auto;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  border:1px solid var(--bs-red);
  border-radius:7px;
  background:var(--bs-red);
  color:#fff!important;
  font-size:.74rem;
  font-weight:850;
  line-height:1;
  letter-spacing:.055em;
  white-space:nowrap;
}
.tim-linked-article-copy .tim-read-link:hover {
  border-color:#fff;
  background:#fff;
  color:var(--bs-gray-900)!important;
  box-shadow:0 8px 18px rgba(0,0,0,.22);
  transform:translateY(-1px);
}
.tim-linked-article-copy .tim-read-link:focus-visible {
  outline:3px solid #fff;
  outline-offset:3px;
}
.tim-watch-carousel {
  position:relative;
}
.tim-carousel-controls {
  display:flex;
  justify-content:flex-end;
  gap:8px;
  margin-bottom:14px;
}
.tim-carousel-controls button {
  display:grid;
  width:42px;
  height:42px;
  padding:0;
  border:1px solid var(--bs-gray-300);
  border-radius:50%;
  place-items:center;
  background:#fff;
  color:var(--bs-gray-900);
  font-size:1.15rem;
  cursor:pointer;
  transition:background .2s,color .2s,border-color .2s,transform .2s;
}
.tim-carousel-controls button:hover {
  border-color:var(--bs-red);
  background:var(--bs-red);
  color:#fff;
  transform:translateY(-1px);
}
.tim-carousel-controls button:focus-visible {
  outline:3px solid rgba(220,38,38,.28);
  outline-offset:2px;
}
.tim-watch-carousel-track {
  display:grid;
  grid-auto-columns:calc((100% - 60px) / 4);
  grid-auto-flow:column;
  gap:20px;
  overflow-x:auto;
  padding:2px 2px 18px;
  scrollbar-width:none;
}
.tim-watch-carousel-track::-webkit-scrollbar {
  display:none;
}
.tim-watch-carousel-card {
  display:flex;
  min-width:0;
  min-height:330px;
  flex-direction:column;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  border-radius:15px;
  background:#090909;
  box-shadow:0 10px 28px rgba(15,23,42,.13);
}
.tim-watch-card-art {
  position:relative;
  display:flex;
  min-height:250px;
  flex:1;
  flex-direction:column;
  justify-content:flex-end;
  padding:26px;
  overflow:hidden;
  color:#fff;
  background:#090909;
}
.tim-watch-reckoning .tim-watch-card-art {
  background:#090909;
}
.tim-watch-card-art::before {
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg,rgba(0,0,0,.03) 15%,rgba(0,0,0,.18) 42%,rgba(0,0,0,.92) 100%);
  content:"";
}
.tim-watch-card-art > img {
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
}
.tim-watch-card-art > :not(img) {
  position:relative;
  z-index:2;
}
.tim-watch-card-art span {
  margin-bottom:8px;
  color:#ef4444;
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.11em;
  text-transform:uppercase;
}
.tim-watch-card-art strong {
  font-size:clamp(1.6rem,2.2vw,2.2rem);
  line-height:1.05;
}
.tim-watch-card-art small {
  margin-top:10px;
  color:rgba(255,255,255,.66);
  font-size:.78rem;
  line-height:1.45;
}
.tim-watch-card-action {
  padding:18px;
  background:#fff;
}
.tim-watch-card-action a {
  display:flex;
  min-height:46px;
  align-items:center;
  justify-content:center;
  border:1px solid var(--bs-red);
  border-radius:7px;
  background:var(--bs-red);
  color:#fff;
  font-size:.78rem;
  font-weight:850;
  letter-spacing:.06em;
  text-transform:uppercase;
  transition:background .2s,color .2s,transform .2s;
}
.tim-watch-card-action a:hover {
  background:#0b0b0b;
  border-color:#0b0b0b;
  color:#fff;
  transform:translateY(-1px);
}
.tim-watch-card-action a:focus-visible {
  outline:3px solid rgba(220,38,38,.3);
  outline-offset:3px;
}
@media (max-width:1199px) {
  .tim-article-list {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .tim-watch-carousel-track {
    grid-auto-columns:calc((100% - 20px) / 2);
  }
}
@media (max-width:700px) {
  .tim-article-list {
    grid-template-columns:1fr;
  }
  .tim-article-list .tim-linked-article {
    min-height:350px;
  }
  .tim-watch-carousel-track {
    grid-auto-columns:86%;
    gap:14px;
  }
  .tim-watch-carousel-card {
    min-height:310px;
  }
}
@media (max-width:460px) {
  .tim-cookie-notice {
    align-items:flex-start;
    flex-direction:column;
  }
  .tim-cookie-accept {
    width:100%;
  }
}

@media (max-width:960px) {
  .bs-header-inner {
    min-height:80px;
    padding:10px 16px;
  }
  .bs-logo {
    flex-basis:135px;
    width:135px;
    min-height:50px;
  }
  .bs-nav-main { display:none; }
  .bs-nav-main.open {
    display:flex;
    max-height:calc(100vh - 80px);
    overflow-y:auto;
  }
  .bs-nav-x-mobile,
  .bs-nav-join-mobile {
    display:block;
  }
  .bs-menu-toggle { display:flex; }
  .bs-btn-subscribe,
  .tim-x-mark { display:none !important; }
  .bs-nav-x-mobile a {
    display:flex !important;
    align-items:center;
    gap:9px;
  }
  .bs-nav-x-mobile img {
    padding:3px;
    width:22px;
    height:22px;
    background:var(--bs-red);
  }
}

/* ===================================================
   v1.2.0 — SUBSCRIBER FEEDBACK + LEGAL CONTENT
   =================================================== */
.tim-form-trap {
  position:absolute !important;
  left:-10000px !important;
  width:1px !important;
  height:1px !important;
  opacity:0 !important;
  pointer-events:none !important;
}
.tim-form-notice {
  position:relative;
  z-index:25;
  padding:12px 24px;
  border-bottom:1px solid #b91c1c;
  background:#111827;
  color:#fff;
  text-align:center;
  font-size:.9375rem;
  font-weight:650;
}
.tim-form-notice-invalid {
  background:#7f1d1d;
}
.tim-legal-links {
  display:flex;
  align-items:center;
  gap:10px;
}
.tim-legal-content {
  max-width:900px;
  margin-inline:auto;
  padding-top:56px;
  padding-bottom:72px;
}
.tim-legal-content h2 {
  margin:36px 0 10px;
  color:var(--bs-gray-900);
  font-size:clamp(1.25rem,2vw,1.65rem);
}
.tim-legal-content p {
  max-width:76ch;
  color:var(--bs-gray-600);
  font-size:1rem;
  line-height:1.75;
}
.tim-legal-updated {
  padding-bottom:22px;
  border-bottom:1px solid var(--bs-gray-200);
}
@media (max-width:600px) {
  .bs-footer-bottom {
    align-items:flex-start;
    flex-direction:column;
    gap:10px;
  }
  .tim-form-notice {
    padding:11px 16px;
  }
}

/* ===================================================
   v1.2.2: IMAGE-LED ARTICLE CARDS
   =================================================== */
.tim-linked-article,
.tim-archive-card {
  position:relative;
  display:block;
  min-height:360px;
  overflow:hidden;
  border:0;
  border-radius:14px;
  background:#111827;
  box-shadow:0 10px 28px rgba(17,24,39,.13);
  isolation:isolate;
}
.tim-archive-card {
  min-height:340px;
}
.tim-linked-article-image,
.tim-archive-image {
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  min-height:0;
  background:#111827;
}
.tim-linked-article-image::after,
.tim-archive-image::after {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(3,7,18,.04) 25%,rgba(3,7,18,.7) 100%);
  content:"";
}
.tim-linked-article-image img,
.tim-archive-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.tim-linked-article-copy,
.tim-archive-copy {
  position:absolute;
  z-index:2;
  right:26px;
  bottom:26px;
  left:26px;
  display:flex;
  min-height:150px;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  padding:22px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:13px;
  background:rgba(5,7,13,.82);
  -webkit-backdrop-filter:blur(12px);
  backdrop-filter:blur(12px);
}
.tim-linked-article-copy h3,
.tim-archive-copy h2 {
  margin:0 0 20px;
  color:#fff;
  font-size:clamp(1.1rem,1.6vw,1.35rem);
  line-height:1.35;
}
.tim-linked-article-copy h3 a,
.tim-archive-copy h2 a {
  color:inherit;
  text-decoration:none;
}
.tim-read-link {
  display:inline-flex;
  width:auto;
  min-height:46px;
  margin-top:auto;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border-radius:8px;
  background:var(--bs-red);
  color:#fff;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.045em;
  text-decoration:none;
  text-transform:uppercase;
  transition:background .2s ease,transform .2s ease;
}
.tim-read-link:hover {
  background:var(--bs-red-dark);
  color:#fff;
  transform:translateY(-1px);
}
@media (max-width:768px) {
  .tim-linked-article,
  .tim-archive-card {
    min-height:350px;
  }
  .tim-linked-article-copy,
  .tim-archive-copy {
    right:16px;
    bottom:16px;
    left:16px;
    min-height:145px;
    padding:20px;
  }
}

/* ===================================================
   v1.1.6 — DYNAMIC HEADLINE TICKER
   =================================================== */
.tim-headline-ticker {
  overflow:hidden;
  background:linear-gradient(90deg,var(--bs-red-dark),var(--bs-red),var(--bs-red-dark));
  color:#fff;
}
.tim-ticker-inner {
  display:flex;
  width:100%;
  min-height:46px;
  align-items:stretch;
}
.tim-ticker-label {
  position:relative;
  z-index:2;
  display:flex;
  flex:0 0 auto;
  align-items:center;
  padding:0 24px;
  background:#0b0b0b;
  color:#fff;
  font-size:.72rem;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.tim-ticker-label::after {
  position:absolute;
  top:0;
  right:-16px;
  width:17px;
  height:100%;
  background:#0b0b0b;
  clip-path:polygon(0 0,100% 50%,0 100%);
  content:"";
}
.tim-ticker-window {
  min-width:0;
  flex:1;
  overflow:hidden;
}
.tim-ticker-track {
  display:flex;
  width:max-content;
  min-width:100%;
  animation:tim-ticker-scroll 55s linear infinite;
  will-change:transform;
}
.tim-ticker-set {
  display:flex;
  flex:0 0 auto;
  align-items:center;
  min-width:max-content;
  padding-left:34px;
}
.tim-ticker-set a {
  padding:13px 24px;
  color:#fff;
  font-size:.88rem;
  font-weight:650;
  line-height:20px;
  white-space:nowrap;
}
.tim-ticker-set a:hover,
.tim-ticker-set a:focus-visible {
  text-decoration:underline;
  text-underline-offset:3px;
}
.tim-ticker-set span {
  color:rgba(255,255,255,.52);
  font-size:.42rem;
}
.tim-ticker-window:hover .tim-ticker-track,
.tim-ticker-window:focus-within .tim-ticker-track {
  animation-play-state:paused;
}
@keyframes tim-ticker-scroll {
  from { transform:translateX(0); }
  to { transform:translateX(-50%); }
}
@media (max-width:600px) {
  .tim-ticker-inner { min-height:42px; }
  .tim-ticker-label { padding:0 15px; font-size:.65rem; }
  .tim-ticker-label::after { right:-12px; width:13px; }
  .tim-ticker-set { padding-left:24px; }
  .tim-ticker-set a { padding:11px 18px; font-size:.8rem; }
}
@media (prefers-reduced-motion:reduce) {
  .tim-ticker-track {
    width:100%;
    animation:none;
  }
  .tim-ticker-set:first-child {
    width:100%;
    overflow-x:auto;
  }
  .tim-ticker-set[aria-hidden="true"] { display:none; }
}
@media (max-width:900px) {
  .tim-x-viewer-grid {
    grid-template-columns:1fr;
  }
  .tim-x-layout-grid.is-three {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .tim-x-layout-grid.is-three .tim-x-embed-mount > .twitter-tweet-rendered {
    zoom:.62;
  }
  .tim-series-layout {
    grid-template-columns:1fr;
  }
  .tim-episode-grid {
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
@media (max-width:700px) {
  .tim-search-panel {
    top:100%;
    right:12px;
  }
  .tim-search-panel form {
    flex-direction:column;
  }
  .tim-search-panel button {
    width:100%;
  }
  .tim-series-header {
    align-items:flex-start;
    flex-direction:column;
    padding:24px 20px;
  }
  .tim-series-header h3 {
    font-size:1.65rem;
  }
  .tim-series-layout {
    padding:20px;
  }
  .tim-x-viewer-header {
    align-items:flex-start;
    flex-direction:column;
    padding:20px;
  }
  .tim-x-viewer-single .tim-x-viewer-header {
    padding:14px 16px;
  }
  .tim-x-series-tabs {
    grid-template-columns:1fr;
  }
  .tim-x-series-tabs button {
    min-height:50px;
  }
  .tim-x-layout-heading {
    align-items:flex-start;
    flex-direction:column;
    gap:12px;
  }
  .tim-x-grid-controls {
    width:100%;
    justify-content:space-between;
  }
  .tim-x-grid-controls span {
    min-width:0;
  }
  .tim-x-layout-grid.is-three {
    grid-template-columns:1fr;
  }
  .tim-x-layout-grid.is-three .tim-x-embed-mount > .twitter-tweet-rendered {
    width:100%!important;
    max-width:550px!important;
    zoom:.86;
  }
  .tim-x-viewer-mount {
    min-height:480px;
    padding:12px;
  }
  .tim-x-viewer-single .tim-x-viewer-mount {
    min-height:0;
    padding:8px;
  }
  .tim-x-viewer-single .tim-x-viewer-mount > .twitter-tweet-rendered,
  .tim-x-viewer-single .tim-x-viewer-mount > iframe {
    zoom:.82;
  }
  .tim-x-viewer-controls {
    gap:8px;
    padding:14px 12px;
  }
  .tim-x-viewer-controls button {
    padding:0 12px;
  }
  .tim-episode-grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
.tim-utility-hero {
  padding-top:76px;
  padding-bottom:64px;
}
.tim-search-page-form {
  display:flex;
  width:min(680px,100%);
  gap:10px;
  margin-top:28px;
}
.tim-search-page-form input {
  min-width:0;
  min-height:52px;
  flex:1;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.3);
  border-radius:8px;
  background:#fff;
  color:var(--bs-gray-900);
  font:inherit;
}
.tim-search-page-form button {
  min-height:52px;
  padding:0 26px;
  border:0;
  border-radius:8px;
  background:var(--bs-red);
  color:#fff;
  font-weight:800;
  cursor:pointer;
}
.tim-search-results {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}
.tim-search-result,
.tim-empty-state,
.tim-policy-card {
  padding:34px;
  border:1px solid var(--bs-gray-200);
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 28px rgba(15,23,42,.07);
}
.tim-search-result-type {
  margin-bottom:10px;
  color:var(--bs-red);
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.tim-search-result h2 {
  margin:0 0 12px;
  font-size:1.4rem;
  line-height:1.3;
}
.tim-search-result h2 a {
  color:var(--bs-gray-900);
}
.tim-search-result p,
.tim-empty-state p,
.tim-policy-card p {
  color:var(--bs-gray-500);
  line-height:1.7;
}
.tim-read-link,
.tim-text-button {
  display:inline-block;
  margin-top:18px;
  color:var(--bs-red);
  font-weight:800;
}

/* Keep article-card CTAs legible and stationary in every interaction state. */
.tim-archive-copy .tim-read-link,
.tim-linked-article-copy .tim-read-link {
  display:inline-flex;
  width:auto;
  min-width:0;
  min-height:46px;
  margin-top:auto;
  align-items:center;
  justify-content:center;
  padding:0 22px;
  border:1px solid var(--bs-red);
  border-radius:8px;
  background:var(--bs-red);
  color:#fff !important;
  line-height:1;
  text-decoration:none;
  transform:none;
}
.tim-archive-copy .tim-read-link:hover,
.tim-linked-article-copy .tim-read-link:hover {
  border-color:var(--bs-red-dark);
  background:var(--bs-red-dark);
  color:#fff !important;
  box-shadow:0 8px 18px rgba(0,0,0,.22);
  transform:none;
}
.tim-archive-copy .tim-read-link:focus-visible,
.tim-linked-article-copy .tim-read-link:focus-visible {
  outline:3px solid #fff;
  outline-offset:3px;
}
.tim-error-page {
  display:grid;
  grid-template-columns:minmax(0,1fr);
  min-height:65vh;
  place-items:center;
}
.tim-empty-state {
  width:min(760px,100%);
  min-width:0;
  max-width:100%;
  text-align:center;
}
.tim-empty-state .bs-label {
  justify-content:center;
}
.tim-empty-state h1,
.tim-empty-state h2 {
  margin:14px 0;
  color:var(--bs-gray-900);
}
.tim-error-code {
  color:var(--bs-red);
  font-size:clamp(4rem,12vw,8rem);
  font-weight:900;
  line-height:1;
}
.tim-empty-state .tim-search-page-form {
  margin:28px auto 0;
}
.tim-empty-state .tim-search-page-form input {
  border-color:var(--bs-gray-300);
}
.tim-empty-actions {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  margin-top:26px;
}
.tim-policy-main {
  max-width:1100px;
}
.tim-policy-card h2 {
  margin:30px 0 10px;
  color:var(--bs-gray-900);
  font-size:1.35rem;
}
.tim-policy-card h2:first-child {
  margin-top:0;
}
.tim-policy-card a {
  color:var(--bs-red);
  text-decoration:underline;
  text-underline-offset:3px;
}
@media (max-width:700px) {
  .bs-section-header {
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
  }
  .bs-section-header .bs-btn-explore {
    align-self:flex-start;
    max-width:100%;
  }
  .tim-search-results {
    grid-template-columns:1fr;
  }
  .tim-search-page-form,
  .tim-empty-actions {
    align-items:stretch;
    flex-direction:column;
  }
  .tim-search-page-form button {
    width:100%;
  }
  .tim-search-result,
  .tim-empty-state,
  .tim-policy-card {
    padding:24px 20px;
  }
}
