/* ==========================================================================
   TRIBUNA MILLONARIA - THEME STYLESHEET
   Official River Plate Fan Digital Portal
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design Tokens & Variables
   -------------------------------------------------------------------------- */
:root {
  --tm-red: #E30613;
  --tm-red-hover: #C50510;
  --tm-red-glow: rgba(227, 6, 19, 0.25);
  --tm-red-soft: #FFF1F2;
  --tm-white: #FFFFFF;
  --tm-black: #111827;
  --tm-dark: #1A1A1A;
  --tm-gray-900: #111827;
  --tm-gray-800: #1F2937;
  --tm-gray-700: #374151;
  --tm-gray-600: #4B5563;
  --tm-gray-500: #6B7280;
  --tm-gray-400: #9CA3AF;
  --tm-gray-300: #D1D5DB;
  --tm-gray-200: #E5E7EB;
  --tm-gray-100: #F3F4F6;
  --tm-gray-50: #F9FAFB;
  --tm-bg: #F8F9FA;
  
  --tm-font-headline: 'Barlow Condensed', 'Oswald', -apple-system, sans-serif;
  --tm-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  --tm-container: 1240px;
  --tm-radius-sm: 4px;
  --tm-radius: 8px;
  --tm-radius-lg: 12px;
  
  --tm-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --tm-shadow: 0 4px 12px rgba(0,0,0,0.06);
  --tm-shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --tm-shadow-red: 0 8px 20px rgba(227, 6, 19, 0.3);
  
  --tm-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Global Layout
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--tm-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tm-gray-900);
  background-color: var(--tm-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--tm-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.tm-container {
  width: 100%;
  max-width: var(--tm-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --------------------------------------------------------------------------
   3. River Plate Top Utility Bar
   -------------------------------------------------------------------------- */
.tm-top-bar {
  background-color: var(--tm-dark);
  color: var(--tm-gray-300);
  font-size: 12.5px;
  font-weight: 500;
  border-bottom: 2px solid var(--tm-red);
  padding: 6px 0;
}

.tm-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.tm-top-bar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tm-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--tm-red);
  color: var(--tm-white);
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 2px;
}

.tm-live-dot {
  width: 6px;
  height: 6px;
  background-color: var(--tm-white);
  border-radius: 50%;
  animation: tmPulse 1.5s infinite;
}

@keyframes tmPulse {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1); }
}

.tm-date {
  color: var(--tm-gray-400);
  text-transform: capitalize;
}

.tm-top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tm-motto {
  color: var(--tm-gray-400);
  font-style: italic;
  font-size: 12px;
}

.tm-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-social-link {
  color: var(--tm-gray-400);
  font-size: 13px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.tm-social-link:hover {
  color: var(--tm-white);
}

/* --------------------------------------------------------------------------
   4. Main Brand Header
   -------------------------------------------------------------------------- */
.tm-header {
  background-color: var(--tm-white);
  border-bottom: 1px solid var(--tm-gray-200);
  position: relative;
}

/* Distinctive River Plate Red Sash accent bar */
.tm-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tm-red) 0%, var(--tm-red) 70%, var(--tm-dark) 70%, var(--tm-dark) 100%);
}

.tm-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.tm-brand-group {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.tm-crest {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.12));
  flex-shrink: 0;
}

.tm-brand-text {
  display: flex;
  flex-direction: column;
}

.tm-title {
  font-family: var(--tm-font-headline);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--tm-black);
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.tm-title span {
  color: var(--tm-red);
}

.tm-subtitle {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--tm-gray-500);
  margin-top: 4px;
}

.tm-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-btn-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--tm-gray-100);
  color: var(--tm-gray-700);
  border: 1px solid var(--tm-gray-200);
  padding: 8px 14px;
  border-radius: var(--tm-radius);
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tm-transition);
}

.tm-btn-search:hover {
  background: var(--tm-white);
  border-color: var(--tm-gray-300);
  color: var(--tm-black);
  box-shadow: var(--tm-shadow-sm);
}

.tm-btn-subscribe {
  background: linear-gradient(135deg, var(--tm-red) 0%, var(--tm-red-hover) 100%);
  color: var(--tm-white);
  padding: 8px 18px;
  border-radius: var(--tm-radius);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(227, 6, 19, 0.25);
  transition: var(--tm-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tm-btn-subscribe:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.4);
  color: var(--tm-white);
}

