/*
 Theme Name:   TNT Child
 Theme URI:    https://throttleandtech.com
 Description:  Custom dark editorial theme for TNT (Throttle and Tech) — India's buyer-first car platform.
 Author:       Throttle and Tech
 Author URI:   https://throttleandtech.com
 Template:     astra
 Version:      1.0.0
 Text Domain:  tnt-child
*/

/* ========================================
   DESIGN TOKENS
   ======================================== */

:root {
  --tnt-bg-primary: #0A0A0A;
  --tnt-bg-secondary: #111111;
  --tnt-bg-card: #161616;
  --tnt-bg-card-hover: #1C1C1C;
  --tnt-text-primary: #F5F5F0;
  --tnt-text-secondary: #A0A09A;
  --tnt-text-tertiary: #666660;
  --tnt-accent: #D4A044;
  --tnt-accent-dim: #B8882E;
  --tnt-accent-glow: rgba(212, 160, 68, 0.08);
  --tnt-border: rgba(255,255,255,0.06);
  --tnt-border-hover: rgba(255,255,255,0.12);
  --tnt-font-display: 'Plus Jakarta Sans', sans-serif;
  --tnt-font-body: 'DM Sans', sans-serif;
  --tnt-font-serif: 'DM Serif Display', serif;
  --tnt-green: #97C459;
  --tnt-green-bg: rgba(99,153,34,0.1);
  --tnt-red: #F09595;
  --tnt-red-bg: rgba(226,75,74,0.1);
  --tnt-amber: #EF9F27;
  --tnt-amber-bg: rgba(239,159,39,0.08);
}


/* ========================================
   GLOBAL RESET & BASE
   ======================================== */

body,
body.flavor-flavor {
  background: var(--tnt-bg-primary) !important;
  color: var(--tnt-text-primary) !important;
  font-family: var(--tnt-font-body) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--tnt-accent); text-decoration: none; }
a:hover { color: var(--tnt-accent-dim); }

/* Override Astra defaults */
.ast-container,
.site-content .ast-container {
  max-width: 1200px;
}

/* Hide Astra's default header/footer on custom pages */
.tnt-custom-page .site-header,
.tnt-custom-page .site-footer,
.tnt-custom-page .ast-footer-overlay,
.tnt-custom-page #ast-scroll-top {
  display: none !important;
}


/* ========================================
   NAV
   ======================================== */

.tnt-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--tnt-border);
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tnt-nav-logo {
  font-family: var(--tnt-font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--tnt-accent);
  text-decoration: none;
}

.tnt-nav-logo-sub {
  font-size: 10px;
  font-weight: 500;
  color: var(--tnt-text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid var(--tnt-border);
}

.tnt-nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tnt-nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--tnt-text-secondary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
  text-decoration: none;
}

.tnt-nav-links a:hover { color: var(--tnt-text-primary); }
.tnt-nav-links a.active { color: var(--tnt-accent); }

.tnt-nav-cta {
  background: var(--tnt-accent) !important;
  color: #0A0A0A !important;
  padding: 8px 20px !important;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s, background 0.2s;
}

.tnt-nav-cta:hover {
  transform: translateY(-1px);
  background: var(--tnt-accent-dim) !important;
  color: #0A0A0A !important;
}

/* Mobile nav toggle */
.tnt-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.tnt-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--tnt-text-secondary);
  margin: 5px 0;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .tnt-nav-links { display: none; }
  .tnt-nav-toggle { display: block; }
  .tnt-nav-logo-sub { display: none; }
}


/* ========================================
   HERO
   ======================================== */

.tnt-hero {
  padding: 140px clamp(1.5rem, 4vw, 4rem) 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.tnt-hero-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tnt-accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tnt-hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--tnt-accent);
}

.tnt-hero h1 {
  font-family: var(--tnt-font-display);
  font-size: clamp(42px, 6.5vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-bottom: 1.5rem;
  color: var(--tnt-text-primary);
}

.tnt-hero h1 em {
  font-style: normal;
  color: var(--tnt-accent);
}

.tnt-hero-sub {
  font-size: 18px;
  color: var(--tnt-text-secondary);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.tnt-hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tnt-border);
}

.tnt-stat-num {
  font-family: var(--tnt-font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.tnt-stat-label {
  font-size: 12px;
  color: var(--tnt-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .tnt-hero-stats { gap: 2rem; flex-wrap: wrap; }
}


/* ========================================
   SECTIONS
   ======================================== */

.tnt-section {
  padding: 80px clamp(1.5rem, 4vw, 4rem);
  max-width: 1200px;
  margin: 0 auto;
}

.tnt-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.tnt-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--tnt-accent);
  margin-bottom: 0.75rem;
}

.tnt-section-title {
  font-family: var(--tnt-font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--tnt-text-primary);
}

.tnt-section-link {
  font-size: 13px;
  color: var(--tnt-text-secondary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  flex-shrink: 0;
  text-decoration: none;
}

.tnt-section-link:hover { color: var(--tnt-accent); }

.tnt-divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 4rem);
  border: none;
  border-top: 1px solid var(--tnt-border);
}


