/* ── TGN Zambia Design Tokens ── */
:root {
  --tgn-black:      #101114;
  --tgn-dark:       #16161A;
  --tgn-dark-alt:   #1E1E22;
  --tgn-gold:       #C9972B;
  --tgn-gold-light: #e8b840;
  --tgn-green:      #198C3A;
  --tgn-red:        #C62828;
  --tgn-orange:     #F28C28;
  --tgn-white:      #FFFFFF;
  --tgn-grey-100:   #F5F5F5;
  --tgn-grey-200:   #E0E0E0;
  --tgn-grey-500:   #9E9E9E;
  --tgn-border:     #2a2a2e;

  --tgn-font-head:  'Montserrat', sans-serif;
  --tgn-font-body:  'Poppins', sans-serif;

  --tgn-nav-h:        66px;
  --tgn-ticker-h:     34px;
  --tgn-strip-h:      38px;
  --tgn-forex-h:      32px;
  --tgn-header-total: 170px;  /* ticker + nav + category strip + forex strip */
  --tgn-pad-x:        40px;
  --tgn-max-w:        1200px;
}

/* ── Page Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--tgn-font-body); color: var(--tgn-black); background: var(--tgn-grey-100); overflow-x: hidden; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
img  { display: block; max-width: 100%; }

/* ── Body offset so content sits below fixed header ── */
body { padding-top: var(--tgn-header-total); }
@media (max-width: 900px) { body { padding-top: var(--tgn-header-total); } }
@media (max-width: 600px) { body { padding-top: calc(var(--tgn-ticker-h) + 58px + var(--tgn-strip-h) + var(--tgn-forex-h)); } }

/* ═══════════════════════════════════════════
   TICKER BAR
═══════════════════════════════════════════ */
.tgn-ticker {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: var(--tgn-ticker-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--tgn-pad-x);
  background: var(--tgn-black);
  border-bottom: 1px solid var(--tgn-border);
  font-family: var(--tgn-font-head);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.tgn-ticker-left {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.tgn-live-badge {
  display: inline-block;
  background: var(--tgn-red);
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 2px 8px;
  white-space: nowrap;
  line-height: 1.6;
  flex-shrink: 0;
}

.tgn-ticker-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  height: 20px;
  position: relative;
}

/* One headline at a time; JS advances this list vertically. */
.tgn-ticker-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  will-change: transform;
}

.tgn-ticker-headline {
  height: 20px;
  min-height: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family: var(--tgn-font-body);
  font-size: 11px;
  font-weight: 500;
  color: #d5d5d5;
  text-decoration: none;
  line-height: 20px;
}

.tgn-ticker-headline:hover { color: var(--tgn-gold-light); }

/* Used by the separate Breaking News ribbon lower in the stylesheet. */
@keyframes tgn-ticker-scroll {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

.tgn-ticker-right {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 20px;
}

.tgn-ticker-right span,
.tgn-ticker-right a {
  font-family: var(--tgn-font-body);
  font-size: 11px;
  color: var(--tgn-grey-500);
  transition: color 0.2s;
}

.tgn-ticker-right a:hover { color: var(--tgn-gold); }

/* ═══════════════════════════════════════════
   MAIN NAVIGATION BAR
═══════════════════════════════════════════ */
.tgn-nav {
  position: fixed;
  top: var(--tgn-ticker-h);
  left: 0; right: 0;
  z-index: 1000;
  height: var(--tgn-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--tgn-pad-x);
  background: var(--tgn-black);
  border-bottom: 2px solid var(--tgn-gold);
  transition: box-shadow 0.3s ease;
}

.tgn-nav.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* ── FORCE LOGO ALIGNMENT OVERRIDE ── */
.tgn-logo {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  flex-shrink: 0 !important;
  height: 100% !important;
  max-height: var(--tgn-nav-h) !important; /* Locks it to the 66px nav height */
  text-decoration: none;
}

.tgn-logo-img {
  height: 42px !important; /* Slightly smaller than nav bar to give breathing room */
  width: auto !important;
  max-width: 160px !important; 
  object-fit: contain !important;
  flex-shrink: 0 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


.tgn-logo-text {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  line-height: 1.2 !important;
}

/* ── FORCE LOGO TEXT VISIBILITY ── */
.tgn-logo, 
.tgn-logo:hover, 
.tgn-logo:visited, 
.tgn-logo:active {
  color: var(--tgn-white) !important;
  text-decoration: none !important;
}

.tgn-logo-name {
  color: var(--tgn-white) !important;
  font-family: var(--tgn-font-head) !important;
  font-weight: 800 !important;
  font-size: 17px !important;
  display: block !important;
}

.tgn-logo-tag {
  color: var(--tgn-gold) !important;
  font-family: var(--tgn-font-head) !important;
  font-size: 9px !important;
  text-transform: uppercase !important;
  display: block !important;
}

/* Desktop nav links */
.tgn-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.tgn-nav-links li a {
  display: inline-block;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #cccccc;
  padding: 8px 12px;
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}

.tgn-nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--tgn-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.tgn-nav-links li a:hover,
.tgn-nav-links li a.is-active { color: var(--tgn-gold); }

.tgn-nav-links li a:hover::after,
.tgn-nav-links li a.is-active::after { transform: scaleX(1); }

/* Subscribe CTA */
.tgn-nav-cta {
  flex-shrink: 0;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tgn-black);
  background: var(--tgn-gold);
  padding: 8px 18px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  margin-left: 10px;
}
.tgn-nav-cta:hover {
  background: var(--tgn-gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.tgn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
}

.tgn-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tgn-white);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.28s ease, opacity 0.2s ease, background 0.2s;
}

.tgn-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tgn-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.tgn-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.tgn-hamburger.is-open span { background: var(--tgn-gold); }

/* ═══════════════════════════════════════════
   CATEGORY STRIP
═══════════════════════════════════════════ */
.tgn-cat-strip {
  position: fixed;
  top: calc(var(--tgn-ticker-h) + var(--tgn-nav-h));
  left: 0; right: 0;
  z-index: 999;
  height: var(--tgn-strip-h);
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  padding: 0 var(--tgn-pad-x);
  background: var(--tgn-dark);
  border-top: 1px solid var(--tgn-border);
  scrollbar-width: none;
}
.tgn-cat-strip::-webkit-scrollbar { display: none; }

.tgn-cat-link {
  display: inline-flex;
  align-items: center;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tgn-grey-500);
  padding: 0 14px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}
.tgn-cat-link:hover,
.tgn-cat-link.is-active {
  color: var(--tgn-gold);
  border-color: var(--tgn-gold);
}

/* ═══════════════════════════════════════════
   FOREX STRIP
═══════════════════════════════════════════ */
.tgn-forex-strip {
  position: fixed;
  top: calc(var(--tgn-ticker-h) + var(--tgn-nav-h) + var(--tgn-strip-h));
  left: 0;
  right: 0;
  z-index: 998;
  height: var(--tgn-forex-h);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--tgn-white);
  border-bottom: 1px solid var(--tgn-grey-200);
  box-shadow: 0 2px 8px rgba(16,17,20,0.06);
  font-family: var(--tgn-font-body);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform .28s cubic-bezier(.22,.61,.36,1), opacity .2s ease, visibility .28s;
  will-change: transform, opacity;
}

/* Hide the market ticker while readers move down the page. It slides beneath
   the category bar and returns when they reverse direction or reach the top. */
.tgn-forex-strip.is-scroll-hidden {
  transform: translateY(calc(-1 * (var(--tgn-forex-h) + 2px)));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.tgn-forex-label {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 18px 0 var(--tgn-pad-x);
  background: var(--tgn-gold);
  color: var(--tgn-black);
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tgn-forex-label::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  width: 20px;
  height: 100%;
  background: var(--tgn-gold);
  transform: skewX(-18deg);
  transform-origin: center;
  z-index: -1;
}

.tgn-forex-ticker-wrap {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  padding-left: 12px;
}

.tgn-forex-ticker-inner {
  display: inline-flex;
  align-items: center;
  height: 100%;
  width: max-content;
  min-width: max-content;
  white-space: nowrap;
  animation: tgn-forex-scroll 48s linear infinite;
  will-change: transform;
}

.tgn-forex-ticker-wrap:hover .tgn-forex-ticker-inner {
  animation-play-state: paused;
}

@keyframes tgn-forex-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tgn-forex-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  padding: 0 18px;
  border-right: 1px solid var(--tgn-grey-200);
  font-size: 11px;
  line-height: 1;
}