.tm-btn-signin {
  color: var(--tm-gray-700);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 12px;
  border-radius: var(--tm-radius);
  transition: color 0.2s;
}

.tm-btn-signin:hover {
  color: var(--tm-red);
}

/* --------------------------------------------------------------------------
   4.5 Mobile Drawer & Hamburger Button
   -------------------------------------------------------------------------- */
.tm-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: var(--tm-gray-100);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  cursor: pointer;
  padding: 0;
  transition: var(--tm-transition);
}

.tm-menu-toggle:hover {
  background: var(--tm-white);
  border-color: var(--tm-gray-300);
}

.tm-menu-bar {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--tm-black);
  border-radius: 2px;
  transition: var(--tm-transition);
}

.tm-drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tm-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.tm-mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background-color: var(--tm-dark);
  color: var(--tm-white);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.tm-mobile-drawer.is-open {
  transform: translateX(0);
}

.tm-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 2px solid var(--tm-red);
  background-color: var(--tm-dark);
}

.tm-drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tm-drawer-brand .tm-crest {
  width: 34px;
  height: 34px;
}

.tm-drawer-title {
  font-family: var(--tm-font-headline);
  font-size: 20px;
  font-weight: 900;
  color: var(--tm-white);
  letter-spacing: 0.5px;
}

.tm-drawer-title span {
  color: var(--tm-red);
}

.tm-drawer-close {
  background: none;
  border: none;
  color: var(--tm-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: var(--tm-radius-sm);
  transition: color 0.2s;
}

.tm-drawer-close:hover {
  color: var(--tm-red);
}

.tm-drawer-search {
  padding: 16px 20px 8px;
}

.tm-drawer-search-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--tm-gray-300);
  padding: 10px 14px;
  border-radius: var(--tm-radius);
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}

.tm-drawer-search-btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--tm-white);
}

.tm-drawer-nav {
  padding: 12px 0;
  flex-grow: 1;
}

.tm-drawer-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.tm-drawer-list li {
  margin: 0 !important;
  padding: 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tm-drawer-list li a {
  display: block;
  padding: 14px 22px;
  color: var(--tm-gray-100);
  font-family: var(--tm-font-headline);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.tm-drawer-list li a:hover {
  background-color: var(--tm-red);
  color: var(--tm-white);
  padding-left: 28px;
}

.tm-drawer-footer {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--tm-dark);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tm-drawer-btn {
  display: block;
  text-align: center;
  padding: 11px;
  border-radius: var(--tm-radius);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.tm-drawer-btn-signin {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--tm-white);
}

.tm-drawer-btn-sub {
  background: var(--tm-red);
  color: var(--tm-white);
  box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3);
}

body.tm-drawer-open {
  overflow: hidden !important;
}

/* --------------------------------------------------------------------------
   5. Category Navigation Bar (River Plate Style)
   -------------------------------------------------------------------------- */
.tm-nav-bar {
  background-color: var(--tm-dark);
  border-bottom: 3px solid var(--tm-red);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.tm-nav-list {
  display: flex;
  align-items: center;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.tm-nav-list::-webkit-scrollbar {
  display: none;
}

.tm-nav-item,
.tm-nav-item + .tm-nav-item,
.tm-nav-list li,
.tm-nav-list li + li {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  vertical-align: middle;
}

.tm-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  line-height: 48px;
  padding: 0 16px;
  margin: 0 !important;
  color: var(--tm-white);
  font-family: var(--tm-font-headline);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: background-color 0.2s, color 0.2s;
  box-sizing: border-box;
}

.tm-nav-item:first-child .tm-nav-link {
  padding-left: 16px;
  padding-right: 16px;
}

.tm-nav-link:hover,
.tm-nav-link.active {
  background-color: var(--tm-red);
  color: var(--tm-white);
}

/* --------------------------------------------------------------------------
   6. Trending News Ticker Bar
   -------------------------------------------------------------------------- */
.tm-trending-bar {
  background-color: var(--tm-white);
  border-bottom: 1px solid var(--tm-gray-200);
  padding: 8px 0;
  font-size: 13px;
}

.tm-trending-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tm-trending-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--tm-red);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.tm-trending-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}

.tm-tag-pill {
  background-color: var(--tm-gray-100);
  color: var(--tm-gray-700);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  border: 1px solid var(--tm-gray-200);
  transition: var(--tm-transition);
}

