@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&family=Inter:wght@300;400;500;600&display=swap");

:root {
  /* GTH Hub Premium: Slate & Emerald Refinement */
  --hub-bg: #f1f5f9;
  --hub-card-bg: #ffffff;
  --hub-primary: #10b981;
  --hub-primary-dark: #059669;
  --hub-primary-text: #ffffff;
  --hub-accent: #0f766e;
  --hub-text-main: #2c3e50;
  --hub-text-body: #34495e;
  --hub-text-muted: #94a3b8;
  --hub-border: #e2e8f0;
  --hub-gradient: linear-gradient(135deg, #10b981 0%, #059669 100%);
  --hub-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  --hub-font-heading: "Outfit", sans-serif;
  --hub-font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

[data-theme="dark"] {
  --hub-bg: #0a0f18;
  --hub-card-bg: #151c27;
  --hub-text-main: #f8fafc;
  --hub-text-body: #cbd5e1;
  --hub-text-muted: #64748b;
  --hub-border: #1e293b;
  --hub-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gth-hub-body {
  background-color: var(--hub-bg);
  color: var(--hub-text-main);
  font-family: var(--hub-font-body);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Container */
.gth-container {
  width: 100% !important; /* Absolute Full Width */
  max-width: none !important;
  margin: 0;
  padding: 0 15px; /* Minimal side breathing room */
}

/* Header & SEO Titles */
/* Header & Branding */
.gth-header {
  text-align: left;
  padding: 40px 0;
  background: var(--hub-primary-dark);
  color: var(--hub-primary-text);
  margin-bottom: 40px;
}

.gth-brand {
  font-family: var(--hub-font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin: 0;
  color: var(--hub-primary-text);
  letter-spacing: -1px;
}

.gth-tagline {
  color: #bdc3c7;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 5px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Search Bar */
.gth-search-box {
  min-width: 300px;
  position: relative;
}

.gth-search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 50px 12px 20px;
  color: white;
  font-family: var(--hub-font-body);
  transition: all 0.3s ease;
  outline: none;
}

.gth-search-input:focus {
  border-color: var(--hub-primary);
  box-shadow: 0 0 15px rgba(230, 57, 70, 0.2);
}

.gth-search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  background: var(--hub-primary);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.gth-search-btn:hover {
  transform: scale(1.1);
  background: #ff4d5a;
}

/* Layout Grid */
.gth-layout {
  display: grid;
  grid-template-columns: 1fr 260px; /* Reliable sidebar width */
  gap: 10px; /* Minimal gap between grid and radar */
  margin-top: 15px;
}

.gth-main-content {
  min-width: 0;
}

/* --- PREMIUM SEO & MKT BREADCRUMBS --- */
.gth-breadcrumbs-premium {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 25px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  flex-wrap: wrap;
  gap: 15px;
}

.gth-breadcrumbs-premium:hover {
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
}

.gth-bc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}

.gth-bc-item {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--hub-text-muted);
  white-space: nowrap;
}

.gth-bc-item a {
  text-decoration: none;
  color: var(--hub-text-muted);
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gth-bc-item a:hover {
  color: var(--hub-primary);
}

.gth-bc-separator {
  margin: 0 12px;
  font-size: 0.7rem;
  opacity: 0.4;
  color: var(--hub-text-muted);
}

.gth-bc-current {
  color: var(--hub-text-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gth-bc-badge {
  background: var(--hub-primary);
  color: white;
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.gth-bc-badge.story {
  background: #f39c12 !important;
  box-shadow: 0 2px 10px rgba(243, 156, 18, 0.3);
}

.gth-bc-actions {
  display: flex;
  gap: 15px;
}

.gth-bc-subscribe {
  background: var(--hub-primary);
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.gth-bc-subscribe.following {
  background: #27ae60;
  border-color: #219150;
  box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.gth-bc-subscribe.following:hover {
  background: #219150;
}

.gth-bc-subscribe.following i::before {
  content: "\f0f3"; /* solid bell icon or keep current */
  color: #fff;
}

@media (max-width: 768px) {
  .gth-breadcrumbs-premium {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .gth-bc-actions {
    width: 100%;
  }
  .gth-bc-subscribe {
    width: 100%;
    justify-content: center;
  }
}

/* Ad Spaces */
.gth-ad-space {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--hub-border);
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  min-height: 100px;
}

.gth-ad-label {
  display: block;
  font-size: 0.65rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: bold;
}

.gth-ad-top {
  min-height: 120px;
  background: #f1f5f9;
}

.gth-ad-sidebar {
  min-height: 280px;
}

/* Grid Maestro Ultra-Fluido con Lógica EXCEL */
.gth-grid {
  display: grid;
  /* Lógica de auto-fit: las celdas se estiran al 100% del contenedor disponible.
     Se ajusta el ancho mínimo a 220px para maximizar densidad sin comprometer legibilidad. */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px; /* Espaciado denso pero claro */
  width: 100%;
  margin-top: 25px;
  align-items: stretch;
}

/* Card Ajustable con Límites Matemáticos */
.gth-card {
  display: flex;
  flex-direction: column;
  background: var(--hub-card-bg);
  border: 1px solid var(--hub-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  
  /* Límites de ajuste dinámico */
  width: 100%; 
  min-width: 210px; /* Seguridad de lectura mejorada */
  max-width: 100%; /* Permite rellenar el grid cell */
}

.gth-card:hover {
  transform: translateY(-5px);
  border-color: var(--hub-primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.gth-card-image {
  width: 100%;
  height: 135px;
  object-fit: cover;
  border-bottom: 1px solid var(--hub-border);
}

.gth-card-content {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.gth-card-link-wrapper {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
  position: relative;
}

.gth-card-meta {
  font-size: 0.75rem;
  color: var(--hub-primary);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.gth-card-title {
  font-family: var(--hub-font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.35;
  margin: 0 0 10px 0;
  color: var(--hub-text-main);
  letter-spacing: -0.2px;
  text-align: center;
  /* Override inherited global theme styles */
  border-left: none !important;
  padding-left: 0 !important;
  border: none !important;
}

.gth-card-title::before, .gth-card-title::after {
  display: none !important;
  content: none !important;
}

.gth-card-title:hover {
  color: var(--hub-primary);
}

.gth-card-summary {
  font-family: var(--hub-font-body);
  font-size: 0.65rem !important; /* Force ultra-small text */
  font-weight: 400;
  line-height: 1.3;
  color: var(--hub-text-muted);
  text-align: justify;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Clustering Section */
.gth-cluster-badge {
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 10px;
}

.gth-full-badge {
  background: #27ae60;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 10px;
  vertical-align: middle;
}

.gth-summary-badge {
  background: #f39c12;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 10px;
  vertical-align: middle;
}

/* Detailed View Styles */
.gth-detailed-view {
  background: var(--hub-card-bg);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid var(--hub-border);
  max-width: 900px;
  margin: 0 auto;
}

.gth-detailed-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--hub-text-main);
  margin: 30px 0;
}

.gth-detailed-content p {
  margin-bottom: 20px;
}

.gth-source-link {
  display: inline-block;
  padding: 14px 28px;
  background: var(--hub-primary-dark);
  color: #ffffff !important;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  margin-top: 25px;
  transition: all 0.3s ease;
  border: 1px solid #1a252f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gth-source-link:hover {
  background: var(--hub-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

/* Storyline (Hilo) Timeline */
.gth-story-hilo {
  margin: 40px 0;
  background: var(--hub-bg);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--hub-border);
  box-shadow: inset 0 0 20px rgba(0,0,0,0.02);
}
.gth-hilo-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}
.gth-hilo-title {
  font-size: 1.25rem;
  margin: 0;
  color: var(--hub-text-main);
  font-weight: 700;
}
.gth-hilo-timeline {
  position: relative;
  padding-left: 25px;
  border-left: 2px solid var(--hub-border);
  margin-left: 8px;
}
.gth-hilo-step {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.gth-hilo-step:last-child {
  margin-bottom: 0;
}
.gth-hilo-step::before {
  content: "";
  position: absolute;
  left: -32px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hub-card-bg);
  border: 2px solid var(--hub-border);
  z-index: 2;
  transition: all 0.3s ease;
}
.gth-hilo-step.active::before {
  background: var(--hub-primary);
  border-color: var(--hub-primary);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}
.gth-hilo-date {
  font-size: 0.7rem;
  color: var(--hub-primary);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.gth-hilo-link {
  text-decoration: none;
  color: var(--hub-text-main);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
  line-height: 1.4;
  display: block;
}
.gth-hilo-link:hover {
  color: var(--hub-primary);
  transform: translateX(3px);
}
.gth-hilo-step.active .gth-hilo-link {
  font-weight: 700;
  color: var(--hub-text-main);
}
.gth-hilo-current-badge {
  display: inline-block;
  background: var(--hub-primary);
  color: white;
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 10px;
  vertical-align: middle;
}

.gth-related-title {
  margin-top: 60px;
  border-top: 2px solid var(--hub-border);
  padding-top: 40px;
  font-family: var(--hub-font-heading);
  font-size: 1.8rem;
}

/* Trending Bar */
.gth-trending-bar {
  background: #141417;
  border-bottom: 1px solid var(--hub-border);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.gth-trend-item {
  display: inline-block;
  margin-right: 25px;
  font-size: 0.9rem;
  color: var(--hub-text-muted);
}

.gth-trend-num {
  color: var(--hub-primary);
  font-weight: 700;
  margin-right: 5px;
}

/* Voting System */
.gth-card-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--hub-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
}

.gth-vote-btns {
  display: flex;
  gap: 15px;
}

.gth-vote-btn {
  background: transparent;
  border: 1px solid #333;
  color: var(--hub-text-muted);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gth-vote-btn:hover {
  border-color: var(--hub-primary);
  color: var(--hub-text-main);
}

.gth-vote-btn.active-like {
  color: #2ecc71;
  border-color: #2ecc71;
}
.gth-vote-btn.active-dislike {
  color: #e74c3c;
  border-color: #e74c3c;
}

/* Sidebar & Widgets */
.gth-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.gth-widget {
  background: transparent;
  border: none;
  border-top: 1px solid var(--hub-border);
  border-radius: 0;
  padding: 15px 0;
}

.gth-widget-title {
  font-family: var(--hub-font-body);
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--hub-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: none;
  padding-bottom: 0;
  opacity: 0.8;
}

/* Trend Cloud */
.gth-trend-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gth-cloud-item {
  transition: all 0.2s ease;
  border: 1px solid var(--hub-border) !important;
  padding: 4px 10px;
  border-radius: 4px;
  background: transparent;
  color: var(--hub-text-muted);
  font-size: 0.65rem;
  font-weight: 400;
  display: inline-block;
  letter-spacing: 0.3px;
}

.gth-cloud-item:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background: var(--hub-primary);
  color: white;
  border-color: var(--hub-primary) !important;
}

/* Metadata row in cards */
.gth-card-meta-inline span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.gth-card-author i,
.gth-card-cat i {
  font-size: 0.8em;
  opacity: 0.7;
}

/* --- PREMIUM HUB NAVIGATION SYSTEM --- */
.gth-nav-commander {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--hub-border);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  overflow: hidden;
  position: relative; /* Added for absolute arrows */
}

/* Navigation Arrows */
.gth-nav-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  color: var(--hub-primary);
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.gth-nav-arrow.visible {
  opacity: 0.9;
  pointer-events: auto;
}

.gth-nav-arrow:hover {
  background: var(--hub-primary);
  color: white;
  opacity: 1 !important;
}

.gth-nav-arrow-left {
  left: 0;
  border-right: 1px solid var(--hub-border);
}

.gth-nav-arrow-right {
  right: 0;
  border-left: 1px solid var(--hub-border);
}

.gth-nav-commander:hover .gth-nav-arrow.visible {
  opacity: 0.8;
}

.gth-nav-tier-primary {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--hub-border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  cursor: grab;
  position: relative;
}

.gth-nav-tier-primary:active {
  cursor: grabbing;
}

.gth-nav-tier-secondary {
  background: #fcfcfc;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 15px;
  position: relative;
  overflow: hidden;
}

/* Gradient Indicators for Navigation */
.gth-nav-commander::before,
.gth-nav-commander::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.gth-nav-commander.is-scrolled-left::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
  opacity: 1;
}

.gth-nav-commander.is-scrolled-right::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
  opacity: 1;
}

.gth-nav-item {
  padding: 18px 25px;
  text-decoration: none;
  color: var(--hub-text-muted);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 3px solid transparent;
}

.gth-nav-item i {
  font-size: 1.1em;
  opacity: 0.7;
}

.gth-nav-item:hover {
  color: var(--hub-primary);
  background: rgba(16, 185, 129, 0.05); /* Emerald tint */
}

.gth-nav-item.active {
  color: var(--hub-primary);
  border-bottom-color: var(--hub-primary);
  background: rgba(16, 185, 129, 0.08); /* Emerald tint */
}

.gth-nav-tier-secondary {
  background: #fcfcfc;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 15px;
}

.gth-pulse-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #e74c3c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  cursor: help;
}

.gth-pulse-desc {
  font-size: 0.75rem;
  color: var(--hub-text-muted);
  font-family: var(--hub-font-body);
  margin-right: 15px;
  white-space: nowrap;
  font-style: italic;
  font-weight: 500;
}

.gth-pulse-indicator {
  width: 8px;
  height: 8px;
  background: #e74c3c;
  border-radius: 50%;
  position: relative;
}

.gth-pulse-indicator::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #e74c3c;
  border-radius: 50%;
  animation: pulse-ping 1.5s infinite;
}

@keyframes pulse-ping {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.gth-pulse-scroller {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
}

.gth-pulse-scroller::-webkit-scrollbar {
  display: none;
}

.gth-pulse-tag {
  text-decoration: none;
  color: var(--hub-text-main);
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.gth-pulse-tag:hover {
  opacity: 0.6;
}

/* --- FOLLOWED TOPICS WIDGET --- */
.gth-followed-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gth-follow-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--hub-bg);
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--hub-text-main);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.gth-follow-tag:hover {
  background: white;
  border-color: var(--hub-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.gth-unfollow-btn {
  background: transparent;
  border: none;
  color: #e74c3c;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.gth-unfollow-btn:hover {
  opacity: 1;
  background: rgba(231, 76, 60, 0.1);
}

.gth-empty-follows {
  text-align: center;
  padding: 20px 10px;
  color: var(--hub-text-muted);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.4;
}

.gth-empty-follows i {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 10px;
  opacity: 0.3;
}

.gth-tabs::-webkit-scrollbar {
  height: 4px;
}

.gth-tabs::-webkit-scrollbar-track {
  background: var(--hub-card-bg);
}

.gth-tabs::-webkit-scrollbar-thumb {
  background: var(--hub-primary);
  border-radius: 2px;
}

.gth-tabs a {
  padding: 12px 5px;
  white-space: nowrap;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
  .gth-layout {
    grid-template-columns: 1fr !important;
  }
  .gth-sidebar {
    order: 2;
  }
}

/* SIDEBAR MOBILES */
@media (max-width: 900px) {
  .gth-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .gth-sidebar {
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .gth-nav-commander {
    border-radius: 12px;
    margin-bottom: 20px;
  }
  .gth-nav-item {
    padding: 12px 14px;
    font-size: 0.8rem;
  }
  .gth-nav-tier-secondary {
    padding: 10px 15px;
    gap: 10px;
  }
  .gth-pulse-label {
    font-size: 0.65rem;
  }
  .gth-pulse-scroller {
    gap: 15px;
  }
  .gth-brand {
    font-size: 2.5rem;
    text-align: center;
  }
  .gth-grid {
    grid-template-columns: 1fr;
  }
  .gth-header {
    padding: 20px 10px;
  }
  .gth-search-box {
    width: 100%;
  }
  .gth-layout {
    gap: 20px;
  }
  .gth-container {
    padding: 10px 8px;
  }

  /* Hilo Responsive Refinement */
  .gth-story-hilo {
    padding: 15px;
    margin: 25px 0;
  }
  .gth-hilo-title {
    font-size: 1.1rem;
  }
  .gth-hilo-link {
    font-size: 0.85rem;
  }
  .gth-hilo-timeline {
    padding-left: 20px;
  }
  
  /* Breadcrumbs Responsive Refinement */
  .gth-breadcrumbs-premium {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 10px;
    gap: 6px;
    margin-bottom: 20px;
  }
  .gth-bc-list {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
  }
  .gth-bc-list::-webkit-scrollbar {
    display: none;
  }
  .gth-bc-item {
    font-size: 0.8rem;
  }
  .gth-bc-actions {
    width: 100%;
    margin-top: 5px;
  }
  .gth-bc-subscribe {
    width: 100%;
    justify-content: center;
    padding: 8px 15px;
    font-size: 0.85rem;
  }

  /* Detailed View Image Responsive Refinement */
  .gth-detailed-view-img {
    height: auto !important;
    aspect-ratio: 16/10;
    margin-bottom: 20px !important;
  }

  /* Aggressive Padding Reductions */
  .gth-detailed-view {
    padding: 15px !important;
  }
  .gth-card-content {
    padding: 12px;
  }
  .gth-grid {
    gap: 12px;
  }
  .gth-detailed-content {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin: 15px 0 !important;
  }
  .gth-card-title {
    font-size: 1.0rem !important;
    margin-bottom: 8px !important;
  }
}

@media (max-width: 480px) {
  .gth-container {
    padding: 8px 5px;
  }
  .gth-header {
    padding: 15px 10px;
    margin-bottom: 20px;
  }
  .gth-nav-item {
    padding: 10px 12px;
    font-size: 0.75rem;
  }
  .gth-detailed-view {
    padding: 10px !important;
    border-radius: 8px;
  }
  .gth-detailed-view-img {
    margin-bottom: 15px !important;
  }
  .gth-pulse-label span:not(.gth-pulse-indicator) {
     display: none;
  }
}

/* --- FILTER COMMAND CENTER (GTH COMMAND) --- */
.gth-filter-commander {
    background: var(--hub-card-bg);
    border: 1px solid var(--hub-border);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: var(--hub-shadow);
}

.gth-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    align-items: end;
}

.gth-filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gth-filter-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--hub-primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gth-filter-select, .gth-filter-input {
    width: 100%;
    background: var(--hub-bg);
    border: 1px solid var(--hub-border);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--hub-text-main);
    font-size: 0.85rem;
    font-family: var(--hub-font-body);
    outline: none;
    transition: all 0.3s;
}

.gth-filter-select:focus, .gth-filter-input:focus {
    border-color: var(--hub-primary);
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.1);
}

.gth-btn-filter {
    background: var(--hub-primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.gth-btn-filter:hover {
    background: var(--hub-primary-dark);
    transform: translateY(-2px);
}

.gth-btn-reset {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.2);
    border-radius: 10px;
    padding: 12px 20px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    font-size: 0.85rem;
}

/* Premium Newsroom Story Badge - Modern Professional Look */
.gth-story-badge {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    color: #ffffff !important;
    padding: 10px 16px !important;
    border-radius: 4px 12px 12px 4px !important;
    border-left: 5px solid #f39c12 !important;
    font-family: var(--hub-font-heading) !important;
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-transform: uppercase !important;
    width: 100%;
    justify-content: flex-start;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.gth-story-badge:hover {
    background: #0f172a !important;
    transform: scale(1.02) translateY(-2px);
    border-left-color: #fbbf24 !important;
}

.gth-story-badge i {
    font-size: 1rem;
    color: #f39c12;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px rgba(243, 156, 18, 0.4));
}

/* Premium Grid Promo Cards (Newsletter & Announcements) */
.gth-card-promo {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.2);
  min-height: 480px;
  color: #fff;
}

.gth-card-promo-newsletter {
  background: linear-gradient(135deg, #1d4ed8 0%, #0f172a 100%);
  border-top: 5px solid #3b82f6;
}

.gth-card-promo .promo-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #3b82f6;
  filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.gth-card-promo-newsletter .promo-icon {
  color: #fbbf24;
  filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.5));
}

.gth-card-promo h3 {
  font-family: var(--hub-font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #ffffff;
}

.gth-card-promo p {
  font-size: 0.95rem;
  color: #f1f5f9;
  opacity: 1;
  margin-bottom: 25px;
  line-height: 1.5;
}

.gth-card-promo .promo-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.gth-card-promo .promo-btn {
  width: 100%;
  background: #fbbf24;
  color: #0f172a;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gth-card-promo .promo-btn:hover {
  background: #f59e0b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gth-card-promo:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gth-card-promo .promo-bg-glow {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.gth-card-promo-newsletter .promo-bg-glow {
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
}

.gth-card-promo .promo-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

@media (max-width: 768px) {
  .gth-card-promo {
    min-height: auto;
    padding: 40px 25px;
  }
}
