/* ============================================================
   EN LAS 3 BASES — Main Stylesheet
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Kanit:ital,wght@0,400;0,600;0,700;1,600&family=Open+Sans:wght@400;600&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --naranja:   #FD490C;
  --azul:      #0503FA;
  --gris-osc:  #2E2E2E;
  --gris-med:  #1a1a1a;
  --gris-dark: #111111;
  --gris-bg:   #F5F5F5;
  --white:     #ffffff;
  --shadow:    0 2px 12px rgba(0,0,0,.06);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--gris-bg);
  color: var(--gris-osc);
  overflow-x: hidden;
  max-width: 100vw;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.font-anton { font-family: 'Anton', sans-serif; }
.font-kanit { font-family: 'Kanit', sans-serif; }
.text-naranja { color: var(--naranja); }
.section-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gris-osc);
  border-left: 4px solid var(--naranja);
  padding-left: 12px;
  margin-bottom: 20px;
}
.section-title.light { color: #fff; border-left-color: var(--naranja); }

/* ── Breaking News Ticker ─────────────────────────────────── */
.ticker-bar {
  background: var(--gris-dark);
  padding: 8px 0;
  overflow: hidden;
  position: relative;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}
.ticker-label {
  background: var(--naranja);
  color: #fff;
  font-family: 'Anton', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}
.ticker-track-wrap {
  overflow: hidden;
  flex: 1;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding-left: 24px;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  background: var(--gris-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.header-topbar {
  background: #0d0d0d;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.header-topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-flags { font-size: 15px; }
.topbar-tagline {
  font-family: 'Kanit', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,.45);
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.topbar-social a {
  font-family: 'Kanit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color .2s;
}
.topbar-social a:hover { color: var(--naranja); }

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-logo img { height: 44px; width: auto; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .en-las {
  font-family: 'Kanit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.5);
}
.logo-text .tres-bases {
  font-family: 'Anton', sans-serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
}
.logo-text .tres-bases span { color: var(--naranja); }

.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a {
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 8px 14px;
  border-radius: 6px;
  color: rgba(255,255,255,.75);
  transition: all .2s;
}
.header-nav a:hover { background: rgba(255,255,255,.06); color: #fff; }
.btn-live {
  background: var(--naranja) !important;
  color: #fff !important;
  font-weight: 700 !important;
  margin-left: 4px;
}
.btn-live:hover { opacity: .88 !important; background: var(--naranja) !important; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-search {
  background: rgba(255,255,255,.08);
  border: none;
  color: rgba(255,255,255,.6);
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .2s;
}
.btn-search:hover { background: rgba(255,255,255,.13); }
.btn-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
  padding: 6px;
}
.btn-hamburger svg { width: 24px; height: 24px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: #0d0d0d;
  padding: 0 20px 16px;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 12px 0;
  color: rgba(255,255,255,.7);
  border-bottom: 1px solid rgba(255,255,255,.07);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--naranja); }
.mobile-nav .btn-live-mobile {
  display: block;
  text-align: center;
  background: var(--naranja);
  color: #fff !important;
  border-radius: 8px;
  margin-top: 10px;
  border-bottom: none !important;
}

/* ── Category Strip ───────────────────────────────────────── */
.cat-strip {
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  position: sticky;
  top: 73px;
  z-index: 90;
}
.cat-strip .container { padding-top: 0; padding-bottom: 0; }
.cat-strip-scroll {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-strip-scroll::-webkit-scrollbar { display: none; }
.cat-strip-scroll a {
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 14px 20px;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  color: var(--gris-osc);
  transition: all .2s;
}
.cat-strip-scroll a:hover,
.cat-strip-scroll a.active {
  color: var(--naranja);
  border-bottom-color: var(--naranja);
}

/* ── Hero Section ─────────────────────────────────────────── */
.hero-section {
  background: #1a1a1a;
  padding: 28px 0 32px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 20px;
}
.hero-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 480px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.4) 55%, transparent 100%);
}
.hero-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.hero-badge {
  display: inline-block;
  font-family: 'Anton', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--naranja);
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.hero-category-badge {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  margin-left: 6px;
}
.hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: .5px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--naranja);
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  transition: opacity .2s;
}
.hero-cta:hover { opacity: .88; }

/* Hero side cards */
.hero-side { display: flex; flex-direction: column; gap: 14px; }
.side-card {
  display: flex;
  gap: 0;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  transition: border-color .2s;
  flex: 1;
}
.side-card:hover { border-color: var(--naranja); }
.side-card-thumb {
  flex-shrink: 0;
  width: 110px;
  height: 90px;
  overflow: hidden;
  position: relative;
}
.side-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.side-card:hover .side-card-thumb img { transform: scale(1.05); }
.side-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  flex: 1;
  min-width: 0;
}
.side-card-cat {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.side-card-title {
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.side-card-date {
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,.4);
}

/* ── Main Content Grid ────────────────────────────────────── */
.main-section { padding: 36px 0 48px; background: var(--gris-bg); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

/* ── Article Cards ────────────────────────────────────────── */
.articles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.article-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.12); }
.article-card-thumb {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.article-card:hover .article-card-thumb img { transform: scale(1.04); }
.article-card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.article-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.article-card-cat {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
  align-self: flex-start;
}
.article-card-title {
  font-family: 'Kanit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--gris-osc);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.article-card:hover .article-card-title { color: var(--naranja); }
.article-card-excerpt {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.article-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.article-card-date { font-size: 11px; color: #aaa; font-family: 'Open Sans', sans-serif; }
.article-card-link {
  font-family: 'Kanit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--naranja);
}

/* ── Béisbol Latino Section ───────────────────────────────── */
.latino-section {
  background: #fff;
  border-radius: 12px;
  padding: 22px 24px;
  margin-top: 40px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--naranja);
}
.latino-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.country-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px 12px;
  background: #F8F8F8;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  transition: all .2s;
}
.country-card:hover {
  background: #fff5f2;
  border-color: var(--naranja);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(253,73,12,.12);
}
.country-flag { font-size: 30px; line-height: 1; }
.country-name {
  font-family: 'Anton', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gris-osc);
}
.country-liga {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  background: var(--naranja);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
}

/* ── Por Categoría ────────────────────────────────────────── */
.cat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 40px; }
.cat-grid-item {
  text-align: center;
  padding: 12px 8px;
  border-radius: 8px;
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  transition: opacity .2s, transform .2s;
}
.cat-grid-item:hover { opacity: .88; transform: translateY(-2px); }