.tm-tag-pill:hover {
  background-color: var(--tm-red);
  border-color: var(--tm-red);
  color: var(--tm-white);
}

/* --------------------------------------------------------------------------
   7. Section Headers (Classic Sports Paper Ribbon)
   -------------------------------------------------------------------------- */
.tm-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  border-bottom: 2px solid var(--tm-dark);
  padding-bottom: 8px;
  position: relative;
}

.tm-section-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tm-section-indicator {
  width: 14px;
  height: 24px;
  background-color: var(--tm-red);
  transform: skewX(-15deg);
}

.tm-section-title {
  font-family: var(--tm-font-headline);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tm-black);
  margin: 0;
}

.tm-section-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--tm-red);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.tm-section-more:hover {
  color: var(--tm-red-hover);
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   8. Main Hero / Noticia de Tapa Layout
   -------------------------------------------------------------------------- */
.tm-hero-section {
  padding: 28px 0 36px 0;
}

.tm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
}

/* Noticia de Tapa (Lead Story) */
.tm-lead-card {
  position: relative;
  background-color: var(--tm-white);
  border-radius: var(--tm-radius);
  overflow: hidden;
  box-shadow: var(--tm-shadow);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--tm-gray-200);
  transition: var(--tm-transition);
}

.tm-lead-card:hover {
  box-shadow: var(--tm-shadow-lg);
  border-color: var(--tm-gray-300);
}

.tm-lead-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: var(--tm-dark);
  overflow: hidden;
}

.tm-lead-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tm-lead-card:hover .tm-lead-img {
  transform: scale(1.03);
}

.tm-lead-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}

.tm-badge-tapa {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--tm-red);
  color: var(--tm-white);
  font-family: var(--tm-font-headline);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  z-index: 2;
}

.tm-lead-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tm-lead-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: var(--tm-gray-500);
  font-weight: 600;
  text-transform: uppercase;
}

.tm-lead-tag {
  color: var(--tm-red);
  font-weight: 800;
}

.tm-lead-title {
  font-family: var(--tm-font-headline);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--tm-black);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: -0.3px;
}

.tm-lead-title a:hover {
  color: var(--tm-red);
}

.tm-lead-excerpt {
  font-size: 16px;
  color: var(--tm-gray-700);
  line-height: 1.55;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tm-card-author-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--tm-gray-200);
  font-size: 13px;
  color: var(--tm-gray-600);
}

.tm-author-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--tm-red);
}

/* Sidebar Noticias Secundarias & Widgets */
.tm-hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  width: 100%;
}

.tm-widget-box {
  width: 100%;
  min-width: 0;
  background-color: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  overflow: hidden;
  box-shadow: var(--tm-shadow-sm);
  transition: var(--tm-transition);
}

.tm-widget-header {
  background-color: var(--tm-dark);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--tm-red);
}

.tm-widget-badge {
  background-color: var(--tm-red);
  color: var(--tm-white);
  font-family: var(--tm-font-headline);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tm-widget-sub {
  color: var(--tm-gray-300);
  font-family: var(--tm-font-headline);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.tm-widget-body {
  width: 100%;
  overflow: hidden;
  background-color: var(--tm-white);
  padding: 4px 0;
}

.tm-widget-credit,
.tm-widget-body #powered-by {
  font-size: 11px;
  color: var(--tm-gray-400);
  text-align: right;
  padding: 4px 12px 6px;
}

.tm-widget-credit a,
.tm-widget-body #powered-by a {
  color: var(--tm-gray-600);
  font-weight: 600;
  text-decoration: none;
  margin-left: 3px;
}

.tm-widget-credit a:hover,
.tm-widget-body #powered-by a:hover {
  color: var(--tm-red);
  text-decoration: underline;
}

.tm-side-card {
  background-color: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  overflow: hidden;
  padding: 14px;
  display: flex;
  gap: 14px;
  box-shadow: var(--tm-shadow-sm);
  transition: var(--tm-transition);
}

.tm-side-card:hover {
  transform: translateY(-2px);
  border-color: var(--tm-gray-300);
  box-shadow: var(--tm-shadow);
}

.tm-side-thumb {
  width: 105px;
  height: 85px;
  border-radius: var(--tm-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  background-color: var(--tm-gray-100);
}

.tm-side-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.tm-side-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--tm-red);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.tm-side-title {
  font-family: var(--tm-font-headline);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--tm-gray-900);
  text-transform: uppercase;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tm-side-title a:hover {
  color: var(--tm-red);
}