/* ========================================
   PILLARS (3-column cards)
   ======================================== */

.tnt-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tnt-pillar {
  background: var(--tnt-bg-card);
  border: 1px solid var(--tnt-border);
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: border-color 0.3s;
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}

.tnt-pillar:hover { border-color: var(--tnt-accent); }

.tnt-pillar.primary {
  border-color: rgba(212,160,68,0.25);
  background: linear-gradient(135deg, rgba(212,160,68,0.06) 0%, var(--tnt-bg-card) 100%);
}

.tnt-pillar-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A0A0A;
  background: var(--tnt-accent);
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 1rem;
}

.tnt-pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--tnt-accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.tnt-pillar-icon svg {
  stroke: var(--tnt-accent);
  fill: none;
}

.tnt-pillar-title {
  font-family: var(--tnt-font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  color: var(--tnt-text-primary);
}

.tnt-pillar-desc {
  font-size: 14px;
  color: var(--tnt-text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.tnt-pillar-price {
  font-family: var(--tnt-font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--tnt-text-primary);
  margin-bottom: 1rem;
}

.tnt-pillar-price span {
  font-size: 12px;
  color: var(--tnt-text-tertiary);
  font-weight: 400;
  margin-left: 4px;
}

.tnt-pillar-link-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--tnt-accent);
}

@media (max-width: 768px) {
  .tnt-pillars-grid { grid-template-columns: 1fr; }
}


/* ========================================
   FEATURED REVIEW CARD
   ======================================== */

.tnt-featured {
  background: var(--tnt-bg-secondary);
  border: 1px solid var(--tnt-border);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  transition: border-color 0.3s;
  text-decoration: none;
  color: inherit;
}

.tnt-featured:hover { border-color: var(--tnt-border-hover); }

.tnt-featured-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  background: linear-gradient(145deg, #1a1a1a 0%, #252525 50%, #1a1a1a 100%);
}

.tnt-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.tnt-featured:hover .tnt-featured-img img {
  transform: scale(1.03);
}

.tnt-featured-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--tnt-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.tnt-featured-play svg {
  fill: #0A0A0A;
  margin-left: 3px;
}

.tnt-featured-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tnt-featured-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tnt-accent);
  background: var(--tnt-accent-glow);
  padding: 6px 14px;
  border-radius: 4px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 1.25rem;
}

.tnt-featured-title {
  font-family: var(--tnt-font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--tnt-text-primary);
}

.tnt-featured-verdict {
  font-size: 15px;
  color: var(--tnt-text-secondary);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.tnt-featured-meta {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--tnt-border);
  font-size: 12px;
  color: var(--tnt-text-tertiary);
}

.tnt-featured-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tnt-featured-meta-item svg {
  stroke: currentColor;
  fill: none;
}

@media (max-width: 768px) {
  .tnt-featured { grid-template-columns: 1fr; }
  .tnt-featured-img { min-height: 220px; }
  .tnt-featured-content { padding: 1.75rem; }
}


/* ========================================
   REVIEW CARD GRID
   ======================================== */

.tnt-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tnt-review-card {
  background: var(--tnt-bg-card);
  border: 1px solid var(--tnt-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.tnt-review-card:hover {
  border-color: var(--tnt-border-hover);
  transform: translateY(-2px);
}

.tnt-review-card-img {
  height: 200px;
  background: linear-gradient(145deg, #151515 0%, #1e1e1e 50%, #151515 100%);
  position: relative;
  overflow: hidden;
}

.tnt-review-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s, transform 0.4s;
}

.tnt-review-card:hover .tnt-review-card-img img {
  opacity: 1;
  transform: scale(1.03);
}

.tnt-review-card-brand {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tnt-text-secondary);
  background: rgba(0,0,0,0.6);
  padding: 4px 10px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
}

.tnt-review-card-body {
  padding: 1.25rem;
}

.tnt-review-card-title {
  font-family: var(--tnt-font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  color: var(--tnt-text-primary);
}

.tnt-review-card-excerpt {
  font-size: 13px;
  color: var(--tnt-text-secondary);
  line-height: 1.55;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tnt-review-card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tnt-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  color: var(--tnt-text-tertiary);
  font-weight: 500;
}

.tnt-tag.buy { background: rgba(99,153,34,0.12); color: #97C459; }
.tnt-tag.skip { background: rgba(226,75,74,0.12); color: #F09595; }

@media (max-width: 768px) {
  .tnt-reviews-grid { grid-template-columns: 1fr; }
}


/* ========================================
   TRUST BAR
   ======================================== */

.tnt-trust-bar {
  background: var(--tnt-bg-secondary);
  border-top: 1px solid var(--tnt-border);
  border-bottom: 1px solid var(--tnt-border);
  padding: 2.5rem clamp(1.5rem, 4vw, 4rem);
}

.tnt-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.tnt-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--tnt-text-secondary);
}

.tnt-trust-item svg {
  stroke: var(--tnt-accent);
  fill: none;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .tnt-trust-inner { gap: 2rem; }
}


/* ========================================
   SINGLE REVIEW — ARTICLE PAGE
   ======================================== */

/* Hero image */
.tnt-article-hero-img {
  max-width: 760px;
  margin: 84px auto 0;
  padding: 0 clamp(1.5rem, 4vw, 2rem);
}

.tnt-article-hero-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--tnt-border);
}