/* ── Sidebar ──────────────────────────────────────────────── */
.sidebar { display: flex; flex-direction: column; gap: 24px; }

.widget {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.widget-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gris-osc);
}
.widget-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.widget-title {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}
.widget-body { padding: 16px 18px; }

/* Trending items */
.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: none;
}
.trending-item:last-child { border-bottom: none; }
.trending-item:hover .trending-title { color: var(--naranja); }
.trending-num {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}
.trending-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
}
.trending-thumb img { width: 100%; height: 100%; object-fit: cover; }
.trending-info { flex: 1; min-width: 0; }
.trending-cat {
  font-family: 'Kanit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: block;
  margin-bottom: 2px;
}
.trending-title {
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gris-osc);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color .2s;
}
.trending-date { font-size: 11px; color: #aaa; margin-top: 3px; display: block; }

/* Categories widget */
.cat-widget-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background .2s;
}
.cat-widget-item:hover { background: #f9f9f9; }
.cat-widget-item:hover .cat-widget-name { color: var(--naranja); }
.cat-widget-left { display: flex; align-items: center; gap: 8px; }
.cat-widget-dot { width: 8px; height: 8px; border-radius: 50%; }
.cat-widget-name {
  font-family: 'Kanit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gris-osc);
  transition: color .2s;
}
.cat-widget-arrow { color: #ccc; transition: color .2s; }
.cat-widget-item:hover .cat-widget-arrow { color: var(--naranja); }

/* Social widget */
.social-widget-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  transition: opacity .2s;
}
.social-btn:hover { opacity: .88; }
.social-btn-instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.social-btn-twitter { background: #1a1a1a; }
.social-btn-tiktok { background: #010101; border: 1px solid rgba(255,255,255,.1); }
.social-btn-youtube { background: #FF0000; }

/* About widget */
.about-widget {
  background: var(--gris-osc);
  border-radius: 10px;
  padding: 20px 18px;
}
.about-logo-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.about-logo-badge {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: #fff;
  background: var(--naranja);
  padding: 2px 8px;
}
.about-logo-text {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  color: #fff;
}
.about-desc {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
}

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,.55);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  padding-top: 48px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand-logo img { height: 40px; width: auto; }
.footer-brand-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,.45);
  margin-bottom: 14px;
}
.footer-brand-tagline {
  font-family: 'Kanit', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 13px;
  color: var(--naranja);
}
.footer-flags { font-size: 16px; margin-top: 14px; }
.footer-col-title {
  font-family: 'Anton', sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  margin-bottom: 16px;
}
.footer-nav-list li { margin-bottom: 10px; }
.footer-nav-list a {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-nav-list a:hover { color: var(--naranja); }

.footer-social { display: flex; flex-direction: column; gap: 8px; }
.footer-social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  transition: opacity .2s;
}
.footer-social-btn:hover { opacity: .8; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  font-family: 'Kanit', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

/* ── Article Detail Page ──────────────────────────────────── */
.article-hero {
  background: var(--gris-dark);
  padding: 40px 0;
}
.article-hero-inner { max-width: 860px; margin: 0 auto; }
.article-hero-cat {
  display: inline-block;
  font-family: 'Kanit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.article-hero-title {
  font-family: 'Anton', sans-serif;
  font-size: 36px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.article-cover {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 32px;
}
.article-content-wrap { max-width: 860px; margin: 40px auto; padding: 0 20px; }
.article-content { line-height: 1.75; color: #444; }
.article-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: 24px;
  color: var(--gris-osc);
  margin: 32px 0 12px;
  text-transform: uppercase;
  border-left: 4px solid var(--naranja);
  padding-left: 12px;
}
.article-content h3 {
  font-family: 'Kanit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gris-osc);
  margin: 24px 0 8px;
}
.article-content p { margin-bottom: 18px; }
.article-content strong { color: var(--gris-osc); font-weight: 700; }
.article-content ul, .article-content ol { margin: 12px 0 12px 24px; }
.article-content li { margin-bottom: 8px; }

/* Back link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Kanit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--naranja);
  margin-bottom: 24px;
  transition: gap .2s;
}
.back-link:hover { gap: 10px; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .latino-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar-social { display: none; }
  .header-nav { display: none; }
  .btn-search { display: none; }
  .btn-hamburger { display: block; }
  .articles-grid { grid-template-columns: 1fr; }
  .hero-card { height: 340px; }
  .hero-title { font-size: 22px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .latino-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-card { height: 280px; }
  .hero-card-body { padding: 20px; }
  .hero-title { font-size: 19px; }
  .articles-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .latino-grid { grid-template-columns: repeat(2, 1fr); }
}