.tm-side-date {
  font-size: 11.5px;
  color: var(--tm-gray-500);
  margin-top: 6px;
}

/* --------------------------------------------------------------------------
   8.5 Thematic Section: Centro de Estadísticas & Fixture (365Scores)
   -------------------------------------------------------------------------- */
.tm-section-stats {
  background-color: var(--tm-gray-50);
  border-top: 1px solid var(--tm-gray-200);
  border-bottom: 1px solid var(--tm-gray-200);
  padding: 36px 0 44px 0;
  margin-bottom: 40px;
}

.tm-stats-live-badge {
  font-family: var(--tm-font-headline);
  font-size: 13px;
  font-weight: 800;
  color: var(--tm-red);
  letter-spacing: 0.5px;
  background-color: var(--tm-red-light);
  padding: 4px 10px;
  border-radius: 4px;
}

.tm-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.tm-widget-body-scroll {
  max-height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: var(--tm-red) var(--tm-gray-100);
}

.tm-widget-body-scroll::-webkit-scrollbar {
  width: 6px;
}

.tm-widget-body-scroll::-webkit-scrollbar-thumb {
  background-color: var(--tm-red);
  border-radius: 3px;
}

@media (max-width: 900px) {
  .tm-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   9. Thematic Section: Mercado de Pases
   -------------------------------------------------------------------------- */
.tm-section-mercado {
  background-color: var(--tm-white);
  border-top: 1px solid var(--tm-gray-200);
  border-bottom: 1px solid var(--tm-gray-200);
  padding: 40px 0;
  margin-bottom: 40px;
}

.tm-mercado-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.tm-mercado-card {
  background-color: var(--tm-gray-50);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  overflow: hidden;
  transition: var(--tm-transition);
  display: flex;
  flex-direction: column;
}

.tm-mercado-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tm-shadow);
  border-color: var(--tm-red);
}

.tm-mercado-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.tm-mercado-card:hover .tm-mercado-img {
  transform: scale(1.05);
}

.tm-badge-rumor {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: var(--tm-dark);
  color: var(--tm-white);
  border-left: 3px solid var(--tm-red);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  letter-spacing: 0.5px;
}

.tm-mercado-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tm-mercado-title {
  font-family: var(--tm-font-headline);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--tm-black);
  margin-bottom: 8px;
}

.tm-mercado-title a:hover {
  color: var(--tm-red);
}

.tm-mercado-excerpt {
  font-size: 13.5px;
  color: var(--tm-gray-600);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------------------
   10. Thematic Section: El Monumental & La Hinchada
   -------------------------------------------------------------------------- */
.tm-section-monumental {
  background: linear-gradient(135deg, #111827 0%, #1A1A1A 100%);
  color: var(--tm-white);
  padding: 44px 0;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.tm-section-monumental::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(227, 6, 19, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.tm-section-monumental .tm-section-header {
  border-bottom-color: rgba(255,255,255,0.2);
}

.tm-section-monumental .tm-section-title {
  color: var(--tm-white);
}

.tm-monumental-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.tm-monumental-card {
  position: relative;
  border-radius: var(--tm-radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background-color: #222;
  box-shadow: 0 6px 18px rgba(0,0,0,0.35);
  transition: var(--tm-transition);
}

.tm-monumental-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(227, 6, 19, 0.35);
}

.tm-monumental-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.tm-monumental-card:hover .tm-monumental-img {
  transform: scale(1.06);
}

.tm-monumental-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
}

.tm-monumental-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  z-index: 2;
}

.tm-monumental-tag {
  display: inline-block;
  background-color: var(--tm-red);
  color: var(--tm-white);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 6px;
}

.tm-monumental-title {
  font-family: var(--tm-font-headline);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--tm-white);
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   11. General Feed: Últimas Noticias
   -------------------------------------------------------------------------- */
.tm-section-feed {
  padding-bottom: 60px;
}

.tm-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tm-post-card {
  background-color: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--tm-shadow-sm);
  transition: var(--tm-transition);
}

.tm-post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tm-shadow);
  border-color: var(--tm-gray-300);
}

.tm-card-thumb-link {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background-color: var(--tm-gray-100);
}

.tm-card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.tm-post-card:hover .tm-card-thumb {
  transform: scale(1.04);
}