.fx-zmw {
  color: var(--tgn-grey-500);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fx-code {
  color: var(--tgn-black);
  font-family: var(--tgn-font-head);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.fx-rate {
  color: var(--tgn-gold);
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.fx-up, .fx-down, .fx-flat {
  margin-left: 3px;
  font-size: 9px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.fx-up   { color: var(--tgn-green); }
.fx-down { color: var(--tgn-red); }
.fx-flat { color: var(--tgn-grey-500); }

.tgn-forex-loading {
  display: inline-flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  color: var(--tgn-grey-500);
  font-size: 10px;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .tgn-forex-ticker-inner { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .tgn-forex-strip { transition: none; }
}

/* ═══════════════════════════════════════════
   PAGE OVERLAY (behind mobile drawer)
═══════════════════════════════════════════ */
.tgn-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(10, 12, 18, 0.7);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.32s ease, visibility 0.32s;
}
.tgn-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

/* ═══════════════════════════════════════════
   MOBILE DRAWER
═══════════════════════════════════════════ */
.tgn-mobile-drawer {
  display: block;
  position: fixed;
  top: var(--tgn-ticker-h);
  left: 0; right: 0; bottom: 0;
  background: var(--tgn-black);
  z-index: 800;
  padding: 28px 24px max(28px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  visibility: hidden;
  border-top: 2px solid var(--tgn-gold);
}
.tgn-mobile-drawer.is-open {
  transform: translateX(0);
  pointer-events: auto;
  visibility: visible;
}

.tgn-mobile-links { margin-bottom: 28px; }

.tgn-mobile-links li {
  border-bottom: 1px solid var(--tgn-border);
}

.tgn-mobile-links li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-family: var(--tgn-font-head);
  font-size: clamp(18px, 5vw, 26px);
  font-weight: 700;
  color: var(--tgn-white);
  transition: color 0.2s;
}
.tgn-mobile-links li a:hover { color: var(--tgn-gold); }
.tgn-mobile-links li a .arrow { font-size: 16px; color: var(--tgn-gold); opacity: 0.7; }

.tgn-mobile-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tgn-black);
  background: var(--tgn-gold);
  padding: 14px 28px;
  border-radius: 2px;
  transition: background 0.2s;
  margin-bottom: 28px;
}
.tgn-mobile-cta:hover { background: var(--tgn-gold-light); }

.tgn-mobile-social {
  padding-top: 24px;
  border-top: 1px solid var(--tgn-border);
}
.tgn-mobile-social p {
  font-size: 12px;
  color: var(--tgn-grey-500);
  margin-bottom: 12px;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tgn-mobile-social-links {
  display: flex;
  gap: 10px;
}
.tgn-soc-btn {
  padding: 8px 14px;
  border-radius: 2px;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
}
.tgn-soc-fb { background: #1877F2; }
.tgn-soc-yt { background: #FF0000; }
.tgn-soc-li { background: #0A66C2; }
.tgn-soc-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tgn-nav-links li a { font-size: 11px; padding: 8px 9px; }
}

@media (max-width: 900px) {
  .tgn-nav-links  { display: none; }
  .tgn-nav-cta    { display: none; }
  .tgn-hamburger  { display: flex; }
  .tgn-ticker-right span { display: none; } /* hide date on tablet */
}

@media (max-width: 600px) {
  .tgn-nav        { height: 58px; }
  .tgn-logo-name  { font-size: 15px; }
  .tgn-logo-tag   { display: none; }
  .tgn-logo-box   { width: 38px; height: 38px; font-size: 14px; }
  .tgn-ticker     { padding: 0 16px; }
  .tgn-nav        { padding: 0 16px; }
  .tgn-cat-strip  { padding: 0 16px; }
  .tgn-cat-strip {
    /* 34px ticker height + 58px mobile nav height = 92px total top offset */
    top: calc(var(--tgn-ticker-h) + 58px) !important;
  }
  .tgn-forex-strip {
    top: calc(var(--tgn-ticker-h) + 58px + var(--tgn-strip-h));
  }
  .tgn-forex-label {
    padding-left: 16px;
    padding-right: 13px;
    font-size: 9px;
  }
  .tgn-forex-item { padding: 0 13px; }
  .tgn-ticker-right a { display: none; } /* hide sign in / subscribe on mobile */
}

@media (max-width: 380px) {
  .tgn-logo-img   { height: 34px; }
  .tgn-logo-name  { font-size: 13px; }
}

/* ══════════════════════════════════════════════
   TGN ZAMBIA FOOTER — newsroom reference layout
══════════════════════════════════════════════ */

.tgn-footer {
  --tgn-footer-max: 1500px;
  background: #101114;
  color: #fff;
  padding: 70px var(--tgn-pad-x) 0;
  font-family: var(--tgn-font-body);
  overflow: hidden;
}

.tgn-footer-grid,
.tgn-footer-newsletter,
.tgn-footer-brands,
.tgn-footer-legal {
  width: 100%;
  max-width: var(--tgn-footer-max);
  margin-left: auto;
  margin-right: auto;
}

/* ── Four-column newsroom directory ── */
.tgn-footer-grid {
  display: grid;
  grid-template-columns: minmax(390px, 1.72fr) repeat(3, minmax(190px, 0.86fr));
  column-gap: clamp(44px, 4.1vw, 74px);
  min-height: 378px;
  padding-bottom: 56px;
  border-bottom: 1px solid #2a2a2e;
}

.tgn-footer-brand { min-width: 0; }

.tgn-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  color: inherit;
  text-decoration: none;
}

.tgn-footer-logo-box,
.tgn-footer-logo-img {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  object-fit: contain;
}

.tgn-footer-logo-img {
  display: block;
  visibility: visible;
  opacity: 1;
}

.tgn-footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--tgn-black);
  font-family: var(--tgn-font-head);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.tgn-footer-logo-copy { display: block; min-width: 0; }

.tgn-footer-logo-name {
  display: block;
  font-family: var(--tgn-font-head);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.015em;
  color: #fff;
  white-space: nowrap;
}

.tgn-footer-logo-tag {
  display: block;
  margin-top: 6px;
  font-family: var(--tgn-font-body);
  font-size: 10px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d09b22;
  white-space: nowrap;
}

.tgn-footer-about {
  max-width: 430px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  color: #73757b;
}

/* ── Social buttons ── */
.tgn-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tgn-footer-soc-btn {
  min-height: 39px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: 2px;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: transform .18s ease, filter .18s ease;
}

.tgn-footer-soc-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.tgn-footer-soc-icon {
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 15px;
}

.tgn-footer-soc-icon svg { width: 15px; height: 15px; display: block; }
.tgn-soc-fb { background: #1877f2; }
.tgn-soc-yt { background: #ff0000; }
.tgn-soc-li { background: #0a66c2; }
.tgn-soc-ig { background: linear-gradient(105deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }

/* ── Link columns ── */
.tgn-footer-col { min-width: 0; }

.tgn-footer-col h4 {
  margin: 8px 0 28px;
  padding: 0 0 14px;
  border-bottom: 1px solid #2a2a2e;
  font-family: var(--tgn-font-head);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
}

.tgn-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tgn-footer-col li { margin: 0 0 24px; }
.tgn-footer-col li:last-child { margin-bottom: 0; }

.tgn-footer-col a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 400;
  color: #73757b;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.tgn-footer-col a::before {
  content: '—';
  color: #d09b22;
  font-size: 11px;
  line-height: 1;
  flex: 0 0 auto;
}

.tgn-footer-col a:hover {
  color: #fff;
  transform: translateX(2px);
}

/* ── Daily Briefing band ── */
.tgn-footer-newsletter {
  min-height: 201px;
  padding: 46px 0 49px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(560px, .96fr);
  gap: clamp(50px, 5vw, 90px);
  align-items: center;
  border-bottom: 1px solid #2a2a2e;
}

.tgn-nl-heading {
  margin-bottom: 10px;
  font-family: var(--tgn-font-head);
  font-size: 23px;
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
}

.tgn-nl-sub {
  max-width: 760px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #73757b;
}

.tgn-footer-newsletter-form { min-width: 0; }

/* Brevo wrappers */
.tgn-footer .sib-form,
.tgn-footer .sib-form .sib-form-block,
.tgn-footer .sib_signup_box_inside_1 {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.tgn-footer .sib-form .sib-form-block__title,
.tgn-footer .sib-form .sib-form-block__description,
.tgn-footer .sib-form label {
  display: none !important;
}

.tgn-footer .sib-form form,
.tgn-footer form[id^="sib_signup_form"],
.tgn-footer .sib_signup_form,
.tgn-footer .sib_signup_box_inside_1,
.tgn-footer-fallback-form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 220px !important;
  gap: 10px !important;
  align-items: stretch !important;
  width: 100% !important;
}

.tgn-footer .sib-form .sib-form-block__field,
.tgn-footer .sib_signup_box_inside_1 p,
.tgn-footer .sib_signup_box_inside_1 p.sib-email-area {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tgn-footer .sib_signup_box_inside_1 p.sib-email-area { font-size: 0 !important; }

.tgn-footer .sib-form input[type="email"],
.tgn-footer .sib-form input[type="text"],
.tgn-footer form[id^="sib_signup_form"] input[type="email"],
.tgn-footer .sib_signup_form input[type="email"],
.tgn-footer input.sib-email-area,
.tgn-footer-fallback-form input[type="email"] {
  width: 100% !important;
  height: 53px !important;
  margin: 0 !important;
  padding: 0 17px !important;
  border: 1px solid #303036 !important;
  border-radius: 2px !important;
  outline: none !important;
  box-shadow: none !important;
  background: #1f1f23 !important;
  color: #fff !important;
  font-family: var(--tgn-font-body) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.tgn-footer .sib-form input::placeholder,
.tgn-footer input.sib-email-area::placeholder,
.tgn-footer-fallback-form input::placeholder { color: #696b71 !important; opacity: 1; }

.tgn-footer .sib-form input[type="email"]:focus,
.tgn-footer input.sib-email-area:focus,
.tgn-footer-fallback-form input[type="email"]:focus { border-color: #c9972b !important; }

.tgn-footer .sib-form button[type="submit"],
.tgn-footer .sib-form input[type="submit"],
.tgn-footer form[id^="sib_signup_form"] input[type="submit"],
.tgn-footer form[id^="sib_signup_form"] button[type="submit"],
.tgn-footer .sib_signup_form input[type="submit"],
.tgn-footer input.sib-default-btn,
.tgn-footer-fallback-form button {
  width: 220px !important;
  min-width: 220px !important;
  height: 53px !important;
  margin: 0 !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  background: #d19d27 !important;
  color: #08090a !important;
  font-family: var(--tgn-font-head) !important;
  font-size: 13px !important;
  line-height: 53px !important;
  font-weight: 800 !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

.tgn-footer .sib-form button[type="submit"]:hover,
.tgn-footer .sib-form input[type="submit"]:hover,
.tgn-footer input.sib-default-btn:hover,
.tgn-footer-fallback-form button:hover { background: #e0ad36 !important; }

.tgn-footer .sib-form .sib-form-message-panel {
  grid-column: 1 / -1;
  margin: 8px 0 0 !important;
  padding: 8px 12px !important;
  border: 1px solid #c9972b !important;
  background: transparent !important;
  color: #c9972b !important;
  font-size: 12px !important;
}

.tgn-footer .sib-form .sib-form-message-panel--error {
  border-color: var(--tgn-red) !important;
  color: var(--tgn-red) !important;
}

/* ── Our Brands strip ── */
.tgn-footer-brands {
  min-height: 60px;
  padding: 25px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
}

.tgn-footer-brands-label {
  margin: 8px 11px 0 0;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #606268;
}

.tgn-brand-pill {
  min-height: 30px;
  padding: 8px 16px 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter .18s ease;
}

.tgn-brand-pill:hover { filter: brightness(1.08); }
.bp-news { background: #129447; color: #fff; }
.bp-biz { background: #d1a12f; color: #0b0c0e; }
.bp-edu { background: #f59128; color: #0b0c0e; }
.bp-stories { background: #343438; color: #fff; }
.bp-impact { background: #129447; color: #fff; }

.tgn-footer-copyright-sr {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ── Copyright / legal bar ── */
.tgn-footer-legal {
  min-height: 100px;
  padding: 24px 0 26px;
  border-top: 1px solid #2a2a2e;
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(330px, .9fr) minmax(300px, 1fr);
  gap: 34px;
  align-items: center;
  color: #5f6167;
  font-size: 11px;
  line-height: 1.45;
}

.tgn-footer-legal-copy {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
  white-space: normal;
}

.tgn-footer-legal-copy a,
.tgn-footer-parent-brand {
  color: #d09b22;
  text-decoration: none;
  font-weight: 600;
}

.tgn-footer-legal-copy a:hover { color: #f0b72f; }

.tgn-footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 31px);
  flex-wrap: wrap;
}

.tgn-footer-legal-links a {
  color: #5f6167;
  text-decoration: none;
  transition: color .18s ease;
}

.tgn-footer-legal-links a:hover { color: #fff; }

.tgn-footer-legal-tagline {
  justify-self: end;
  text-align: right;
  color: #4d4f54;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── Footer responsive ── */
@media (max-width: 1280px) {
  .tgn-footer { --tgn-footer-max: 1180px; }
  .tgn-footer-grid {
    grid-template-columns: minmax(340px, 1.45fr) repeat(3, minmax(150px, .85fr));
    column-gap: 34px;
  }
  .tgn-footer-about { font-size: 14px; }
  .tgn-footer-col a { font-size: 14px; }
  .tgn-footer-newsletter { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .tgn-footer { padding-top: 54px; }
  .tgn-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    min-height: 0;
    row-gap: 42px;
  }
  .tgn-footer-brand { grid-column: 1 / -1; }
  .tgn-footer-about { max-width: 620px; }
  .tgn-footer-newsletter {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
    padding: 38px 0;
  }
  .tgn-footer-legal {
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
  }
  .tgn-footer-legal-tagline {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .tgn-footer { padding: 42px 24px 0; }
  .tgn-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 28px;
    padding-bottom: 42px;
  }
  .tgn-footer-brand { grid-column: 1 / -1; }
  .tgn-footer-logo-name { font-size: 20px; }
  .tgn-footer-about { max-width: 100%; font-size: 14px; }
  .tgn-footer-col h4 { margin-bottom: 20px; }
  .tgn-footer-col li { margin-bottom: 17px; }
  .tgn-footer-newsletter { padding: 34px 0 38px; }
  .tgn-nl-heading { font-size: 20px; }
  .tgn-nl-sub { font-size: 14px; }
  .tgn-footer .sib-form form,
  .tgn-footer .sib_signup_box_inside_1,
  .tgn-footer-fallback-form {
    grid-template-columns: 1fr !important;
  }
  .tgn-footer .sib-form button[type="submit"],
  .tgn-footer .sib-form input[type="submit"],
  .tgn-footer input.sib-default-btn,
  .tgn-footer-fallback-form button {
    width: 100% !important;
    min-width: 0 !important;
  }
  .tgn-footer-brands { padding-top: 22px; padding-bottom: 22px; }
  .tgn-footer-legal {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 0 28px;
  }
  .tgn-footer-legal-links { justify-content: flex-start; }
  .tgn-footer-legal-tagline { grid-column: auto; }
}


@media (max-width: 520px) {
  .tgn-footer-grid { grid-template-columns: 1fr; }
  .tgn-footer-brand { grid-column: auto; }
  .tgn-footer-social { gap: 7px; }
  .tgn-footer-soc-btn { padding: 9px 12px; font-size: 11px; }
  .tgn-footer-brands-label { flex-basis: 100%; margin-bottom: 4px; }
  .tgn-brand-pill { padding-left: 12px; padding-right: 12px; font-size: 10px; }
  .tgn-footer-legal-copy { display: block; line-height: 1.8; }
  .tgn-footer-legal-copy a, .tgn-footer-parent-brand { display: inline; }
  .tgn-footer-legal-links { gap: 14px 20px; }
  .tgn-footer-legal-tagline { white-space: normal; line-height: 1.5; }
}


/* ══════════════════════════════════════════════
   TGN ZAMBIA HERO SECTION
══════════════════════════════════════════════ */

.tgn-hero {
  display: grid;
  grid-template-columns: minmax(0,1fr) 340px;
  gap: 3px;
  width: 100%;
  background: var(--tgn-black);
  min-height: 520px;
  overflow: hidden;
}

/* ── Dynamic main feature ── */
.tgn-hero-main {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #0d1a10;
}

.tgn-hero-slides,
.tgn-hero-slide {
  position: absolute;
  inset: 0;
}

.tgn-hero-slide {
  display: block;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.012);
  transition: opacity .55s ease, transform .7s ease, visibility .55s;
  text-decoration: none;
}

.tgn-hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}

.tgn-hero-main-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .62;
  transform: scale(1.015);
  transition: opacity .45s ease, transform 6s ease;
}
.tgn-hero-slide.is-active .tgn-hero-main-img { transform: scale(1.055); }
.tgn-hero-main:hover .tgn-hero-main-img { opacity: .72; }

.tgn-hero-main-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,12,14,.78) 0%, rgba(11,12,14,.35) 55%, rgba(11,12,14,.12) 100%),
    linear-gradient(to top, rgba(16,17,20,.98) 0%, rgba(16,17,20,.66) 43%, rgba(16,17,20,.06) 100%);
}

.tgn-hero-main-content {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(28px,3vw,44px) clamp(26px,3.4vw,52px) clamp(30px,3.2vw,46px);
  max-width: 820px;
}

.tgn-hero-kicker {
  margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}

.tgn-hero-main-content h1 {
  font-family: var(--tgn-font-head);
  font-size: clamp(28px,3.1vw,46px);
  font-weight: 850;
  color: var(--tgn-white);
  line-height: 1.09;
  letter-spacing: -.025em;
  margin: 0 0 14px;
  max-width: 760px;
  text-wrap: balance;
}

.tgn-hero-main-content p {
  color: rgba(255,255,255,.76);
  font-size: clamp(12px,1vw,14px);
  font-family: var(--tgn-font-body);
  line-height: 1.65;
  max-width: 650px;
  margin: 0 0 19px;
}

.tgn-hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tgn-hero-time {
  color: rgba(255,255,255,.62);
  font-size: 11px;
  font-family: var(--tgn-font-body);
}

.tgn-hero-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--tgn-gold);
  color: var(--tgn-black);
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 2px;
  margin-left: 4px;
}

.tgn-hero-controls {
  position: absolute;
  z-index: 8;
  right: 22px;
  bottom: 20px;
  display: flex;
  gap: 7px;
}

.tgn-hero-dot {
  width: 22px;
  height: 3px;
  border-radius: 99px;
  background: rgba(255,255,255,.38);
  transition: width .2s ease, background .2s ease;
}
.tgn-hero-dot.is-active { width: 38px; background: var(--tgn-gold); }

.tgn-hero-empty {
  padding: 42px var(--tgn-pad-x);
  color: #fff;
  background: var(--tgn-black);
  font-family: var(--tgn-font-body);
}

/* ── Category pills ── */
.tgn-pill {
  display: inline-block;
  font-family: var(--tgn-font-head);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  padding: 5px 10px 4px;
  border-radius: 2px;
}
.tgn-pill-news     { background: var(--tgn-green);  color: #fff; }
.tgn-pill-business { background: var(--tgn-gold);   color: var(--tgn-black); }
.tgn-pill-education{ background: var(--tgn-orange); color: var(--tgn-black); }
.tgn-pill-stories  { background: #444444;            color: #fff; }
.tgn-pill-impact   { background: var(--tgn-green);   color: #fff; }
.tgn-pill-breaking { background: var(--tgn-red);     color: #fff; }
.tgn-pill-default  { background: #333333;            color: #fff; }
.tgn-pill-international { background:#2555A6; color:#fff; }

/* ── Side Stack ── */
.tgn-hero-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.tgn-hero-card {
  flex: 1;
  position: relative;
  background: var(--tgn-black);
  overflow: hidden;
  min-height: 170px;
  display: block;
  text-decoration: none;
}

.tgn-hero-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .52;
  transition: opacity .3s ease, transform .5s ease;
}
.tgn-hero-card:hover .tgn-hero-card-bg { opacity: .68; transform: scale(1.045); }

.tgn-hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16,17,20,.98) 0%, rgba(16,17,20,.18) 100%);
}

.tgn-hero-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--tgn-gold);
  opacity: 0;
  transition: opacity .2s;
}
.tgn-hero-card:hover::after { opacity: 1; }

.tgn-hero-card-content {
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0; right: 0;
  padding: 16px 18px 17px;
}

.tgn-hero-card-content h3 {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 750;
  color: var(--tgn-white);
  line-height: 1.35;
  margin-top: 7px;
}

.tgn-hero-no-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a20 0%, #101114 100%);
}

/* ══════════════════════════════════════════════
   HERO RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tgn-hero { grid-template-columns: 1fr; min-height: 0; }
  .tgn-hero-main { min-height: 500px; }
  .tgn-hero-stack { flex-direction: row; }
  .tgn-hero-card { min-height: 205px; }
}

@media (max-width: 700px) {
  .tgn-hero-main { min-height: 430px; }
  .tgn-hero-main-content { padding: 28px 20px 30px; max-width: 100%; }
  .tgn-hero-main-content h1 { font-size: clamp(25px,7vw,34px); margin-bottom: 12px; }
  .tgn-hero-main-content p { font-size: 12px; line-height: 1.55; margin-bottom: 16px; }
  .tgn-hero-kicker { margin-bottom: 11px; }
  .tgn-hero-read-btn { display: none; }
  .tgn-hero-controls { right: 16px; bottom: 14px; }
  .tgn-hero-dot { width: 16px; }
  .tgn-hero-dot.is-active { width: 26px; }
  .tgn-hero-stack { flex-direction: column; }
  .tgn-hero-card { min-height: 145px; }
}

/* ══════════════════════════════════════════════
   TGN LATEST NEWS GRID
══════════════════════════════════════════════ */

.tgn-news-section {
  background: var(--tgn-grey-100);
  padding: 40px var(--tgn-pad-x);
}

/* ── Section header ── */
.tgn-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  max-width: var(--tgn-max-w);
  margin-left: auto;
  margin-right: auto;
}

.tgn-section-header::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: var(--tgn-gold);
  border-radius: 1px;
  flex-shrink: 0;
}

.tgn-section-header h2 {
  font-family: var(--tgn-font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tgn-black);
  margin: 0;
}

.tgn-section-header a {
  margin-left: auto;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  border-bottom: 1px solid var(--tgn-gold);
  padding-bottom: 1px;
  text-decoration: none;
  transition: color 0.2s;
}
.tgn-section-header a:hover { color: var(--tgn-gold-light); }

/* ── Grid ── */
.tgn-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--tgn-max-w);
  margin: 0 auto;
}

/* ── Card ── */
.tgn-news-card {
  background: var(--tgn-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--tgn-black);
}

.tgn-news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.13);
}

/* ── Card image ── */
.tgn-news-card-img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* Fallback when no featured image */
.tgn-news-card-img-fallback {
  width: 100%;
  height: 185px;
  background: linear-gradient(135deg, #1a3a20 0%, #101114 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tgn-font-head);
  font-weight: 900;
  font-size: 22px;
  color: var(--tgn-gold);
  flex-shrink: 0;
  letter-spacing: -1px;
}

/* ── Card body ── */
.tgn-news-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tgn-news-card-body h3 {
  font-family: var(--tgn-font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.38;
  color: var(--tgn-black);
  margin: 9px 0 8px;
  transition: color 0.2s;
}

.tgn-news-card:hover .tgn-news-card-body h3 {
  color: var(--tgn-gold);
}

.tgn-news-card-body p {
  font-size: 12px;
  color: var(--tgn-grey-500);
  line-height: 1.6;
  flex: 1;
}

/* ── Card meta ── */
.tgn-news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--tgn-grey-200);
}

.tgn-news-card-meta .tgn-card-time {
  font-size: 11px;
  color: #bbbbbb;
  font-family: var(--tgn-font-body);
}

.tgn-news-read-more {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--tgn-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tgn-pill {
  display: inline-block;
  width: fit-content;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 1px;
  line-height: 1.6;
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   NEWS GRID RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tgn-news-section { padding: 32px 24px; }
}

@media (max-width: 900px) {
  .tgn-news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .tgn-news-grid { grid-template-columns: 1fr; }
  .tgn-news-section { padding: 28px 16px; }
}

/* ══════════════════════════════════════════════
   TGN FEATURED STORY BLOCK
══════════════════════════════════════════════ */

.tgn-featured-section {
  background: var(--tgn-grey-100);
  padding: 0 var(--tgn-pad-x) 40px;
}

/* ── 2-column layout ── */
.tgn-featured-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 20px;
  max-width: var(--tgn-max-w);
  margin: 0 auto;
}

/* ── Featured card ── */
.tgn-featured-card {
  position: relative;
  min-height: 320px;
  border-radius: 2px;
  overflow: hidden;
  background: var(--tgn-black);
  display: block;
  text-decoration: none;
}

.tgn-featured-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.38;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.tgn-featured-card:hover .tgn-featured-card-bg {
  opacity: 0.52;
  transform: scale(1.03);
}

.tgn-featured-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(16,17,20,0.97) 0%,
    rgba(16,17,20,0.4) 60%,
    transparent 100%
  );
}

/* No featured image fallback */
.tgn-featured-card-no-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a20 0%, #101114 100%);
}

.tgn-featured-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}