/* Article header */
.tnt-article-header {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 4vw, 2rem) 0;
}

.tnt-breadcrumb {
  font-size: 12px;
  color: var(--tnt-text-tertiary);
  margin-bottom: 1.5rem;
}

.tnt-breadcrumb a {
  color: var(--tnt-text-secondary);
  text-decoration: none;
}

.tnt-breadcrumb a:hover { color: var(--tnt-accent); }

.tnt-article-brand-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tnt-accent);
  background: var(--tnt-accent-glow);
  padding: 5px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.tnt-article-title {
  font-family: var(--tnt-font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--tnt-text-primary);
}

.tnt-article-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 13px;
  color: var(--tnt-text-tertiary);
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--tnt-border);
  margin-bottom: 2rem;
}

/* Article body */
.tnt-article-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2rem);
}

.tnt-article-body h2 {
  font-family: var(--tnt-font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--tnt-border);
  color: var(--tnt-text-primary);
}

.tnt-article-body h3 {
  font-family: var(--tnt-font-display);
  font-size: 18px;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--tnt-text-primary);
}

.tnt-article-body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--tnt-text-secondary);
  margin-bottom: 1.25rem;
  font-weight: 300;
}

.tnt-article-body strong {
  color: var(--tnt-text-primary);
  font-weight: 600;
}

/* Body image (image 2 of 2) */
.tnt-body-img {
  margin: 2.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--tnt-border);
}

.tnt-body-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.tnt-body-img-caption {
  padding: 10px 16px;
  font-size: 12px;
  color: var(--tnt-text-tertiary);
  background: var(--tnt-bg-secondary);
  border-top: 1px solid var(--tnt-border);
}


/* ========================================
   VERDICT BOX
   ======================================== */

.tnt-verdict-box {
  background: var(--tnt-bg-secondary);
  border: 1px solid var(--tnt-border);
  border-left: 3px solid var(--tnt-accent);
  border-radius: 0 10px 10px 0;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
}

.tnt-verdict-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tnt-accent);
  margin-bottom: 0.75rem;
}

.tnt-verdict-text {
  font-family: var(--tnt-font-serif);
  font-size: 20px;
  line-height: 1.5;
  color: var(--tnt-text-primary);
}


/* ========================================
   BUY / SKIP DECISION CARDS
   ======================================== */

.tnt-decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tnt-decision-card {
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid var(--tnt-border);
}

.tnt-decision-card.buy {
  background: var(--tnt-green-bg);
  border-color: rgba(99,153,34,0.2);
}

.tnt-decision-card.skip {
  background: var(--tnt-red-bg);
  border-color: rgba(226,75,74,0.15);
}

.tnt-decision-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-family: var(--tnt-font-display);
  font-weight: 700;
  font-size: 15px;
}

.tnt-decision-card.buy .tnt-decision-header { color: var(--tnt-green); }
.tnt-decision-card.skip .tnt-decision-header { color: var(--tnt-red); }

.tnt-decision-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tnt-decision-card li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--tnt-text-secondary);
  padding: 6px 0 6px 20px;
  position: relative;
}

.tnt-decision-card.buy li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--tnt-green);
  font-weight: 700;
  font-size: 13px;
}

.tnt-decision-card.skip li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--tnt-red);
  font-weight: 700;
  font-size: 13px;
}

@media (max-width: 768px) {
  .tnt-decision-grid { grid-template-columns: 1fr; }
}


/* ========================================
   DEALERSHIP WARNINGS
   ======================================== */

.tnt-dealership-section {
  background: var(--tnt-bg-card);
  border: 1px solid var(--tnt-border);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.tnt-dealership-title {
  font-family: var(--tnt-font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--tnt-text-primary);
}

.tnt-dealership-title svg {
  stroke: var(--tnt-accent);
  fill: none;
}

.tnt-dealership-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--tnt-border);
}

.tnt-dealership-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.tnt-dealership-item:first-child { padding-top: 0; }