.tm-card-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: var(--tm-red);
  color: var(--tm-white);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.tm-card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tm-card-title {
  font-family: var(--tm-font-headline);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--tm-black);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.tm-card-title a:hover {
  color: var(--tm-red);
}

.tm-card-excerpt {
  font-size: 14px;
  color: var(--tm-gray-600);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.tm-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--tm-gray-500);
  padding-top: 10px;
  border-top: 1px solid var(--tm-gray-100);
}

/* Pagination */
.tm-pagination {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.tm-pagination a,
.tm-pagination span {
  padding: 8px 16px;
  background-color: var(--tm-white);
  border: 1px solid var(--tm-gray-200);
  border-radius: var(--tm-radius);
  font-weight: 700;
  font-size: 14px;
  color: var(--tm-gray-700);
  transition: var(--tm-transition);
}

.tm-pagination a:hover {
  background-color: var(--tm-red);
  border-color: var(--tm-red);
  color: var(--tm-white);
}

.tm-page-number {
  color: var(--tm-gray-500) !important;
  background-color: transparent !important;
  border-color: transparent !important;
}

/* --------------------------------------------------------------------------
   12. Single Article View (post.hbs)
   -------------------------------------------------------------------------- */
.tm-article-wrap {
  padding: 36px 0 60px 0;
}

.tm-article-container {
  max-width: 820px;
  margin: 0 auto;
  background-color: var(--tm-white);
  padding: 36px 40px;
  border-radius: var(--tm-radius);
  border: 1px solid var(--tm-gray-200);
  box-shadow: var(--tm-shadow-sm);
}

.tm-article-header {
  margin-bottom: 24px;
}

.tm-article-tag {
  display: inline-block;
  background-color: var(--tm-red);
  color: var(--tm-white);
  font-family: var(--tm-font-headline);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.tm-article-title {
  font-family: var(--tm-font-headline);
  font-size: 46px;
  font-weight: 900;
  line-height: 1.05;
  color: var(--tm-black);
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.tm-article-excerpt {
  font-size: 19px;
  font-weight: 500;
  color: var(--tm-gray-600);
  line-height: 1.5;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--tm-gray-200);
  padding-bottom: 18px;
}

.tm-article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.tm-byline-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-byline-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--tm-red);
}

.tm-byline-meta {
  display: flex;
  flex-direction: column;
}

.tm-author-title {
  font-weight: 700;
  color: var(--tm-black);
  font-size: 14.5px;
}

.tm-meta-date-read {
  font-size: 12.5px;
  color: var(--tm-gray-500);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tm-article-media {
  margin-bottom: 28px;
  border-radius: var(--tm-radius);
  overflow: hidden;
}

.tm-article-media img {
  width: 100%;
  height: auto;
  border-radius: var(--tm-radius);
}

.tm-media-caption {
  font-size: 12.5px;
  color: var(--tm-gray-500);
  font-style: italic;
  padding: 8px 4px 0 4px;
  text-align: center;
}

/* Article Prose / Content Typography */
.tm-prose {
  font-size: 17.5px;
  line-height: 1.75;
  color: #2D3748;
}

.tm-prose p {
  margin-bottom: 1.5em;
}

.tm-prose h2 {
  font-family: var(--tm-font-headline);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--tm-black);
  margin-top: 1.8em;
  margin-bottom: 0.6em;
  border-left: 4px solid var(--tm-red);
  padding-left: 12px;
}

.tm-prose h3 {
  font-family: var(--tm-font-headline);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--tm-black);
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

.tm-prose blockquote {
  border-left: 4px solid var(--tm-red);
  background-color: var(--tm-gray-50);
  padding: 16px 20px;
  margin: 1.8em 0;
  font-style: italic;
  font-size: 19px;
  color: var(--tm-gray-800);
  border-radius: 0 var(--tm-radius) var(--tm-radius) 0;
}

.tm-prose ul, .tm-prose ol {
  margin: 1.2em 0 1.5em 1.5em;
}

.tm-prose li {
  margin-bottom: 0.5em;
}

.tm-prose img {
  border-radius: var(--tm-radius);
  margin: 1.8em 0;
}

/* Related Posts */
.tm-related-section {
  max-width: 820px;
  margin: 40px auto 0 auto;
}

.tm-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.tm-footer {
  background-color: var(--tm-dark);
  color: var(--tm-white);
  border-top: 4px solid var(--tm-red);
  padding: 50px 0 24px 0;
}

.tm-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 36px;
  margin-bottom: 40px;
}