.tgn-featured-card-content h2 {
  font-family: var(--tgn-font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--tgn-white);
  line-height: 1.3;
  margin: 9px 0 10px;
}

.tgn-featured-card-content p {
  color: #888888;
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.tgn-featured-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tgn-featured-time {
  font-size: 11px;
  color: var(--tgn-grey-500);
  font-family: var(--tgn-font-body);
}

.tgn-featured-read {
  margin-left: auto;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--tgn-gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.tgn-featured-card:hover .tgn-featured-read { color: var(--tgn-gold-light); }

/* ── Side list ── */
.tgn-side-list {
  display: flex;
  flex-direction: column;
  background: var(--tgn-white);
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.tgn-side-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--tgn-grey-200);
  text-decoration: none;
  color: var(--tgn-black);
  transition: background 0.2s;
  align-items: flex-start;
  flex: 1;
}
.tgn-side-item:last-child { border-bottom: none; }
.tgn-side-item:hover { background: var(--tgn-grey-100); }

.tgn-side-img {
  width: 80px;
  height: 62px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.tgn-side-img-fallback {
  width: 80px;
  height: 62px;
  border-radius: 2px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a3a20 0%, #101114 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tgn-font-head);
  font-weight: 900;
  font-size: 12px;
  color: var(--tgn-gold);
}

.tgn-side-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.tgn-side-body h4 {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--tgn-black);
  transition: color 0.2s;
}
.tgn-side-item:hover .tgn-side-body h4 { color: var(--tgn-gold); }

.tgn-side-time {
  font-size: 11px;
  color: #bbbbbb;
  font-family: var(--tgn-font-body);
}

/* ══════════════════════════════════════════════
   FEATURED STORY RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .tgn-featured-row { grid-template-columns: 1fr; }
  .tgn-featured-section { padding: 0 24px 32px; }
  .tgn-side-list { flex-direction: row; flex-wrap: wrap; }
  .tgn-side-item { width: 50%; border-right: 1px solid var(--tgn-grey-200); }
  .tgn-side-item:nth-child(even) { border-right: none; }
  .tgn-side-item:nth-child(3),
  .tgn-side-item:nth-child(4) { border-bottom: none; }
}

@media (max-width: 580px) {
  .tgn-featured-section { padding: 0 16px 28px; }
  .tgn-featured-card { min-height: 260px; }
  .tgn-featured-card-content h2 { font-size: 17px; }
  .tgn-side-list { flex-direction: column; }
  .tgn-side-item { width: 100%; border-right: none; }
  .tgn-side-item:nth-child(3),
  .tgn-side-item:nth-child(4) { border-bottom: 1px solid var(--tgn-grey-200); }
  .tgn-side-item:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════
   TGN YOUTUBE VIDEOS SECTION — CLEAN v3.0
══════════════════════════════════════════════ */

.tgn-videos-section {
  background: var(--tgn-dark);
  padding: 40px var(--tgn-pad-x);
}

/* ── Section header ── */
.tgn-videos-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  max-width: var(--tgn-max-w);
  margin-left: auto;
  margin-right: auto;
}

.tgn-videos-header::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: var(--tgn-gold);
  border-radius: 1px;
  flex-shrink: 0;
}

.tgn-videos-header h2 {
  font-family: var(--tgn-font-head);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tgn-white);
  margin: 0;
}

.tgn-yt-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FF0000;
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  margin-left: 4px;
  flex-shrink: 0;
}

.tgn-view-channel {
  margin-left: auto;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  border-bottom: 1px solid var(--tgn-gold);
  padding-bottom: 1px;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.tgn-view-channel:hover { color: var(--tgn-gold-light); }

/* ── Feed wrapper ── */
.tgn-video-feed-wrap {
  max-width: var(--tgn-max-w);
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   SMASH BALLOON OVERRIDES
══════════════════════════════════════════════ */

/* ── Grid ── */
.tgn-videos-section .sby_items_wrap,
div.sby_items_wrap[style] {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
  max-width: var(--tgn-max-w) !important;
  margin: 0 auto !important;
  padding: 0 !important;
  float: none !important;
  list-style: none !important;
  background: transparent !important;
}

/* ── Each item ── */
.tgn-videos-section .sby_item {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* ── Thumbnail — 16:9 ── */
.tgn-videos-section .sby_video_thumbnail,
a.sby_video_thumbnail[style] {
  display: block !important;
  height: 0 !important;
  min-height: unset !important;
  padding-top: 56.25% !important;
  position: relative !important;
  border-radius: 2px !important;
  overflow: hidden !important;
  background-size: cover !important;
  background-position: center center !important;
}

/* ── Hide hover overlay ── */
.tgn-videos-section .sby_thumbnail_hover,
.tgn-videos-section .sby_thumbnail_hover_inner {
  display: none !important;
}

/* ── Play button wrapper ── */
.tgn-videos-section .sby_play_btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 50px !important;
  height: 50px !important;
  margin-top: -25px !important;
  margin-left: -25px !important;
  transform: none !important;
  z-index: 2 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* ── Play button background circle ── */
.tgn-videos-section .sby_play_btn_bg {
  position: absolute !important;
  inset: 0 !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(201,151,43,0.9) !important;
  border-radius: 50% !important;
  z-index: 1 !important;
  transform: none !important;
  transition: background 0.2s !important;
}

/* ── Play button SVG icon ── */
.tgn-videos-section .sby_play_btn svg {
  position: relative !important;
  z-index: 2 !important;
  width: 20px !important;
  height: 20px !important;
  fill: #ffffff !important;
  color: #ffffff !important;
  margin-left: 3px !important;
  transform: none !important;
}

/* ── Play button hover ── */
.tgn-videos-section .sby_item:hover .sby_play_btn_bg {
  background: #C9972B !important;
  transform: scale(1.08) !important;
}

/* ── Duration badge on thumbnail ── */
.tgn-videos-section .tgn-sby-duration-badge {
  position: absolute !important;
  bottom: 7px !important;
  right: 7px !important;
  background: rgba(0,0,0,0.85) !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  padding: 2px 6px !important;
  border-radius: 2px !important;
  z-index: 3 !important;
  pointer-events: none !important;
  line-height: 1.4 !important;
}

/* ── JS-injected title ── */
.tgn-videos-section .tgn-sby-title {
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  color: #ffffff !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  padding: 8px 0 4px !important;
  margin: 0 !important;
  word-break: break-word !important;
  transition: color 0.2s !important;
}

.tgn-videos-section .sby_item:hover .tgn-sby-title {
  color: #C9972B !important;
}

/* ── JS-injected meta bar ── */
.tgn-videos-section .tgn-sby-meta {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  margin-top: 4px !important;
  padding-bottom: 4px !important;
  flex-wrap: nowrap !important;
  overflow: visible !important;
}

.tgn-videos-section .tgn-sby-views,
.tgn-videos-section .tgn-sby-date {
  font-family: 'Poppins', sans-serif !important;
  font-size: 10px !important;
  color: #9E9E9E !important;
  white-space: nowrap !important;
  line-height: 1.6 !important;
}

.tgn-videos-section .tgn-sby-sep {
  font-size: 10px !important;
  color: #555 !important;
  line-height: 1.6 !important;
}

/* ── Duration in meta — hidden (shown as badge instead) ── */
.tgn-videos-section .tgn-sby-duration {
  display: none !important;
}

/* ── Load more button ── */
.tgn-videos-section .sby_load_more_btn {
  background: transparent !important;
  border: 1px solid var(--tgn-gold) !important;
  color: var(--tgn-gold) !important;
  font-family: 'Montserrat', sans-serif !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
  border-radius: 2px !important;
  margin-top: 24px !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
}
.tgn-videos-section .sby_load_more_btn:hover {
  background: var(--tgn-gold) !important;
  color: #101114 !important;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tgn-videos-section .sby_items_wrap,
  div.sby_items_wrap[style] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 580px) {
  .tgn-videos-section {
    padding: 28px 16px !important;
  }
  .tgn-videos-section .sby_items_wrap,
  div.sby_items_wrap[style] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .tgn-yt-badge { display: none !important; }
}

/* ══════════════════════════════════════════════
   TGN SIDEBAR STRIP
══════════════════════════════════════════════ */

.tgn-sidebar-strip {
  background: var(--tgn-white);
  border-top: 1px solid var(--tgn-grey-200);
  border-bottom: 1px solid var(--tgn-grey-200);
  padding: 40px var(--tgn-pad-x);
}

.tgn-sidebar-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
  max-width: var(--tgn-max-w);
  margin: 0 auto;
}

/* ── Shared widget header ── */
.tgn-widget-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--tgn-grey-200);
}

.tgn-widget-header::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--tgn-gold);
  border-radius: 1px;
  flex-shrink: 0;
}

.tgn-widget-header h3 {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tgn-black);
  margin: 0;
}

/* ── Trending ── */
.tgn-trending-list { list-style: none; }

.tgn-trending-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--tgn-grey-200);
  text-decoration: none;
  color: var(--tgn-black);
}
.tgn-trending-item:last-child { border-bottom: none; }

.tgn-trending-num {
  font-family: var(--tgn-font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--tgn-grey-200);
  line-height: 1;
  min-width: 32px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.tgn-trending-item:hover .tgn-trending-num { color: var(--tgn-gold); }

.tgn-trending-body { flex: 1; min-width: 0; }

.tgn-trending-title {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--tgn-black);
  margin-bottom: 5px;
  transition: color 0.2s;
}
.tgn-trending-item:hover .tgn-trending-title { color: var(--tgn-gold); }

.tgn-trending-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tgn-trending-time {
  font-size: 11px;
  color: #bbbbbb;
  font-family: var(--tgn-font-body);
}

/* ── Newsletter ── */
.tgn-nl-desc {
  font-size: 13px;
  color: #777777;
  line-height: 1.65;
  margin-bottom: 18px;
}

.tgn-nl-note {
  font-size: 11px;
  color: #bbbbbb;
  margin-top: 10px;
  font-family: var(--tgn-font-body);
}

/* Brevo form overrides — light background */
.tgn-sidebar-strip .sib_signup_box_inside_1 {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}

.tgn-sidebar-strip .sib_signup_box_inside_1 p {
  margin: 0 !important;
  padding: 0 !important;
}

.tgn-sidebar-strip .sib_signup_box_inside_1 p.sib-email-area {
  flex: 1 !important;
  font-size: 0 !important;
}