.tnt-dealership-item-title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0.5rem;
  color: var(--tnt-text-primary);
}

.tnt-dealership-item-text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--tnt-text-secondary);
  font-weight: 300;
}


/* ========================================
   VIDEO EMBED
   ======================================== */

.tnt-video-embed {
  margin: 2.5rem 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--tnt-border);
  position: relative;
  padding-top: 56.25%; /* 16:9 */
}

.tnt-video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* ========================================
   CTA SECTION
   ======================================== */

.tnt-cta-section {
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(212,160,68,0.06) 0%, rgba(212,160,68,0.02) 100%);
  border: 1px solid rgba(212,160,68,0.15);
  border-radius: 12px;
}

.tnt-cta-title {
  font-family: var(--tnt-font-display);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--tnt-text-primary);
}

.tnt-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tnt-cta-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--tnt-border);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: border-color 0.3s, background 0.3s;
}

.tnt-cta-card:hover {
  border-color: var(--tnt-accent);
  background: rgba(255,255,255,0.05);
}

.tnt-cta-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tnt-accent);
  margin-bottom: 0.5rem;
}

.tnt-cta-card-title {
  font-family: var(--tnt-font-display);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0.4rem;
  color: var(--tnt-text-primary);
}

.tnt-cta-card-desc {
  font-size: 13px;
  color: var(--tnt-text-secondary);
  line-height: 1.5;
  font-weight: 300;
}

@media (max-width: 768px) {
  .tnt-cta-grid { grid-template-columns: 1fr; }
}


/* ========================================
   RELATED REVIEWS
   ======================================== */

.tnt-related-section {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid var(--tnt-border);
}

.tnt-related-title {
  font-family: var(--tnt-font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--tnt-text-primary);
}

.tnt-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tnt-related-card {
  background: var(--tnt-bg-card);
  border: 1px solid var(--tnt-border);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
}

.tnt-related-card:hover { border-color: var(--tnt-border-hover); }

.tnt-related-card-img {
  height: 120px;
  overflow: hidden;
}

.tnt-related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tnt-related-card-body { padding: 1.25rem; }

.tnt-related-card-brand {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tnt-accent);
  margin-bottom: 0.5rem;
}

.tnt-related-card-title {
  font-family: var(--tnt-font-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--tnt-text-primary);
}

@media (max-width: 768px) {
  .tnt-related-grid { grid-template-columns: 1fr; }
}


/* ========================================
   FOOTER
   ======================================== */

.tnt-footer {
  padding: 60px clamp(1.5rem, 4vw, 4rem) 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tnt-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.tnt-footer-logo {
  font-family: var(--tnt-font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--tnt-accent);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.tnt-footer-fullname {
  font-size: 12px;
  color: var(--tnt-text-tertiary);
  margin-bottom: 0.5rem;
}

.tnt-footer-tagline {
  font-size: 14px;
  color: var(--tnt-text-tertiary);
  max-width: 300px;
  line-height: 1.5;
}

.tnt-footer-columns {
  display: flex;
  gap: 4rem;
}

.tnt-footer-col-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tnt-text-tertiary);
  margin-bottom: 1rem;
}

.tnt-footer-col a {
  display: block;
  font-size: 14px;
  color: var(--tnt-text-secondary);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
  text-decoration: none;
}

.tnt-footer-col a:hover { color: var(--tnt-text-primary); }

.tnt-footer-bottom {
  border-top: 1px solid var(--tnt-border);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--tnt-text-tertiary);
}

@media (max-width: 768px) {
  .tnt-footer-top { flex-direction: column; gap: 2rem; }
  .tnt-footer-columns { gap: 2rem; }
}


/* ========================================
   ARTICLE FOOTER NOTE
   ======================================== */

.tnt-article-footer {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem clamp(1.5rem, 4vw, 2rem) 4rem;
}

.tnt-footer-note {
  font-size: 13px;
  color: var(--tnt-text-tertiary);
  font-style: italic;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--tnt-border);
}

.tnt-footer-note strong {
  color: var(--tnt-accent);
  font-style: normal;
  font-weight: 600;
}


/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes tntFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.tnt-animate {
  animation: tntFadeUp 0.6s ease-out both;
}


/* ========================================
   REVIEW ARCHIVE / LISTING PAGE
   ======================================== */

.tnt-archive-header {
  padding: 120px clamp(1.5rem, 4vw, 4rem) 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tnt-archive-title {
  font-family: var(--tnt-font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--tnt-text-primary);
}

.tnt-archive-desc {
  font-size: 18px;
  color: var(--tnt-text-secondary);
  line-height: 1.6;
  max-width: 600px;
  font-weight: 300;
}

.tnt-archive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem clamp(1.5rem, 4vw, 4rem) 4rem;
}

@media (max-width: 768px) {
  .tnt-archive-grid { grid-template-columns: 1fr; }
}