.tm-footer-brand h3 {
  font-family: var(--tm-font-headline);
  font-size: 30px;
  font-weight: 900;
  color: var(--tm-white);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tm-footer-brand h3 span {
  color: var(--tm-red);
}

.tm-footer-desc {
  color: var(--tm-gray-400);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tm-footer-col h4 {
  font-family: var(--tm-font-headline);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--tm-white);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--tm-red);
  display: inline-block;
  padding-bottom: 4px;
}

.tm-footer-links {
  list-style: none;
}

.tm-footer-links li {
  margin-bottom: 8px;
}

.tm-footer-links a {
  color: var(--tm-gray-400);
  font-size: 13.5px;
  transition: color 0.2s;
}

.tm-footer-links a:hover {
  color: var(--tm-white);
}

.tm-footer-contact-info {
  margin: 14px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tm-footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--tm-gray-400);
}

.tm-footer-contact-item span {
  font-weight: 600;
  color: var(--tm-white);
}

.tm-footer-contact-item a {
  color: var(--tm-gray-300);
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-all;
}

.tm-footer-contact-item a:hover {
  color: var(--tm-red);
  text-decoration: underline;
}

.tm-footer-contact-item svg {
  color: var(--tm-red);
  flex-shrink: 0;
}

.tm-newsletter-box {
  background-color: rgba(255,255,255,0.05);
  padding: 16px;
  border-radius: var(--tm-radius);
  border: 1px solid rgba(255,255,255,0.1);
}

.tm-newsletter-box p {
  font-size: 13px;
  color: var(--tm-gray-400);
  margin-bottom: 12px;
}

.tm-newsletter-form {
  display: flex;
  gap: 8px;
}

.tm-newsletter-input {
  flex-grow: 1;
  background-color: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 12px;
  border-radius: var(--tm-radius-sm);
  color: var(--tm-white);
  font-size: 13px;
  outline: none;
}

.tm-newsletter-input:focus {
  border-color: var(--tm-red);
}

.tm-newsletter-btn {
  background-color: var(--tm-red);
  color: var(--tm-white);
  border: none;
  padding: 8px 14px;
  border-radius: var(--tm-radius-sm);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s;
}

.tm-newsletter-btn:hover {
  background-color: var(--tm-red-hover);
}

.tm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
  color: var(--tm-gray-500);
}