.tgn-sidebar-strip input.sib-email-area {
  width: 100% !important;
  font-size: 13px !important;
  background: var(--tgn-grey-100) !important;
  border: 1px solid var(--tgn-grey-200) !important;
  border-radius: 2px !important;
  color: var(--tgn-black) !important;
  font-family: var(--tgn-font-body) !important;
  padding: 10px 13px !important;
  outline: none !important;
  box-shadow: none !important;
  height: auto !important;
  transition: border-color 0.2s !important;
}

.tgn-sidebar-strip input.sib-email-area::placeholder {
  color: #aaaaaa !important;
}

.tgn-sidebar-strip input.sib-email-area:focus {
  border-color: var(--tgn-gold) !important;
}

.tgn-sidebar-strip input.sib-default-btn {
  background: var(--tgn-gold) !important;
  color: var(--tgn-black) !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: var(--tgn-font-head) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  padding: 10px 18px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  box-shadow: none !important;
  transition: background 0.2s !important;
  flex-shrink: 0 !important;
}

.tgn-sidebar-strip input.sib-default-btn:hover {
  background: var(--tgn-gold-light) !important;
}

/* ── Social Follow ── */
.tgn-social-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tgn-soc-follow-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: 2px;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.tgn-soc-follow-btn:hover {
  opacity: 0.88;
  transform: translateX(3px);
}
.tgn-soc-follow-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}
.tgn-soc-follow-arrow {
  margin-left: auto;
  font-size: 11px;
  opacity: 0.8;
}