/* --------------------------------------------------------------------------
   14. Responsive Media Queries (Mobile, Tablet, Desktop)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .tm-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tm-hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tm-hero-sidebar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .tm-side-card {
    flex-direction: column;
  }

  .tm-side-thumb {
    width: 100%;
    height: 130px;
  }

  .tm-stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tm-mercado-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tm-feed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tm-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 768px) {
  .tm-top-bar {
    display: none;
  }

  .tm-header-inner {
    padding: 12px 16px;
    gap: 12px;
  }

  .tm-brand-group {
    gap: 10px;
  }

  .tm-crest {
    width: 40px;
    height: 40px;
  }

  .tm-title {
    font-size: 24px;
  }

  .tm-subtitle {
    display: none;
  }

  .tm-header-actions .tm-btn-signin {
    display: none;
  }

  .tm-header-actions .tm-btn-subscribe {
    display: none;
  }

  .tm-header-actions .tm-btn-search span {
    display: none;
  }

  .tm-header-actions .tm-btn-search {
    padding: 8px 10px;
  }

  .tm-menu-toggle {
    display: flex;
  }

  /* En mobile se oculta el navbar horizontal secundario porque la navegación vive en el menú hamburguesa */
  .tm-nav-bar {
    display: none !important;
  }

  .tm-trending-bar {
    display: none !important;
  }

  .tm-hero-section {
    padding: 16px 0 24px 0;
  }

  .tm-lead-title {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 8px;
  }

  .tm-lead-excerpt {
    font-size: 14px;
    -webkit-line-clamp: 2;
    margin-bottom: 12px;
  }

  .tm-lead-body {
    padding: 16px;
  }

  .tm-hero-sidebar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tm-side-card {
    flex-direction: row;
    padding: 10px;
    gap: 12px;
    align-items: center;
  }

  .tm-side-thumb {
    width: 95px;
    height: 75px;
    flex-shrink: 0;
  }

  .tm-side-title {
    font-size: 15px;
    line-height: 1.2;
  }

  .tm-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 16px;
  }

  .tm-section-title {
    font-size: 20px;
  }

  .tm-stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tm-widget-box {
    border-radius: var(--tm-radius-sm);
  }

  .tm-widget-body-scroll {
    max-height: 480px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tm-monumental-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tm-feed-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tm-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tm-article-container {
    padding: 20px 14px;
  }

  .tm-article-title {
    font-size: 28px;
    line-height: 1.15;
  }

  .tm-article-excerpt {
    font-size: 16px;
  }

  .tm-article-byline {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .tm-prose {
    font-size: 16px;
    line-height: 1.65;
  }

  .tm-prose img {
    border-radius: 4px;
    max-width: 100%;
    height: auto;
  }

  .tm-related-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tm-comments-section {
    margin-top: 28px;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .tm-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .tm-mercado-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tm-mercado-card {
    flex-direction: row;
    align-items: center;
  }

  .tm-mercado-img-wrap {
    width: 110px;
    height: 85px;
    flex-shrink: 0;
  }

  .tm-mercado-body {
    padding: 10px;
  }

  .tm-lead-title {
    font-size: 22px;
  }

  .tm-lead-meta-top {
    font-size: 11px;
  }

  .tm-side-thumb {
    width: 80px;
    height: 65px;
  }

  .tm-side-title {
    font-size: 14px;
  }

  .tm-article-title {
    font-size: 24px;
  }

  .tm-article-container {
    padding: 16px 12px;
  }

  .tm-comments-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .tm-newsletter-form {
    flex-direction: column;
  }

  .tm-newsletter-btn {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   15. Facebook Comments & Web Vitals Optimization (CLS = 0)
   -------------------------------------------------------------------------- */
.tm-comments-section {
  margin-top: 44px;
  padding-top: 36px;
  border-top: 2px solid var(--tm-gray-200);
}

.tm-comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}

.tm-comments-badge {
  background-color: #1877F2;
  color: var(--tm-white);
  font-family: var(--tm-font-headline);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.tm-comments-intro {
  font-size: 13.5px;
  color: var(--tm-gray-600);
  margin-bottom: 22px;
  line-height: 1.5;
}

.tm-comments-intro em {
  color: var(--tm-gray-400);
  font-size: 12.5px;
  display: block;
  margin-top: 4px;
}

.tm-comments-wrapper {
  position: relative;
  min-height: 280px;
  width: 100%;
  border-radius: var(--tm-radius);
  background-color: var(--tm-white);
}

.tm-fb-target {
  width: 100%;
  min-height: 260px;
  overflow: hidden;
}

/* Skeleton Loader con efecto Shimmer para CLS = 0 */
.tm-comments-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--tm-gray-50);
  border: 1px dashed var(--tm-gray-300);
  border-radius: var(--tm-radius);
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 260px;
  text-align: center;
}

.tm-skeleton-header {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 380px;
}

.tm-skeleton-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(90deg, #E5E7EB 25%, #F3F4F6 50%, #E5E7EB 75%);
  background-size: 200% 100%;
  animation: tmShimmer 1.6s infinite ease-in-out;
  flex-shrink: 0;
}

.tm-skeleton-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.tm-skeleton-line {
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(90deg, #E5E7EB 25%, #F3F4F6 50%, #E5E7EB 75%);
  background-size: 200% 100%;
  animation: tmShimmer 1.6s infinite ease-in-out;
}

.tm-skeleton-line.short {
  width: 45%;
}

.tm-skeleton-line.medium {
  width: 80%;
}

.tm-skeleton-box {
  color: var(--tm-gray-500);
  font-size: 13.5px;
  font-weight: 600;
}

.tm-comments-manual-btn {
  background-color: var(--tm-red);
  color: var(--tm-white);
  font-family: var(--tm-font-headline);
  font-size: 12.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  box-shadow: var(--tm-shadow-sm);
  transition: var(--tm-transition);
}

.tm-comments-manual-btn:hover {
  background-color: var(--tm-red-hover);
  transform: translateY(-1px);
  box-shadow: var(--tm-shadow);
}

@keyframes tmShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Overrides para diseño 100% fluido de Facebook Comments */
.fb-comments,
.fb-comments iframe,
.fb-comments iframe[style],
.fb-comments > span,
.fb_iframe_widget,
.fb_iframe_widget span,
.fb_iframe_widget iframe {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 240px !important;
  box-sizing: border-box !important;
  display: block !important;
}