.tgn-soc-fb { background: #1877F2; }
.tgn-soc-yt { background: #FF0000; }
.tgn-soc-li { background: #0A66C2; }
.tgn-soc-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tgn-sidebar-strip { padding: 32px 24px; }
}

@media (max-width: 900px) {
  .tgn-sidebar-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .tgn-sidebar-inner > :first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .tgn-sidebar-strip { padding: 28px 16px; }
  .tgn-sidebar-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .tgn-sidebar-inner > :first-child { grid-column: auto; }
  .tgn-sidebar-strip .sib_signup_box_inside_1 {
    flex-direction: column !important;
  }
  .tgn-sidebar-strip input.sib-default-btn {
    width: 100% !important;
  }
}


/* ══════════════════════════════════════════════
   TGN SINGLE POST TEMPLATE
══════════════════════════════════════════════ */

/* ── Breadcrumb ── */
.tgn-breadcrumb {
  background: var(--tgn-white);
  border-bottom: 1px solid var(--tgn-grey-200);
  padding: 10px var(--tgn-pad-x);
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tgn-grey-500);
}
.tgn-breadcrumb a { color: var(--tgn-grey-500); transition: color 0.2s; }
.tgn-breadcrumb a:hover { color: var(--tgn-gold); }
.tgn-breadcrumb .breadcrumb_last { color: var(--tgn-black); }
.tgn-breadcrumb .breadcrumb-separator { margin: 0 7px; }

/* ── Article hero ── */
.tgn-article-hero {
  background: var(--tgn-black);
  padding: 52px var(--tgn-pad-x) 40px;
}

.tgn-article-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.tgn-article-hero h1 {
  font-family: var(--tgn-font-head);
  font-size: 34px;
  font-weight: 900;
  color: var(--tgn-white);
  line-height: 1.22;
  margin: 12px 0 16px;
}

.tgn-article-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.tgn-article-meta .tgn-author {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  color: #cccccc;
}

.tgn-article-meta .tgn-date,
.tgn-article-meta .tgn-reading {
  font-size: 12px;
  color: var(--tgn-grey-500);
}

.tgn-meta-dot { color: #444444; }

/* ── Featured image ── */
.tgn-article-feat-img-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.tgn-article-feat-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.tgn-article-feat-img-fallback {
  width: 100%;
  height: 420px;
  background: linear-gradient(135deg, #1a3a20 0%, #101114 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tgn-font-head);
  font-weight: 900;
  font-size: 36px;
  color: var(--tgn-gold);
}

.tgn-img-caption {
  font-size: 11px;
  color: var(--tgn-grey-500);
  font-style: italic;
  text-align: center;
  margin: 8px 0 0;
}

/* ── Article layout ── */
.tgn-article-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tgn-article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 40px 0 56px;
}

/* ── Article body ── */
.tgn-article-body {
  background: var(--tgn-white);
  padding: 36px 40px;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.tgn-gold-rule {
  width: 60px;
  height: 3px;
  background: var(--tgn-gold);
  border-radius: 1px;
  margin-bottom: 28px;
}

/* Typography */
.tgn-article-body .entry-content p,
.tgn-article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.tgn-article-body .entry-content h2,
.tgn-article-body h2 {
  font-family: var(--tgn-font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--tgn-black);
  margin: 32px 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--tgn-gold);
}

.tgn-article-body .entry-content h3,
.tgn-article-body h3 {
  font-family: var(--tgn-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--tgn-black);
  margin: 24px 0 12px;
}

.tgn-article-body .entry-content blockquote,
.tgn-article-body blockquote {
  border-left: 4px solid var(--tgn-gold);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(201,151,43,0.05);
  font-size: 16px;
  font-style: italic;
  color: #444;
  line-height: 1.7;
}

.tgn-article-body .entry-content blockquote cite,
.tgn-article-body blockquote cite {
  display: block;
  font-size: 12px;
  font-style: normal;
  font-family: var(--tgn-font-head);
  font-weight: 700;
  color: var(--tgn-gold);
  margin-top: 10px;
}

.tgn-article-body .entry-content img {
  max-width: 100%;
  border-radius: 2px;
  margin: 16px 0;
}

.tgn-article-body .entry-content ul,
.tgn-article-body .entry-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.tgn-article-body .entry-content li {
  font-size: 15px;
  line-height: 1.8;
  color: #2a2a2a;
  margin-bottom: 6px;
}

.tgn-article-body .entry-content a {
  color: var(--tgn-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ── Share bar ── */
.tgn-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--tgn-grey-200);
  flex-wrap: wrap;
}

.tgn-share-label {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #777;
}

.tgn-share-btn {
  padding: 7px 14px;
  border-radius: 2px;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}
.tgn-share-btn:hover { opacity: 0.85; }
.tgn-sh-fb { background: #1877F2; }
.tgn-sh-wa { background: #25D366; }
.tgn-sh-li { background: #0A66C2; }
.tgn-sh-tw { background: #1DA1F2; }
.tgn-sh-copy {
  appearance: none;
  border: 0;
  background: #101114;
  cursor: pointer;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.tgn-sh-copy:hover { background: var(--tgn-gold); color: #101114; opacity: 1; }
.tgn-sh-copy.is-copied { background: #11823b; color: #fff; }
.tgn-copy-icon { font-size: 13px; line-height: 1; }
.tgn-sh-copy:focus-visible { outline: 3px solid rgba(207,154,32,.35); outline-offset: 2px; }


/* ── Tags ── */
.tgn-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--tgn-grey-200);
}

.tgn-post-tag {
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--tgn-grey-200);
  border-radius: 2px;
  color: #777;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.tgn-post-tag:hover { border-color: var(--tgn-gold); color: var(--tgn-gold); }

/* ── Author box ── */
.tgn-author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--tgn-grey-100);
  border: 1px solid var(--tgn-grey-200);
  border-left: 3px solid var(--tgn-gold);
  padding: 20px;
  margin-top: 28px;
  border-radius: 2px;
}

.tgn-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a3a20, #101114);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tgn-font-head);
  font-weight: 900;
  font-size: 18px;
  color: var(--tgn-gold);
  flex-shrink: 0;
  overflow: hidden;
}

.tgn-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tgn-author-name {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--tgn-black);
  margin-bottom: 3px;
}

.tgn-author-role {
  font-size: 11px;
  color: var(--tgn-gold);
  font-family: var(--tgn-font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tgn-author-bio {
  font-size: 12px;
  color: #777;
  line-height: 1.6;
}

/* ── Sidebar ── */
.tgn-sidebar-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.tgn-sidebar-label::before {
  content: '';
  display: block;
  width: 4px;
  height: 20px;
  background: var(--tgn-gold);
  border-radius: 1px;
}
.tgn-sidebar-label span {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── Related posts ── */
.tgn-related-card {
  background: var(--tgn-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  margin-bottom: 12px;
  display: flex;
  text-decoration: none;
  color: var(--tgn-black);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tgn-related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.tgn-related-img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}

.tgn-related-img-fallback {
  width: 90px;
  height: 70px;
  background: linear-gradient(135deg, #1a3a20, #101114);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tgn-font-head);
  font-weight: 900;
  font-size: 13px;
  color: var(--tgn-gold);
}

.tgn-related-body { padding: 10px 12px; }

.tgn-related-title {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--tgn-black);
  margin-bottom: 4px;
  transition: color 0.2s;
}
.tgn-related-card:hover .tgn-related-title { color: var(--tgn-gold); }
.tgn-related-meta { font-size: 11px; color: #bbbbbb; }

/* ── Sidebar newsletter ── */
.tgn-sidebar-nl {
  background: var(--tgn-black);
  padding: 20px;
  border-top: 3px solid var(--tgn-gold);
  border-radius: 2px;
  margin-top: 24px;
}

.tgn-sidebar-nl h3 {
  font-family: var(--tgn-font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--tgn-white);
  margin-bottom: 7px;
}

.tgn-sidebar-nl p {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
  line-height: 1.55;
}

/* Brevo overrides — dark sidebar */
.tgn-sidebar-nl .sib_signup_box_inside_1 {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
}
.tgn-sidebar-nl .sib_signup_box_inside_1 p { margin: 0 !important; }
.tgn-sidebar-nl .sib_signup_box_inside_1 p.sib-email-area { font-size: 0 !important; }

.tgn-sidebar-nl input.sib-email-area {
  width: 100% !important;
  padding: 9px 11px !important;
  background: #1e1e22 !important;
  border: 1px solid #333 !important;
  color: #fff !important;
  font-family: var(--tgn-font-body) !important;
  font-size: 12px !important;
  outline: none !important;
  border-radius: 1px !important;
  box-shadow: none !important;
  height: auto !important;
}
.tgn-sidebar-nl input.sib-email-area::placeholder { color: #555 !important; }
.tgn-sidebar-nl input.sib-email-area:focus { border-color: var(--tgn-gold) !important; }

.tgn-sidebar-nl input.sib-default-btn {
  width: 100% !important;
  background: var(--tgn-gold) !important;
  color: var(--tgn-black) !important;
  border: none !important;
  padding: 9px !important;
  font-family: var(--tgn-font-head) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 1px !important;
  box-shadow: none !important;
  transition: background 0.2s !important;
}
.tgn-sidebar-nl input.sib-default-btn:hover {
  background: var(--tgn-gold-light) !important;
}

/* ── Sidebar trending ── */
.tgn-sidebar-trending {
  background: var(--tgn-white);
  padding: 18px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  margin-top: 24px;
}

.tgn-sidebar-trend-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--tgn-grey-200);
  text-decoration: none;
  color: var(--tgn-black);
}
.tgn-sidebar-trend-item:last-child { border-bottom: none; }

.tgn-sidebar-trend-num {
  font-family: var(--tgn-font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--tgn-grey-200);
  line-height: 1;
  min-width: 26px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.tgn-sidebar-trend-item:hover .tgn-sidebar-trend-num { color: var(--tgn-gold); }

.tgn-sidebar-trend-title {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s;
}
.tgn-sidebar-trend-item:hover .tgn-sidebar-trend-title { color: var(--tgn-gold); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tgn-article-layout { grid-template-columns: 1fr 260px; gap: 28px; }
}

@media (max-width: 900px) {
  .tgn-article-layout        { grid-template-columns: 1fr; }
  .tgn-article-hero          { padding: 36px 24px 28px; }
  .tgn-article-hero h1       { font-size: 26px; }
  .tgn-article-body          { padding: 24px 20px; }
  .tgn-article-wrap          { padding: 0 16px; }
  .tgn-article-feat-img-wrap { padding: 24px 16px 0; }

 /* Breadcrumb */
 
.tgn-breadcrumb {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  overflow: visible !important;
  padding: 10px 16px !important;
  font-size: 12px !important;
  background: #ffffff !important;
  border-bottom: 1px solid #E0E0E0 !important;
  position: relative !important;
  z-index: 1 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
  .tgn-breadcrumb span {
    display: block !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
}

/* Date — desktop shows long, mobile shows short */
.tgn-date-long  { display: inline !important; }
.tgn-date-short { display: none !important; }

/* Mobile — short date */
@media (max-width: 580px) {
  .tgn-article-hero h1           { font-size: 22px; }
  .tgn-article-feat-img          { height: 220px; }
  .tgn-article-feat-img-fallback { height: 220px; }
  .tgn-share-bar                 { flex-wrap: wrap; }
  .tgn-date-long                 { display: none !important; }
  .tgn-date-short                { display: inline !important; font-size: 11px !important; }
}

/* Desktop — long date */
@media (min-width: 581px) {
  .tgn-date-long  { display: inline !important; }
  .tgn-date-short { display: none !important; }
}

  /* Meta — keep on one line, hide full date */
   .tgn-article-meta {
    flex-wrap: nowrap !important;
    font-size: 11px !important;
    gap: 6px !important;
  }

/* ══════════════════════════════════════════════
   TGN NEWS ARCHIVE
══════════════════════════════════════════════ */

/* ── Archive hero ── */
.tgn-archive-hero {
  background: var(--tgn-black);
  padding: 48px var(--tgn-pad-x) 40px;
  border-bottom: 2px solid var(--tgn-gold);
}

.tgn-archive-hero-inner {
  max-width: var(--tgn-max-w);
  margin: 0 auto;
}

.tgn-archive-eyebrow {
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  margin-bottom: 10px;
}

.tgn-archive-hero h1 {
  font-family: var(--tgn-font-head);
  font-size: 36px;
  font-weight: 900;
  color: var(--tgn-white);
  margin-bottom: 8px;
}

.tgn-archive-hero p {
  color: #666666;
  font-size: 13px;
  max-width: 500px;
}

/* ── Filter bar ── */
.tgn-filter-bar {
  background: var(--tgn-white);
  border-bottom: 1px solid var(--tgn-grey-200);
  padding: 14px var(--tgn-pad-x);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.tgn-filter-label {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  color: #777;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-right: 6px;
  white-space: nowrap;
}

.tgn-filter-btn {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  border: 1px solid var(--tgn-grey-200);
  color: #777;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}
.tgn-filter-btn:hover,
.tgn-filter-btn.active {
  background: var(--tgn-gold);
  color: var(--tgn-black);
  border-color: var(--tgn-gold);
}

/* ── Layout ── */
.tgn-archive-wrap {
  max-width: var(--tgn-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.tgn-archive-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  padding: 36px 0 56px;
}

/* ── Top story ── */
.tgn-top-story {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  margin-bottom: 28px;
  background: var(--tgn-white);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
  text-decoration: none;
  color: var(--tgn-black);
  transition: box-shadow 0.2s;
}
.tgn-top-story:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.12); }

.tgn-top-story-img {
  min-height: 280px;
  background-size: cover;
  background-position: center;
  background-color: var(--tgn-black);
}

.tgn-top-story-img-fallback {
  min-height: 280px;
  background: linear-gradient(135deg, #1a3a20, #101114);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tgn-font-head);
  font-weight: 900;
  font-size: 32px;
  color: var(--tgn-gold);
}

.tgn-top-story-body {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tgn-top-story-body h2 {
  font-family: var(--tgn-font-head);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--tgn-black);
  margin: 9px 0 10px;
  transition: color 0.2s;
}
.tgn-top-story:hover .tgn-top-story-body h2 { color: var(--tgn-gold); }

.tgn-top-story-body p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}

.tgn-top-story-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tgn-top-story-meta .tgn-time { font-size: 11px; color: #bbbbbb; }

.tgn-read-more-link {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--tgn-gold);
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--tgn-gold);
  padding-bottom: 1px;
}

/* ── Section label ── */
.tgn-archive-slbl {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.tgn-archive-slbl::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--tgn-gold);
  border-radius: 1px;
}
.tgn-archive-slbl span {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ── News grid (3 columns) ── */
.tgn-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}

/* ── Article list ── */
.tgn-archive-list { margin-bottom: 28px; }

.tgn-alist-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--tgn-grey-200);
  text-decoration: none;
  color: var(--tgn-black);
}
.tgn-alist-item:last-child { border-bottom: none; }

.tgn-alist-img {
  width: 110px;
  height: 80px;
  border-radius: 2px;
  object-fit: cover;
  flex-shrink: 0;
}

.tgn-alist-img-fallback {
  width: 110px;
  height: 80px;
  border-radius: 2px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #1a3a20, #101114);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tgn-font-head);
  font-weight: 900;
  font-size: 14px;
  color: var(--tgn-gold);
}

.tgn-alist-body h3 {
  font-family: var(--tgn-font-head);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--tgn-black);
  margin: 5px 0 6px;
  transition: color 0.2s;
}
.tgn-alist-item:hover .tgn-alist-body h3 { color: var(--tgn-gold); }

.tgn-alist-body p {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
}

.tgn-alist-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.tgn-alist-meta .tgn-time { font-size: 11px; color: #bbbbbb; }

/* ── Pagination ── */
.tgn-pagination {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.tgn-page-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--tgn-grey-200);
  border-radius: 2px;
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 600;
  color: #777;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.tgn-page-btn:hover,
.tgn-page-btn.current {
  background: var(--tgn-gold);
  color: var(--tgn-black);
  border-color: var(--tgn-gold);
}

/* ── Sidebar trending ── */
.tgn-archive-trending { list-style: none; }

.tgn-archive-trend-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--tgn-grey-200);
  text-decoration: none;
  color: var(--tgn-black);
}
.tgn-archive-trend-item:last-child { border-bottom: none; }

.tgn-archive-trend-num {
  font-family: var(--tgn-font-head);
  font-size: 22px;
  font-weight: 900;
  color: var(--tgn-grey-200);
  line-height: 1;
  min-width: 26px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.tgn-archive-trend-item:hover .tgn-archive-trend-num { color: var(--tgn-gold); }

.tgn-archive-trend-title {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s;
}
.tgn-archive-trend-item:hover .tgn-archive-trend-title { color: var(--tgn-gold); }

/* ── Sidebar newsletter ── */
.tgn-archive-nl {
  background: var(--tgn-black);
  padding: 20px;
  border-top: 3px solid var(--tgn-gold);
  border-radius: 2px;
  margin-top: 24px;
}
.tgn-archive-nl h3 {
  font-family: var(--tgn-font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--tgn-white);
  margin-bottom: 7px;
}
.tgn-archive-nl p {
  font-size: 12px;
  color: #777;
  margin-bottom: 12px;
  line-height: 1.55;
}

/* Brevo overrides — dark sidebar */
.tgn-archive-nl .sib_signup_box_inside_1 {
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
}
.tgn-archive-nl .sib_signup_box_inside_1 p { margin: 0 !important; }
.tgn-archive-nl .sib_signup_box_inside_1 p.sib-email-area { font-size: 0 !important; }
.tgn-archive-nl input.sib-email-area {
  width: 100% !important;
  padding: 9px 11px !important;
  background: #1e1e22 !important;
  border: 1px solid #333 !important;
  color: #fff !important;
  font-family: var(--tgn-font-body) !important;
  font-size: 12px !important;
  outline: none !important;
  border-radius: 1px !important;
  box-shadow: none !important;
  height: auto !important;
}
.tgn-archive-nl input.sib-email-area::placeholder { color: #555 !important; }
.tgn-archive-nl input.sib-email-area:focus { border-color: var(--tgn-gold) !important; }
.tgn-archive-nl input.sib-default-btn {
  width: 100% !important;
  background: var(--tgn-gold) !important;
  color: var(--tgn-black) !important;
  border: none !important;
  padding: 9px !important;
  font-family: var(--tgn-font-head) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  border-radius: 1px !important;
  box-shadow: none !important;
}
.tgn-archive-nl input.sib-default-btn:hover {
  background: var(--tgn-gold-light) !important;
}

/* ══════════════════════════════════════════════
   ARCHIVE RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tgn-archive-layout { gap: 28px; }
}

@media (max-width: 900px) {
  .tgn-archive-layout    { grid-template-columns: 1fr; }
  .tgn-top-story         { grid-template-columns: 1fr; }
  .tgn-top-story-img     { min-height: 200px; }
  .tgn-archive-grid      { grid-template-columns: repeat(2, 1fr); }
  .tgn-archive-hero      { padding: 36px 24px 28px; }
  .tgn-filter-bar        { padding: 12px 16px; }
  .tgn-archive-wrap      { padding: 0 16px; }
}

@media (max-width: 580px) {
  .tgn-archive-hero h1   { font-size: 26px; }
  .tgn-archive-grid      { grid-template-columns: 1fr; }
  .tgn-filter-bar        { gap: 6px; }
  .tgn-filter-btn        { font-size: 10px; padding: 4px 10px; }
}

/* ══════════════════════════════════════════════
   TGN VIDEOS PAGE — Clean v1.1
══════════════════════════════════════════════ */

/* ── Hero ── */
.tgn-videos-page-hero {
  background: var(--tgn-black);
  padding: 72px var(--tgn-pad-x) 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--tgn-gold);
}
.tgn-videos-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,151,43,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.tgn-yt-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF0000;
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}
.tgn-videos-page-hero h1 {
  font-family: var(--tgn-font-head);
  font-size: 44px;
  font-weight: 900;
  color: var(--tgn-white);
  margin-bottom: 12px;
  line-height: 1.15;
}
.tgn-videos-page-hero h1 span { color: var(--tgn-gold); }
.tgn-videos-page-hero p {
  color: #666666;
  font-size: 14px;
  max-width: 480px;
  margin: 0 auto 28px;
}
.tgn-yt-sub-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FF0000;
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 26px;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.tgn-yt-sub-btn:hover { opacity: 0.88; }

/* ── Tabs ── */
.tgn-video-page-tabs {
  background: #0d0d10;
  border-bottom: 1px solid var(--tgn-border);
  padding: 0 var(--tgn-pad-x);
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tgn-video-page-tabs::-webkit-scrollbar { display: none; }
.tgn-video-page-tab {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  color: var(--tgn-grey-500);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.2s, border-color 0.2s;
  text-decoration: none;
  display: inline-block;
}
.tgn-video-page-tab:hover,
.tgn-video-page-tab.active {
  color: var(--tgn-gold);
  border-color: var(--tgn-gold);
}

/* ── Page wrap ── */
.tgn-vpage-wrap {
  background: var(--tgn-dark);
  max-width: 100%;
  padding: 40px var(--tgn-pad-x) 56px;
}
.tgn-vpage-wrap-inner {
  max-width: var(--tgn-max-w);
  margin: 0 auto;
}

/* ── Section label ── */
.tgn-vpage-slbl {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.tgn-vpage-slbl::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--tgn-gold);
  border-radius: 1px;
}
.tgn-vpage-slbl span {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tgn-white);
}

/* ── Featured video ── */
.tgn-feat-video {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 28px;
  margin-bottom: 48px;
}
.tgn-feat-video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: linear-gradient(135deg, #1a3a20, #101114);
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.tgn-feat-video-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tgn-feat-video-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.tgn-feat-video-thumb:hover .tgn-feat-video-img { opacity: 0.85; }
.tgn-big-play-btn {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  background: rgba(201,151,43,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}
.tgn-feat-video-thumb:hover .tgn-big-play-btn {
  transform: scale(1.1);
  background: var(--tgn-gold);
}
.tgn-big-play-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--tgn-black);
  margin-left: 4px;
}
.tgn-feat-video-dur {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.85);
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 2px;
  z-index: 2;
}
.tgn-feat-video-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tgn-feat-video-info h2 {
  font-family: var(--tgn-font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--tgn-white);
  line-height: 1.3;
  margin: 10px 0 10px;
}
.tgn-feat-video-info p {
  color: #666666;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.tgn-feat-video-meta {
  font-size: 11px;
  color: var(--tgn-grey-500);
  margin-bottom: 20px;
}
.tgn-watch-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tgn-gold);
  color: var(--tgn-black);
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
  width: fit-content;
}
.tgn-watch-now-btn:hover { background: var(--tgn-gold-light); }
.tgn-watch-now-btn svg { width: 14px; height: 14px; fill: currentColor; }

/* ── Video grid — full width ── */
.tgn-vpage-grid {
  width: 100% !important;
  max-width: var(--tgn-max-w) !important;
  margin: 0 auto !important;
}
.tgn-vpage-grid .sby_items_wrap,
.tgn-vpage-grid div.sby_items_wrap[style] {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}
.tgn-vpage-grid .sby_item {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tgn-feat-video { grid-template-columns: 1fr; }
  .tgn-vpage-grid .sby_items_wrap,
  .tgn-vpage-grid div.sby_items_wrap[style] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 580px) {
  .tgn-videos-page-hero       { padding: 48px 16px 40px; }
  .tgn-videos-page-hero h1    { font-size: 28px; }
  .tgn-video-page-tabs        { padding: 0 16px; }
  .tgn-vpage-wrap             { padding: 28px 16px 40px; }
  .tgn-vpage-grid .sby_items_wrap,
  .tgn-vpage-grid div.sby_items_wrap[style] {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
}

/* ══════════════════════════════════════════════
   TGN ABOUT US PAGE
══════════════════════════════════════════════ */

/* ── Hero ── */
.tgn-about-hero {
  background: var(--tgn-black);
  padding: 80px var(--tgn-pad-x) 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--tgn-gold);
}
.tgn-about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201,151,43,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.tgn-about-eyebrow {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  margin-bottom: 16px;
}
.tgn-about-hero h1 {
  font-family: var(--tgn-font-head);
  font-size: 48px;
  font-weight: 900;
  color: var(--tgn-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.tgn-about-hero h1 span { color: var(--tgn-gold); }
.tgn-about-hero p {
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ── Mission / Vision ── */
.tgn-mv-section {
  background: var(--tgn-white);
  padding: 56px var(--tgn-pad-x);
  border-bottom: 1px solid var(--tgn-grey-200);
}
.tgn-mv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.tgn-mv-card {
  padding: 32px;
  background: var(--tgn-grey-100);
  border-radius: 2px;
  border-top: 3px solid var(--tgn-gold);
}
.tgn-mv-card h3 {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  margin-bottom: 14px;
}
.tgn-mv-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #444444;
}

/* ── Who We Are ── */
.tgn-about-story {
  background: var(--tgn-white);
  padding: 64px var(--tgn-pad-x);
  border-bottom: 1px solid var(--tgn-grey-200);
}
.tgn-about-story-inner {
  max-width: 760px;
  margin: 0 auto;
}
.tgn-about-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.tgn-about-section-label::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--tgn-gold);
  border-radius: 1px;
}
.tgn-about-section-label span {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tgn-about-story p {
  font-size: 15px;
  line-height: 1.85;
  color: #333333;
  margin-bottom: 20px;
}
.tgn-about-story p:last-child { margin-bottom: 0; }
.tgn-about-story strong { color: var(--tgn-black); font-weight: 600; }

/* ── Pillars ── */
.tgn-pillars-section {
  background: var(--tgn-black);
  padding: 64px var(--tgn-pad-x);
  border-bottom: 2px solid var(--tgn-gold);
}
.tgn-pillars-inner { max-width: var(--tgn-max-w); margin: 0 auto; }
.tgn-pillars-header { text-align: center; margin-bottom: 44px; }
.tgn-pillars-header h2 {
  font-family: var(--tgn-font-head);
  font-size: 28px;
  font-weight: 900;
  color: var(--tgn-white);
  margin-bottom: 10px;
}
.tgn-pillars-header p { color: #555555; font-size: 14px; }
.tgn-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.tgn-pillar-card {
  background: #16161A;
  border: 1px solid #2a2a2e;
  border-top: 3px solid var(--tgn-gold);
  padding: 28px 20px;
  border-radius: 2px;
  text-align: center;
  transition: background 0.2s;
}
.tgn-pillar-card:hover { background: #1c1c22; }
.tgn-pillar-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
}
.tgn-pillar-card h4 {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 800;
  color: var(--tgn-white);
  margin-bottom: 8px;
}
.tgn-pillar-card p { font-size: 12px; color: #666666; line-height: 1.6; }

/* ── Stats ── */
.tgn-stats-section {
  background: var(--tgn-gold);
  padding: 48px var(--tgn-pad-x);
}
.tgn-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1000px;
  margin: 0 auto;
}
.tgn-stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(16,17,20,0.15);
}
.tgn-stat-item:last-child { border-right: none; }
.tgn-stat-num {
  font-family: var(--tgn-font-head);
  font-size: 44px;
  font-weight: 900;
  color: var(--tgn-black);
  line-height: 1;
  margin-bottom: 6px;
}
.tgn-stat-label {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(16,17,20,0.6);
}

/* ── Coverage areas ── */
.tgn-brands-section {
  background: var(--tgn-white);
  padding: 64px var(--tgn-pad-x);
  border-bottom: 1px solid var(--tgn-grey-200);
}
.tgn-brands-inner { max-width: var(--tgn-max-w); margin: 0 auto; }
.tgn-brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.tgn-brand-card {
  padding: 28px 24px;
  border-radius: 2px;
  border: 1px solid var(--tgn-grey-200);
  border-left: 4px solid var(--tgn-gold);
  transition: box-shadow 0.2s;
}
.tgn-brand-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.tgn-brand-card h4 {
  font-family: var(--tgn-font-head);
  font-size: 15px;
  font-weight: 800;
  color: var(--tgn-black);
  margin-bottom: 8px;
}
.tgn-brand-card p { font-size: 13px; color: #777777; line-height: 1.6; }
.tgn-brand-tag {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  border-bottom: 1px solid var(--tgn-gold);
  padding-bottom: 1px;
  text-decoration: none;
}

/* ── CTA ── */
.tgn-about-cta {
  background: var(--tgn-black);
  padding: 72px var(--tgn-pad-x);
  text-align: center;
}
.tgn-about-cta h2 {
  font-family: var(--tgn-font-head);
  font-size: 32px;
  font-weight: 900;
  color: var(--tgn-white);
  margin-bottom: 14px;
}
.tgn-about-cta h2 span { color: var(--tgn-gold); }
.tgn-about-cta p {
  color: #555555;
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.tgn-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.tgn-cta-btn {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.tgn-cta-btn:hover { opacity: 0.85; }
.tgn-cta-btn-primary { background: var(--tgn-gold); color: var(--tgn-black); }
.tgn-cta-btn-secondary {
  background: transparent;
  color: var(--tgn-white);
  border: 1px solid #333333;
}

/* ══════════════════════════════════════════════
   ABOUT PAGE RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .tgn-pillars-grid  { grid-template-columns: repeat(3, 1fr); }
  .tgn-brands-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .tgn-mv-inner      { grid-template-columns: 1fr; }
  .tgn-stats-inner   { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .tgn-stat-item     { border-right: none; border-bottom: 1px solid rgba(16,17,20,0.15); padding-bottom: 24px; }
  .tgn-stat-item:nth-child(odd)  { border-right: 1px solid rgba(16,17,20,0.15); }
  .tgn-stat-item:last-child      { border-bottom: none; }
  .tgn-about-hero h1 { font-size: 36px; }
  .tgn-about-hero, .tgn-mv-section, .tgn-about-story,
  .tgn-pillars-section, .tgn-stats-section,
  .tgn-brands-section, .tgn-about-cta {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 580px) {
  .tgn-about-hero h1 { font-size: 28px; }
  .tgn-pillars-grid  { grid-template-columns: repeat(2, 1fr); }
  .tgn-brands-grid   { grid-template-columns: 1fr; }
  .tgn-stats-inner   { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════
   TGN CONTACT PAGE
══════════════════════════════════════════════ */

/* ── Hero ── */
.tgn-contact-hero {
  background: var(--tgn-black);
  padding: 72px var(--tgn-pad-x) 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--tgn-gold);
}
.tgn-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201,151,43,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.tgn-contact-eyebrow {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  margin-bottom: 14px;
}
.tgn-contact-hero h1 {
  font-family: var(--tgn-font-head);
  font-size: 42px;
  font-weight: 900;
  color: var(--tgn-white);
  line-height: 1.15;
  margin-bottom: 12px;
}
.tgn-contact-hero h1 span { color: var(--tgn-gold); }
.tgn-contact-hero p {
  color: #555555;
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Layout ── */
.tgn-contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 40px 72px;
}
.tgn-contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
}

/* ── Form ── */
.tgn-contact-form-wrap {
  background: var(--tgn-white);
  padding: 36px;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}
.tgn-form-header {
  font-family: var(--tgn-font-head);
  font-size: 16px;
  font-weight: 800;
  color: var(--tgn-black);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--tgn-grey-200);
  display: flex;
  align-items: center;
  gap: 10px;
}
.tgn-form-header::before {
  content: '';
  display: block;
  width: 4px;
  height: 22px;
  background: var(--tgn-gold);
  border-radius: 1px;
  flex-shrink: 0;
}
.tgn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.tgn-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.tgn-form-group label {
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #777777;
}
.tgn-form-group input,
.tgn-form-group select,
.tgn-form-group textarea {
  padding: 11px 13px;
  background: var(--tgn-grey-100);
  border: 1px solid var(--tgn-grey-200);
  border-radius: 2px;
  font-family: var(--tgn-font-body);
  font-size: 13px;
  color: var(--tgn-black);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.tgn-form-group input:focus,
.tgn-form-group select:focus,
.tgn-form-group textarea:focus {
  border-color: var(--tgn-gold);
}
.tgn-form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.tgn-form-group input::placeholder,
.tgn-form-group textarea::placeholder {
  color: #aaaaaa;
}
.tgn-form-submit {
  width: 100%;
  background: var(--tgn-gold);
  color: var(--tgn-black);
  border: none;
  padding: 13px 24px;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.tgn-form-submit:hover { background: var(--tgn-gold-light); }
.tgn-form-note {
  font-size: 11px;
  color: #bbbbbb;
  margin-top: 10px;
  text-align: center;
  font-family: var(--tgn-font-body);
}

/* Success message */
.tgn-form-success {
  display: none;
  background: #f0faf4;
  border: 1px solid var(--tgn-green);
  border-left: 3px solid var(--tgn-green);
  padding: 16px 20px;
  border-radius: 2px;
  font-size: 14px;
  color: #1a5c2a;
  margin-top: 16px;
  font-family: var(--tgn-font-body);
}

/* ── Contact details ── */
.tgn-contact-info { display: flex; flex-direction: column; gap: 20px; }

.tgn-contact-detail-card {
  background: var(--tgn-white);
  padding: 24px;
  border-radius: 2px;
  border-left: 3px solid var(--tgn-gold);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.tgn-contact-detail-card h3 {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  margin-bottom: 16px;
}
.tgn-detail-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.tgn-detail-item:last-child { margin-bottom: 0; }
.tgn-detail-icon { font-size: 15px; flex-shrink: 0; margin-top: 1px; }
.tgn-detail-text { font-size: 13px; color: #555555; line-height: 1.55; }
.tgn-detail-text strong {
  display: block;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  color: var(--tgn-black);
  margin-bottom: 1px;
}

/* Social buttons */
.tgn-contact-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tgn-csoc-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 2px;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.tgn-csoc-btn:hover { opacity: 0.85; }
.csoc-fb { background: #1877F2; }
.csoc-yt { background: #FF0000; }
.csoc-li { background: #0A66C2; }
.csoc-ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }

/* Departments card */
.tgn-dept-card {
  background: var(--tgn-black);
  padding: 24px;
  border-radius: 2px;
  border-top: 3px solid var(--tgn-gold);
}
.tgn-dept-card h3 {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  margin-bottom: 16px;
}
.tgn-dept-item {
  padding: 10px 0;
  border-bottom: 1px solid #1e1e22;
}
.tgn-dept-item:last-child { border-bottom: none; padding-bottom: 0; }
.tgn-dept-name {
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--tgn-white);
  margin-bottom: 2px;
}
.tgn-dept-email { font-size: 11px; color: #555555; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */

@media (max-width: 900px) {
  .tgn-contact-layout { grid-template-columns: 1fr; }
  .tgn-contact-wrap   { padding: 40px 24px 56px; }
  .tgn-contact-hero   { padding: 52px 24px 44px; }
  .tgn-contact-hero h1 { font-size: 32px; }
}

@media (max-width: 580px) {
  .tgn-form-row       { grid-template-columns: 1fr; }
  .tgn-contact-wrap   { padding: 32px 16px 48px; }
  .tgn-contact-hero h1 { font-size: 26px; }
  .tgn-contact-hero   { padding: 48px 16px 40px; }
}

/* ══════════════════════════════════════════════
   TGN SUBSCRIBE PAGE
══════════════════════════════════════════════ */
.tgn-sub-hero {
  background: var(--tgn-black);
  padding: 80px var(--tgn-pad-x) 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--tgn-gold);
}
.tgn-sub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(201,151,43,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.tgn-sub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tgn-gold);
  margin-bottom: 20px;
}
.tgn-sub-eyebrow::before,
.tgn-sub-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--tgn-gold);
}
.tgn-sub-hero h1 {
  font-family: var(--tgn-font-head);
  font-size: 46px;
  font-weight: 900;
  color: var(--tgn-white);
  line-height: 1.1;
  margin-bottom: 16px;
}
.tgn-sub-hero h1 span { color: var(--tgn-gold); }
.tgn-sub-hero p {
  color: #555555;
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto;
}

/* ── Benefits ── */
.tgn-sub-benefits {
  background: #0d0d10;
  padding: 36px var(--tgn-pad-x);
  border-bottom: 1px solid #1a1a1e;
}
.tgn-sub-benefits-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 700px;
  margin: 0 auto;
}
.tgn-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #888888;
}
.tgn-benefit-check {
  width: 22px;
  height: 22px;
  background: var(--tgn-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: #fff;
}

/* ── Form section ── */
.tgn-sub-form-section {
  background: var(--tgn-dark);
  padding: 64px var(--tgn-pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tgn-sub-form-card {
  background: var(--tgn-white);
  padding: 48px 40px;
  border-radius: 2px;
  width: 100%;
  max-width: 560px;
  border-top: 3px solid var(--tgn-gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.tgn-sub-form-title {
  font-family: var(--tgn-font-head);
  font-size: 20px;
  font-weight: 900;
  color: var(--tgn-black);
  text-align: center;
  margin-bottom: 6px;
}
.tgn-sub-form-subtitle {
  font-size: 13px;
  color: #777;
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.6;
}
.tgn-sub-note {
  font-size: 11px;
  color: #bbbbbb;
  text-align: center;
  margin-top: 14px;
  font-family: var(--tgn-font-body);
  line-height: 1.6;
}

/* Brevo overrides — subscribe page */
.tgn-sub-form-card .sib_signup_box_inside_1 {
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
}
.tgn-sub-form-card .sib_signup_box_inside_1 p { margin: 0 !important; padding: 0 !important; }
.tgn-sub-form-card .sib_signup_box_inside_1 p.sib-email-area { font-size: 0 !important; }
.tgn-sub-form-card input.sib-email-area {
  width: 100% !important;
  font-size: 15px !important;
  background: var(--tgn-grey-100) !important;
  border: 1px solid var(--tgn-grey-200) !important;
  border-radius: 2px !important;
  color: var(--tgn-black) !important;
  font-family: var(--tgn-font-body) !important;
  padding: 14px 16px !important;
  outline: none !important;
  box-shadow: none !important;
  height: auto !important;
  transition: border-color 0.2s !important;
}
.tgn-sub-form-card input.sib-email-area::placeholder { color: #aaaaaa !important; }
.tgn-sub-form-card input.sib-email-area:focus { border-color: var(--tgn-gold) !important; }
.tgn-sub-form-card input.sib-default-btn {
  width: 100% !important;
  background: var(--tgn-gold) !important;
  color: var(--tgn-black) !important;
  border: none !important;
  border-radius: 2px !important;
  font-family: var(--tgn-font-head) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 14px !important;
  cursor: pointer !important;
  box-shadow: none !important;
  transition: background 0.2s !important;
}
.tgn-sub-form-card input.sib-default-btn:hover { background: var(--tgn-gold-light) !important; }

/* ── Social proof ── */
.tgn-sub-proof {
  background: var(--tgn-dark);
  text-align: center;
  padding: 0 var(--tgn-pad-x) 56px;
}
.tgn-sub-proof p {
  font-size: 13px;
  color: #444444;
  font-family: var(--tgn-font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
}
.tgn-sub-proof span { color: var(--tgn-gold); }

/* Responsive */
@media (max-width: 580px) {
  .tgn-sub-hero { padding: 56px 16px 48px; }
  .tgn-sub-hero h1 { font-size: 30px; }
  .tgn-sub-benefits { padding: 28px 16px; }
  .tgn-sub-benefits-inner { gap: 20px; }
  .tgn-sub-form-section { padding: 40px 16px; }
  .tgn-sub-form-card { padding: 32px 24px; }
}

/* ══════════════════════════════════════════════
   TGN YOUTUBE FEED — Native (no Smash Balloon)
══════════════════════════════════════════════ */

.tgn-yt-feed-wrap {
  width: 100%;
  max-width: var(--tgn-max-w);
  margin: 0 auto;
}

.tgn-yt-grid {
  display: grid;
  gap: 20px;
}

.tgn-yt-grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.tgn-yt-grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.tgn-yt-grid-cols-2 { grid-template-columns: repeat(2, 1fr); }

/* Card */
.tgn-yt-card {
  display: block;
  text-decoration: none;
  color: var(--tgn-white);
}

/* Thumbnail */
.tgn-yt-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #1a1a1e;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.tgn-yt-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.tgn-yt-card:hover .tgn-yt-thumb img { opacity: 0.85; }

.tgn-yt-thumb-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a3a20, #101114);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tgn-font-head);
  font-weight: 900;
  font-size: 20px;
  color: var(--tgn-gold);
}

/* Play button */
.tgn-yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(201, 151, 43, 0.88);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tgn-black);
  transition: transform 0.2s, background 0.2s;
  z-index: 2;
}

.tgn-yt-card:hover .tgn-yt-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--tgn-gold);
}

.tgn-yt-play svg { margin-left: 3px; }

/* Duration badge */
.tgn-yt-duration {
  position: absolute;
  bottom: 7px;
  right: 7px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 2px;
  z-index: 3;
  line-height: 1.4;
}

/* Info */
.tgn-yt-title {
  font-family: var(--tgn-font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--tgn-white);
  line-height: 1.4;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.tgn-yt-card:hover .tgn-yt-title { color: var(--tgn-gold); }

.tgn-yt-meta {
  font-size: 11px;
  color: var(--tgn-grey-500);
  font-family: var(--tgn-font-body);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: nowrap;
}

.tgn-yt-sep { color: #444; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .tgn-yt-grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .tgn-yt-grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .tgn-yt-grid-cols-4,
  .tgn-yt-grid-cols-3,
  .tgn-yt-grid-cols-2 {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ══════════════════════════════════════════════
   TGN AD MANAGER — Frontend styles
══════════════════════════════════════════════ */
.tgn-ad-wrap { text-align: center; margin: 20px 0; }
.tgn-ad-label { font-family: var(--tgn-font-head); font-size: 9px; font-weight: 600; letter-spacing:.12em; text-transform:uppercase; color:#bbb; margin-bottom:6px; }
.tgn-ad-link img { max-width:100%; height:auto; display:block; margin:0 auto; border-radius:2px; }
.tgn-ad-header_banner { max-width:728px; margin:0 auto; }
.tgn-ad-sidebar       { max-width:300px; }
.tgn-ad-in_article    { max-width:728px; margin:0 auto; padding:20px 0; border-top:1px solid var(--tgn-grey-200); border-bottom:1px solid var(--tgn-grey-200); }
.tgn-ad-in_feed       { grid-column:1/-1; }

/* ══════════════════════════════════════════════
   TGN BREAKING NEWS
══════════════════════════════════════════════ */
.tgn-breaking-bar { display:flex; align-items:center; background:#C62828; overflow:hidden; height:32px; }
.tgn-breaking-badge-bar { flex-shrink:0; background:#8B0000; color:#fff; font-family:var(--tgn-font-head); font-size:10px; font-weight:800; letter-spacing:.12em; padding:0 14px; height:100%; display:flex; align-items:center; }
.tgn-breaking-scroll-wrap { flex:1; overflow:hidden; height:100%; display:flex; align-items:center; }
.tgn-breaking-scroll { display:flex; gap:40px; white-space:nowrap; animation:tgn-ticker-scroll 40s linear infinite; }
.tgn-breaking-item { font-family:var(--tgn-font-head); font-size:11px; font-weight:600; color:#fff; text-decoration:none; white-space:nowrap; }
.tgn-breaking-item:hover { text-decoration:underline; }

/* Breaking badge on post cards */
.tgn-breaking-post-badge { background:#C62828; color:#fff; font-family:var(--tgn-font-head); font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; padding:2px 7px; border-radius:1px; margin-right:6px; }

/* ══════════════════════════════════════════════
   TGN WHATSAPP FLOAT BUTTON
══════════════════════════════════════════════ */
.tgn-wa-float { position:fixed; bottom:calc(88px + env(safe-area-inset-bottom, 0px)); right:20px; z-index:99994; width:52px; height:52px; background:#25D366; border:2px solid rgba(255,255,255,.92); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#fff; box-shadow:0 8px 24px rgba(37,211,102,.38); transition:transform .2s ease,box-shadow .2s ease,opacity .2s ease; text-decoration:none; }
.tgn-wa-float:hover,.tgn-wa-float:focus-visible { transform:translateY(-3px) scale(1.04); box-shadow:0 12px 30px rgba(37,211,102,.48); }
.tgn-wa-float:focus-visible { outline:2px solid #101114; outline-offset:3px; }
.tgn-wa-float svg { display:block; }

@media(max-width:580px){ .tgn-wa-float { bottom:calc(72px + env(safe-area-inset-bottom, 0px)); right:12px; width:46px; height:46px; } }

/* ══════════════════════════════════════════════
   TGN AUTHOR PROFILE PAGE
══════════════════════════════════════════════ */
.tgn-author-profile-page { padding:40px; max-width:900px; margin:0 auto; }
.tgn-author-profile-card { display:flex; gap:32px; align-items:flex-start; background:#fff; border-radius:8px; border:1px solid var(--tgn-grey-200); border-top:4px solid var(--tgn-gold); padding:32px; }
.tgn-author-profile-photo { width:120px; height:120px; border-radius:50%; object-fit:cover; flex-shrink:0; }
.tgn-author-profile-info h1 { font-family:var(--tgn-font-head); font-size:24px; font-weight:900; color:var(--tgn-black); margin-bottom:6px; }
.tgn-author-profile-title { font-family:var(--tgn-font-head); font-size:13px; font-weight:700; color:var(--tgn-gold); text-transform:uppercase; letter-spacing:.06em; margin-bottom:4px; }
.tgn-author-profile-beat  { font-size:13px; color:#888; margin-bottom:12px; }
.tgn-author-profile-bio   { font-size:14px; color:#444; line-height:1.7; margin-bottom:14px; }
.tgn-author-profile-meta  { display:flex; align-items:center; gap:14px; font-size:12px; color:#888; flex-wrap:wrap; }
.tgn-author-social { color:var(--tgn-gold); text-decoration:none; font-weight:600; }
.tgn-author-social:hover { text-decoration:underline; }

@media(max-width:580px){ .tgn-author-profile-card { flex-direction:column; } .tgn-author-profile-photo { width:80px; height:80px; } }

/* ══════════════════════════════════════════════
   TGN POST SERIES NAVIGATION
══════════════════════════════════════════════ */
.tgn-series-nav { border:1px solid var(--tgn-grey-200); border-left:4px solid var(--tgn-gold); border-radius:2px; margin:32px 0; overflow:hidden; }
.tgn-series-header { background:var(--tgn-grey-100); padding:16px 20px; border-bottom:1px solid var(--tgn-grey-200); }
.tgn-series-badge { display:inline-block; background:var(--tgn-gold); color:var(--tgn-black); font-family:var(--tgn-font-head); font-size:9px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; padding:2px 8px; border-radius:1px; margin-bottom:6px; }
.tgn-series-header h3 { font-family:var(--tgn-font-head); font-size:16px; font-weight:800; color:var(--tgn-black); margin:0 0 4px; }
.tgn-series-header p  { font-size:12px; color:#777; margin:0; }
.tgn-series-list { display:flex; flex-direction:column; }
.tgn-series-item { display:flex; align-items:center; gap:14px; padding:12px 20px; text-decoration:none; color:var(--tgn-black); border-bottom:1px solid var(--tgn-grey-200); font-size:13px; transition:background .15s; }
.tgn-series-item:last-child { border-bottom:none; }
.tgn-series-item:hover { background:var(--tgn-grey-100); }
.tgn-series-current { background:#FFF8E7; font-weight:700; }
.tgn-series-num { font-family:var(--tgn-font-head); font-size:11px; font-weight:800; color:var(--tgn-gold); min-width:20px; }
.tgn-series-title { flex:1; }
.tgn-series-you { font-size:11px; color:var(--tgn-gold); font-weight:600; white-space:nowrap; }
.tgn-series-footer { padding:10px 20px; font-size:12px; color:#888; background:var(--tgn-grey-100); }
.tgn-series-footer a { color:var(--tgn-gold); text-decoration:none; font-weight:600; }

/* ══════════════════════════════════════════════
   TGN AD MANAGER — Admin styles additions
══════════════════════════════════════════════ */
.tgn-ads-layout { display:grid; grid-template-columns:1.2fr 1fr; gap:24px; }
.tgn-ads-list { display:flex; flex-direction:column; gap:12px; }
.tgn-ad-item { display:flex; align-items:flex-start; gap:14px; padding:14px; background:var(--tgn-grey-100,#f5f5f5); border-radius:6px; border:1px solid #e0e0e0; }
.tgn-ad-thumb { width:80px; height:50px; object-fit:cover; border-radius:4px; flex-shrink:0; }
.tgn-ad-item-info { flex:1; }
.tgn-ad-item-name { font-weight:700; font-size:13px; color:#101114; margin-bottom:4px; }
.tgn-ad-item-meta { display:flex; align-items:center; gap:8px; margin-bottom:4px; }
.tgn-ad-zone-badge { background:#101114; color:#C9972B; font-size:10px; font-weight:700; padding:2px 7px; border-radius:2px; }
.tgn-ad-live   { color:#198C3A; font-size:11px; font-weight:700; }
.tgn-ad-paused { color:#aaa;    font-size:11px; }
.tgn-ad-item-dates { font-size:11px; color:#888; margin-bottom:6px; }
.tgn-ad-stats { font-size:11px; color:#666; display:flex; gap:6px; align-items:center; }
.tgn-ad-item-actions { display:flex; flex-direction:column; gap:6px; flex-shrink:0; }

/* Dynamic hero fallback when there are not enough side stories. */
.tgn-hero.tgn-hero-solo { grid-template-columns: 1fr; }

.tgn-footer-fallback-form .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ==========================================================
   TGN v5 — Digital Newsroom article intelligence
   ========================================================== */
.tgn-reading-progress{position:fixed;top:0;left:0;right:0;height:3px;z-index:10050;pointer-events:none;background:transparent}.tgn-reading-progress span{display:block;height:100%;width:100%;background:#d3a126;transform:scaleX(0);transform-origin:left center;transition:transform .08s linear}.tgn-article-labels{display:flex;align-items:center;gap:8px;flex-wrap:wrap;margin-bottom:14px}.tgn-story-format,.tgn-developing-badge{display:inline-flex;align-items:center;min-height:24px;padding:4px 9px;border-radius:2px;font:800 10px/1.1 Montserrat,Arial,sans-serif;letter-spacing:.08em;text-transform:uppercase}.tgn-story-format{background:#101114;color:#fff}.tgn-developing-badge{background:#b91c1c;color:#fff}.tgn-article-standfirst{max-width:900px;margin:18px 0 18px;color:#5b5f66;font:400 clamp(17px,1.6vw,21px)/1.65 Poppins,Arial,sans-serif}.tgn-key-points{margin:0 0 30px;padding:24px 28px;background:#f6f7f7;border-left:4px solid #d3a126;border-radius:0 5px 5px 0}.tgn-key-points-label{margin-bottom:12px;color:#111317;font:900 12px/1 Montserrat,Arial,sans-serif;letter-spacing:.12em;text-transform:uppercase}.tgn-key-points ul{margin:0;padding-left:20px}.tgn-key-points li{margin:8px 0;color:#25282d;font:500 15px/1.6 Poppins,Arial,sans-serif}.tgn-correction-box{margin:34px 0 0;padding:20px 22px;border:1px solid #e2c57a;background:#fffaf0}.tgn-correction-box strong,.tgn-reporting-title{color:#111317;font:900 12px/1.2 Montserrat,Arial,sans-serif;letter-spacing:.08em;text-transform:uppercase}.tgn-correction-box p{margin:9px 0 7px;font:400 14px/1.65 Poppins,Arial,sans-serif;color:#4a4d52}.tgn-correction-box small{color:#777}.tgn-reporting-basis{margin:26px 0;padding:20px 22px;border-top:1px solid #ddd;border-bottom:1px solid #ddd}.tgn-reporting-basis ul{margin:12px 0 0;padding-left:20px}.tgn-reporting-basis li{margin:7px 0;font:400 13px/1.5 Poppins,Arial,sans-serif;color:#50545a}.tgn-reporting-basis a{color:#0d6b3c;text-decoration:underline}.tgn-author-beat{margin:4px 0;color:#0d7c45;font:700 11px/1.4 Montserrat,Arial,sans-serif;text-transform:uppercase;letter-spacing:.04em}.tgn-trending-views{opacity:.78}.tgn-updated{font-weight:600;color:#676b70}@media(max-width:700px){.tgn-key-points{padding:20px}.tgn-article-standfirst{font-size:17px;line-height:1.55}.tgn-reading-progress{height:2px}}

/* ═══════════════════════════════════════════
   V5.1 FRONTEND NEWSROOM — MARKETS + NEWS PULSE
═══════════════════════════════════════════ */
.tgn-market-snapshot,
.tgn-news-pulse {
  width: min(1500px, calc(100% - (var(--tgn-pad-x) * 2)));
  margin: 28px auto 0;
}

.tgn-market-snapshot {
  background: #101114;
  color: #fff;
  border: 1px solid #27282d;
  box-shadow: 0 18px 45px rgba(16,17,20,.12);
}
.tgn-market-head {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  padding:24px 28px 20px;
  border-bottom:1px solid #292a2f;
}
.tgn-market-kicker,
.tgn-market-insight-label {
  display:block;
  color:var(--tgn-gold);
  font-size:11px;
  line-height:1;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.tgn-market-head h2 {
  margin:7px 0 0;
  color:#fff;
  font-family:var(--tgn-font-head);
  font-size:clamp(24px,2.4vw,38px);
  line-height:1.02;
}
.tgn-market-meta {
  display:flex;
  align-items:flex-end;
  flex-direction:column;
  gap:4px;
  color:#a7a8ad;
  font-size:11px;
  text-align:right;
}
.tgn-market-rates {
  display:grid;
  grid-template-columns:repeat(6,minmax(0,1fr));
}
.tgn-market-rate-card {
  min-width:0;
  padding:20px 22px;
  border-right:1px solid #292a2f;
}
.tgn-market-rate-card:last-child{border-right:0}
.tgn-market-pair {display:flex;align-items:baseline;gap:3px;color:#fff;font-size:12px;font-weight:900;letter-spacing:.08em}
.tgn-market-pair small{color:#777a82;font-size:9px}
.tgn-market-rate-card strong {display:block;margin:7px 0 5px;font-family:var(--tgn-font-head);font-size:28px;line-height:1}
.tgn-market-change {font-size:11px;font-weight:900}
.tgn-market-change.is-up{color:#48c979}
.tgn-market-change.is-down{color:#ff6262}
.tgn-market-change.is-flat{color:#a8a9ae}
.tgn-market-insight {
  display:grid;
  grid-template-columns:160px 1fr;
  gap:24px;
  align-items:start;
  padding:20px 28px 22px;
  background:#17181c;
  border-top:1px solid #292a2f;
}
.tgn-market-insight-label {padding-top:4px}
.tgn-market-insight p {margin:0;color:#e7e7e9;font-size:14px;line-height:1.6;max-width:1100px}

.tgn-news-pulse {
  border-top:4px solid #101114;
  background:#fff;
  box-shadow:0 10px 30px rgba(16,17,20,.06);
}
.tgn-pulse-header {
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:28px;
  padding:23px 26px 17px;
  border:1px solid var(--tgn-grey-200);
  border-top:0;
}
.tgn-pulse-live {display:flex;align-items:center;gap:8px;color:#777;font-size:10px;font-weight:900;letter-spacing:.12em;text-transform:uppercase}
.tgn-pulse-live i {width:8px;height:8px;border-radius:50%;background:#d22630;box-shadow:0 0 0 4px rgba(210,38,48,.11)}
.tgn-pulse-header h2 {margin:7px 0 0;font-family:var(--tgn-font-head);font-size:clamp(24px,2.2vw,36px);line-height:1.04;color:#101114}
.tgn-pulse-tabs {display:flex;gap:4px;flex-wrap:wrap}
.tgn-pulse-tabs button {
  appearance:none;
  border:1px solid var(--tgn-grey-200);
  background:#fff;
  color:#5b5c62;
  padding:10px 14px;
  font:800 10px/1 var(--tgn-font-body);
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
}
.tgn-pulse-tabs button.is-active {background:#101114;border-color:#101114;color:#fff}
.tgn-pulse-panel {border:1px solid var(--tgn-grey-200);border-top:0}
.tgn-pulse-list {display:grid;grid-template-columns:1fr 1fr}
.tgn-pulse-item {
  display:grid;
  grid-template-columns:46px minmax(0,1fr) auto;
  gap:14px;
  align-items:center;
  min-height:102px;
  padding:17px 22px;
  border-bottom:1px solid var(--tgn-grey-200);
}
.tgn-pulse-item:nth-child(odd){border-right:1px solid var(--tgn-grey-200)}
.tgn-pulse-item:nth-last-child(-n+2){border-bottom:0}
.tgn-pulse-rank {font-family:var(--tgn-font-head);font-size:24px;color:#b6b7bb}
.tgn-pulse-eyebrow {display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-bottom:5px;color:#86878c;font-size:9px;font-weight:800;letter-spacing:.06em;text-transform:uppercase}
.tgn-pulse-eyebrow span{color:#7a5a08}
.tgn-pulse-eyebrow b{color:#c21d2a}
.tgn-pulse-item h3 {margin:0;font-family:var(--tgn-font-head);font-size:18px;line-height:1.16}
.tgn-pulse-item h3 a {color:#101114;text-decoration:none}
.tgn-pulse-item h3 a:hover {text-decoration:underline;text-decoration-color:var(--tgn-gold);text-decoration-thickness:2px;text-underline-offset:3px}
.tgn-pulse-views {white-space:nowrap;color:#8a8b90;font-size:10px;font-weight:800}
.tgn-pulse-empty{margin:0;padding:24px;color:#777}

@media (max-width: 1100px) {
  .tgn-market-rates{grid-template-columns:repeat(3,1fr)}
  .tgn-market-rate-card:nth-child(3){border-right:0}
  .tgn-market-rate-card:nth-child(-n+3){border-bottom:1px solid #292a2f}
  .tgn-pulse-list{grid-template-columns:1fr}
  .tgn-pulse-item:nth-child(odd){border-right:0}
  .tgn-pulse-item:nth-last-child(2){border-bottom:1px solid var(--tgn-grey-200)}
}
@media (max-width: 700px) {
  .tgn-market-snapshot,.tgn-news-pulse{width:calc(100% - 28px);margin-top:18px}
  .tgn-market-head,.tgn-pulse-header{padding:20px;align-items:flex-start;flex-direction:column}
  .tgn-market-meta{align-items:flex-start;text-align:left}
  .tgn-market-rates{grid-template-columns:repeat(2,1fr)}
  .tgn-market-rate-card{padding:16px 18px;border-bottom:1px solid #292a2f}
  .tgn-market-rate-card:nth-child(3){border-right:1px solid #292a2f}
  .tgn-market-rate-card:nth-child(even){border-right:0}
  .tgn-market-rate-card:nth-last-child(-n+2){border-bottom:0}
  .tgn-market-rate-card strong{font-size:24px}
  .tgn-market-insight{grid-template-columns:1fr;gap:8px;padding:18px 20px}
  .tgn-pulse-tabs{width:100%}
  .tgn-pulse-tabs button{flex:1 1 auto}
  .tgn-pulse-item{grid-template-columns:36px minmax(0,1fr);padding:15px 17px;min-height:0}
  .tgn-pulse-views{grid-column:2}
}

/* v5.2 — route-safe 404 experience */
.tgn-404-wrap{background:#101114;min-height:72vh;padding:72px 24px;display:flex;justify-content:center;align-items:center}.tgn-404-card{width:min(760px,100%);text-align:center}.tgn-404-code{font-family:Montserrat,sans-serif;font-size:clamp(76px,12vw,132px);font-weight:900;line-height:.9;color:#C9972B;letter-spacing:-.05em}.tgn-404-eyebrow{font-family:Montserrat,sans-serif;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.18em;color:#7f858e;margin-top:20px}.tgn-404-card h1{font-family:Montserrat,sans-serif;color:#fff;font-size:clamp(27px,4vw,42px);line-height:1.08;margin:10px 0 14px}.tgn-404-card>p{font-family:Poppins,sans-serif;color:#a7adb6;line-height:1.75;max-width:650px;margin:0 auto 28px}.tgn-404-search{display:flex;max-width:610px;margin:0 auto 20px;border:1px solid #30343a;background:#181a1f;padding:5px}.tgn-404-search input{min-width:0;flex:1;background:transparent;border:0!important;outline:0;color:#fff;padding:12px 14px;font:14px Poppins,sans-serif;box-shadow:none!important}.tgn-404-search button{border:0;background:#C9972B;color:#101114;padding:0 22px;font:800 11px Montserrat,sans-serif;text-transform:uppercase;letter-spacing:.1em;cursor:pointer}.tgn-404-actions{display:flex;gap:12px;justify-content:center;flex-wrap:wrap}.tgn-404-actions a{font:800 11px Montserrat,sans-serif;letter-spacing:.1em;text-transform:uppercase;padding:12px 22px;border-radius:2px;text-decoration:none}.tgn-404-primary{background:#C9972B;color:#101114}.tgn-404-secondary{border:1px solid #C9972B;color:#C9972B}.tgn-404-latest{margin:38px auto 0;text-align:left;border-top:1px solid #282b31;max-width:650px}.tgn-404-latest-title{color:#C9972B;font:800 11px Montserrat,sans-serif;text-transform:uppercase;letter-spacing:.12em;padding:18px 0 8px}.tgn-404-latest a{display:flex;justify-content:space-between;gap:20px;color:#e8eaed;text-decoration:none;border-bottom:1px solid #24272c;padding:13px 0;font:600 13px Montserrat,sans-serif}.tgn-404-latest a:hover span{color:#C9972B}.tgn-404-latest b{color:#C9972B}@media(max-width:560px){.tgn-404-wrap{padding:50px 18px}.tgn-404-search{display:grid}.tgn-404-search button{padding:13px}.tgn-404-actions a{width:100%;box-sizing:border-box}}

/* ══════════════════════════════════════════════
   TGN STANDARD / GENERATED PAGES — v5.2.1
   Company, commercial and trust/policy pages
══════════════════════════════════════════════ */
.tgn-standard-page {
  background: #f3f4f5;
  min-height: 60vh;
}

.tgn-standard-page-hero {
  position: relative;
  overflow: hidden;
  background: var(--tgn-black);
  border-bottom: 3px solid var(--tgn-gold);
  padding: 52px var(--tgn-pad-x) 48px;
}

.tgn-standard-page-hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  bottom: -350px;
  border: 1px solid rgba(201,151,43,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(201,151,43,.025), 0 0 0 140px rgba(201,151,43,.018);
  pointer-events: none;
}

.tgn-standard-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--tgn-max-w);
  margin: 0 auto;
}

.tgn-page-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #777;
}
.tgn-page-breadcrumb a { color: #aaa; transition: color .2s ease; }
.tgn-page-breadcrumb a:hover { color: var(--tgn-gold-light); }
.tgn-page-breadcrumb span:last-child { color: #d7d7d7; }

.tgn-standard-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
  color: var(--tgn-gold);
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.tgn-standard-page-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: currentColor;
}

.tgn-standard-page-hero h1 {
  max-width: 880px;
  margin: 0;
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.035em;
}

.tgn-standard-page-deck {
  max-width: 760px;
  margin: 18px 0 0;
  color: #b9b9bd;
  font-size: 15px;
  line-height: 1.75;
}

.tgn-standard-page-shell {
  width: min(calc(100% - (var(--tgn-pad-x) * 2)), var(--tgn-max-w));
  margin: 0 auto;
  padding: 48px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 286px;
  align-items: start;
  gap: 42px;
}

.tgn-standard-page-main { min-width: 0; }

.tgn-standard-page-card {
  background: #fff;
  border: 1px solid #e2e3e5;
  border-top: 4px solid var(--tgn-gold);
  box-shadow: 0 10px 30px rgba(16,17,20,.045);
  padding: 46px 52px 48px;
}

/* Restore editorial typography after the site's global list/reset rules. */
.tgn-page-entry {
  color: #303238;
  font-size: 15px;
  line-height: 1.85;
}
.tgn-page-entry > *:first-child { margin-top: 0 !important; }
.tgn-page-entry > *:last-child { margin-bottom: 0 !important; }

.tgn-page-entry p {
  margin: 0 0 22px;
  max-width: 780px;
}

.tgn-page-entry h2,
.tgn-page-entry h3,
.tgn-page-entry h4 {
  color: var(--tgn-black);
  font-family: var(--tgn-font-head);
  letter-spacing: -.018em;
}
.tgn-page-entry h2 {
  margin: 4px 0 18px;
  font-size: 27px;
  font-weight: 850;
  line-height: 1.22;
}
.tgn-page-entry h3 {
  margin: 34px 0 14px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
}
.tgn-page-entry h4 {
  margin: 28px 0 12px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.tgn-page-entry ul,
.tgn-page-entry ol {
  margin: 0 0 24px 22px;
  padding: 0;
}
.tgn-page-entry ul { list-style: disc; }
.tgn-page-entry ol { list-style: decimal; }
.tgn-page-entry li {
  margin: 0 0 9px;
  padding-left: 5px;
}
.tgn-page-entry li::marker { color: var(--tgn-gold); font-weight: 700; }

.tgn-page-entry a {
  color: #9a6d0f;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.tgn-page-entry a:hover { color: var(--tgn-black); }

.tgn-page-entry strong { color: #18191c; font-weight: 700; }

.tgn-page-entry blockquote {
  margin: 30px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--tgn-gold);
  background: #f7f5ef;
  color: #333;
  font-size: 16px;
  line-height: 1.75;
}

.tgn-page-entry hr {
  border: 0;
  border-top: 1px solid #e1e2e4;
  margin: 36px 0;
}

.tgn-page-entry img {
  height: auto;
  margin: 30px auto;
  border-radius: 2px;
}

.tgn-page-entry table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 13px;
}
.tgn-page-entry th,
.tgn-page-entry td {
  padding: 12px 14px;
  border: 1px solid #e0e1e3;
  text-align: left;
  vertical-align: top;
}
.tgn-page-entry th {
  background: var(--tgn-black);
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.tgn-page-updated {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid #e5e5e7;
  color: #7b7d82;
  font-family: var(--tgn-font-head);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tgn-page-updated strong { color: #3b3d42; font-size: 10px; }

.tgn-standard-page-aside {
  display: grid;
  gap: 18px;
  position: sticky;
  top: calc(var(--tgn-ticker-h) + var(--tgn-nav-h) + var(--tgn-strip-h) + 24px);
}

.tgn-page-side-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #dedfe2;
}
.tgn-page-side-title {
  padding: 16px 18px;
  background: var(--tgn-black);
  border-bottom: 2px solid var(--tgn-gold);
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.tgn-page-side-nav { display: block; }
.tgn-page-side-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 49px;
  padding: 13px 17px;
  border-bottom: 1px solid #ececee;
  color: #3c3e43;
  font-family: var(--tgn-font-head);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  transition: background .2s ease, color .2s ease, padding-left .2s ease;
}
.tgn-page-side-nav a:last-child { border-bottom: 0; }
.tgn-page-side-nav a b { color: #aaa; font-size: 13px; }
.tgn-page-side-nav a:hover {
  background: #f7f5ef;
  color: #76530c;
  padding-left: 20px;
}
.tgn-page-side-nav a.is-active {
  background: #f3eee2;
  color: #75530d;
  box-shadow: inset 3px 0 0 var(--tgn-gold);
}
.tgn-page-side-nav a.is-active b { color: var(--tgn-gold); }

.tgn-page-help-card {
  background: var(--tgn-black);
  border: 1px solid #22242a;
  padding: 24px 22px;
}
.tgn-page-help-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--tgn-gold);
  font-family: var(--tgn-font-head);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.tgn-page-help-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--tgn-font-head);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.28;
}
.tgn-page-help-card p {
  margin: 0 0 18px;
  color: #999ca3;
  font-size: 12px;
  line-height: 1.65;
}
.tgn-page-help-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 10px 15px;
  background: var(--tgn-gold);
  color: var(--tgn-black);
  font-family: var(--tgn-font-head);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .2s ease;
}
.tgn-page-help-card a:hover { background: var(--tgn-gold-light); }

@media (max-width: 900px) {
  .tgn-standard-page-hero { padding: 40px 24px 36px; }
  .tgn-standard-page-shell {
    width: calc(100% - 32px);
    padding: 32px 0 56px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tgn-standard-page-card { padding: 36px 32px 38px; }
  .tgn-standard-page-aside { position: static; }
  .tgn-page-side-nav { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tgn-page-side-nav a { border-right: 1px solid #ececee; }
}

@media (max-width: 580px) {
  .tgn-standard-page-hero { padding: 30px 18px 30px; }
  .tgn-page-breadcrumb { margin-bottom: 18px; font-size: 9px; }
  .tgn-standard-page-eyebrow { font-size: 9px; }
  .tgn-standard-page-hero h1 { font-size: 30px; line-height: 1.1; }
  .tgn-standard-page-deck { margin-top: 14px; font-size: 13px; line-height: 1.65; }
  .tgn-standard-page-shell { width: calc(100% - 24px); padding: 22px 0 42px; }
  .tgn-standard-page-card { padding: 28px 21px 30px; }
  .tgn-page-entry { font-size: 14px; line-height: 1.78; }
  .tgn-page-entry h2 { font-size: 23px; }
  .tgn-page-entry h3 { font-size: 18px; margin-top: 28px; }
  .tgn-page-side-nav { grid-template-columns: 1fr; }
  .tgn-page-updated { align-items: flex-start; flex-direction: column; gap: 4px; }
}

/* v5.6.3 — Election Live header entry */
.tgn-election-nav-live{display:flex;align-items:center;gap:8px;flex-shrink:0;padding:7px 10px;border:1px solid rgba(239,68,68,.42);background:rgba(127,29,29,.16);border-radius:4px;color:#fff!important;text-decoration:none!important;margin-left:8px;transition:.2s ease}
.tgn-election-nav-live:hover{background:rgba(185,28,28,.28);border-color:#ef4444;transform:translateY(-1px)}
.tgn-election-nav-dot{width:8px;height:8px;border-radius:50%;background:#ef4444;box-shadow:0 0 0 4px rgba(239,68,68,.14);animation:tgnElectionPulse 1.6s infinite}
.tgn-election-nav-copy{display:flex;flex-direction:column;line-height:1.05}.tgn-election-nav-copy strong{font:800 9px/1.1 var(--tgn-font-head);letter-spacing:.08em;color:#fff}.tgn-election-nav-copy small{margin-top:3px;font:600 8px/1 var(--tgn-font-head);color:#e7c55e;white-space:nowrap}
@keyframes tgnElectionPulse{0%,100%{box-shadow:0 0 0 3px rgba(239,68,68,.12)}50%{box-shadow:0 0 0 7px rgba(239,68,68,0)}}
.tgn-mobile-election-live{display:block;margin:16px 18px 8px;padding:14px 15px;border-radius:7px;background:linear-gradient(135deg,#651515,#991b1b);border:1px solid rgba(255,255,255,.12);color:#fff!important;text-decoration:none!important}.tgn-mobile-election-live span{display:flex;align-items:center;gap:9px}.tgn-mobile-election-live i{width:8px;height:8px;background:#ff4d4d;border-radius:50%;box-shadow:0 0 0 5px rgba(255,77,77,.13)}.tgn-mobile-election-live strong{font:800 11px/1 var(--tgn-font-head);letter-spacing:.08em}.tgn-mobile-election-live small{display:block;margin-top:8px;color:#f1d884;font:600 10px/1.4 var(--tgn-font-head)}
@media(max-width:1180px){.tgn-election-nav-copy small{display:none}.tgn-election-nav-live{padding:8px}}
@media(max-width:900px){.tgn-election-nav-live{display:none}}
