/* ══════════════════════════════════════════════════════════
   MAREA — Components: cards, badges, news items, hero
══════════════════════════════════════════════════════════ */

/* ── HERO GRID ───────────────────────────────────────────── */
.hero-section {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: var(--grid-gap) var(--site-pad) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 3fr 1.1fr;
  grid-template-rows: auto auto;
  gap: var(--grid-gap);
  background: var(--mist);
  border: 1px solid var(--mist);
}

/* Featured main */
.hero-main {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 44px 44px 40px;
  grid-row: 1 / 3;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent, transparent 49px, rgba(255,255,255,.018) 50px),
    repeating-linear-gradient(90deg, transparent, transparent 49px, rgba(255,255,255,.018) 50px);
}

.hero-photo {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-photo-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #161616 0%, #1A1F24 60%, #0D1117 100%);
}

.hero-photo-placeholder::after,
.hero-main-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 20%, rgba(12,12,12,.97) 85%);
  z-index: 1;
}

.hero-main-overlay { content: none; display: block; }

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-cat {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--wave);
}

.hero-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fog);
}

.hero-time { font-size: 12px; color: var(--fog); }

.hero-badge {
  background: var(--alert);
  color: #fff;
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-left: auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -1.5px;
  color: var(--cream);
  margin-bottom: 18px;
  max-width: 700px;
}

.hero-title .hl { color: var(--wave); }

.hero-excerpt {
  font-size: 15px;
  color: rgba(196,168,130,.85);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--wave);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--ink);
  overflow: hidden;
}

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

.hero-author { font-size: 13px; font-weight: 500; color: var(--cream); }
.hero-readtime { font-size: 12px; color: var(--fog); }

.hero-cta {
  margin-left: auto;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wave);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity var(--t-fast);
}
.hero-cta:hover { opacity: 0.75; }

/* Hero sidebar cards */
.hero-side-wrapper {
  overflow: hidden; /* contiene el flex child */
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--paper);
  height: 100%;
}

.hero-side-card {
  padding: 22px 22px 20px;
  border-bottom: 1px solid var(--mist);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background var(--t-fast);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.hero-side-card:last-child { border-bottom: none; }
.hero-side-card:hover { background: var(--cream); }

.hsc-img {
  height: 110px;
  overflow: hidden;
  flex-shrink: 0;
}
.hsc-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hsc-cat {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wave);
}

.hsc-title {
  font-family: var(--font-condensed);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.hsc-foot { display: flex; align-items: center; gap: 8px; }
.hsc-time { font-size: 11px; color: var(--fog); }
.hsc-views { font-size: 11px; color: var(--sand); }

/* ── SECONDARY ROW ───────────────────────────────────────── */
.secondary-row {
  max-width: var(--site-max);
  margin: var(--grid-gap) auto 0;
  padding: 0 var(--site-pad);
}

.secondary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  background: var(--mist);
}

.sec-card {
  background: var(--paper);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: background var(--t-fast);
  border-bottom: 3px solid transparent;
  text-decoration: none;
  color: inherit;
}

.sec-card:hover { background: var(--cream); border-bottom-color: var(--wave); }

.sec-card.accent-wave {
  background: var(--wave);
  border-bottom-color: transparent;
}
.sec-card.accent-wave:hover { background: #04b0ca; }
.sec-card.accent-wave .sca-title   { color: var(--ink); }
.sec-card.accent-wave .sca-cat     { color: rgba(0,0,0,.5); }
.sec-card.accent-wave .sca-time    { color: rgba(0,0,0,.4); }
.sec-card.accent-wave .sca-excerpt { color: rgba(0,0,0,.7); }

.sec-card.accent-dark {
  background: var(--ink);
  border-bottom-color: transparent;
}
.sec-card.accent-dark:hover { background: #1a1a1a; }
.sec-card.accent-dark .sca-title   { color: var(--cream); }
.sec-card.accent-dark .sca-cat     { color: var(--wave); }
.sec-card.accent-dark .sca-time    { color: var(--fog); }
.sec-card.accent-dark .sca-excerpt { color: var(--fog); }

.sca-img {
  height: 140px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.sca-img img { width: 100%; height: 100%; object-fit: cover; }
.accent-wave .sca-img { background: rgba(0,0,0,.12); }

.sca-cat {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wave);
}

.sca-title {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
  color: var(--ink);
}

.sca-excerpt { font-size: 13px; color: var(--fog); line-height: 1.6; }
.sca-time    { font-size: 11px; color: var(--fog); }

/* ── NEWS LIST ───────────────────────────────────────────── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--mist);
  cursor: pointer;
  transition: background var(--t-fast);
  text-decoration: none;
  color: inherit;
}

.news-item:hover { background: var(--cream); }

.ni-img {
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--fog);
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  overflow: hidden;
  min-height: 100px;
}
.ni-img img { width: 100%; height: 100%; object-fit: cover; }

.ni-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ni-cat {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wave);
}

.ni-title {
  font-family: var(--font-condensed);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.ni-excerpt { font-size: 13px; color: var(--fog); line-height: 1.55; }

.ni-foot { display: flex; align-items: center; gap: 10px; margin-top: 2px; }
.ni-time { font-size: 11px; color: var(--fog); }
.ni-readtime { font-size: 11px; color: var(--sand); }

/* Large news item */
.news-item.large {
  grid-template-columns: 1fr;
  border-left: 4px solid var(--wave);
}
.news-item.large .ni-img { height: 220px; }
.news-item.large .ni-title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 0.98;
  letter-spacing: -0.5px;
}

/* Opinion item */
.news-item.opinion {
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.news-item.opinion:hover { background: #1A1A1A; }
.news-item.opinion .ni-title   { color: var(--cream); }
.news-item.opinion .ni-excerpt { color: var(--fog); }
.news-item.opinion .ni-time    { color: var(--sand); }
.opinion-tag {
  font-family: var(--font-condensed);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sand);
}

/* ── MULTIMEDIA BLOCK ────────────────────────────────────── */
.mm-block {
  background: var(--night);
  padding: 24px;
  margin-bottom: var(--grid-gap);
}

.mm-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mm-title-label {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
}

.mm-sub { font-size: 12px; color: var(--fog); }

.mm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.mm-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mm-thumb {
  height: 80px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.mm-thumb img { width: 100%; height: 100%; object-fit: cover; }

.mm-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--wave);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 2;
}

.mm-play-arrow {
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid var(--ink);
  margin-left: 2px;
}

.mm-item-cat   { font-family: var(--font-condensed); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--wave); }
.mm-item-title { font-family: var(--font-condensed); font-size: 15px; font-weight: 700; line-height: 1.2; color: var(--cream); }
.mm-item-time  { font-size: 11px; color: var(--fog); }

/* ── CAT SHOWCASE ────────────────────────────────────────── */
.cat-showcase {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 40px var(--site-pad) 0;
}

.cat-tabs {
  display: flex;
  border-bottom: 2px solid var(--ink);
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }

.cat-tab {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  color: var(--fog);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--t-fast);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.cat-tab:hover  { color: var(--ink); }
.cat-tab.active { color: var(--wave); border-bottom-color: var(--wave); }

.cat-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  background: var(--mist);
  margin-top: var(--grid-gap);
}

.cat-card {
  background: var(--paper);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: background var(--t-fast);
  text-decoration: none;
  color: inherit;
}
.cat-card:hover { background: var(--cream); }

.cc-img {
  height: 100px;
  background: var(--mist);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cc-img img { width: 100%; height: 100%; object-fit: cover; }

.cc-cat  { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--wave); }
.cc-title { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; line-height: 1.2; color: var(--ink); }
.cc-time  { font-size: 11px; color: var(--fog); }

/* ── VERANO STRIP ────────────────────────────────────────── */
.verano-strip {
  background: var(--wave);
  margin-top: var(--grid-gap);
}

.verano-inner {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: 28px var(--site-pad);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: center;
}

.verano-label-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 2px solid rgba(0,0,0,.15);
  padding-right: 40px;
}

.verano-sup {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
}

.verano-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.verano-desc { font-size: 13px; color: rgba(0,0,0,.55); margin-top: 6px; }

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

.vc-item { display: flex; flex-direction: column; gap: 5px; }
.vc-title {
  font-family: var(--font-condensed);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  text-decoration: none;
  transition: opacity var(--t-fast);
}
.vc-title:hover { opacity: 0.75; }
.vc-time { font-size: 11px; color: rgba(0,0,0,.45); }

/* ── OPINIÓN ROW ─────────────────────────────────────────── */
.opinion-row {
  background: var(--ink);
  padding: 40px var(--site-pad);
  margin-top: var(--grid-gap);
}

.opinion-inner { max-width: var(--site-max); margin: 0 auto; }

.opinion-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
}

.opinion-title   { font-family: var(--font-display); font-size: 22px; color: var(--cream); letter-spacing: -0.2px; }
.opinion-sub     { font-size: 13px; color: var(--fog); }
.opinion-see-all {
  margin-left: auto;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wave);
  transition: opacity var(--t-fast);
}
.opinion-see-all:hover { opacity: 0.75; }

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

.op-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: background var(--t-fast);
  text-decoration: none;
  color: inherit;
}
.op-card:hover { background: rgba(255,255,255,.07); }

.op-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--wave);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--ink);
  overflow: hidden;
}
.op-avatar img { width: 100%; height: 100%; object-fit: cover; }

.op-author  { font-size: 13px; font-weight: 500; color: var(--cream); }
.op-role    { font-size: 11px; color: var(--fog); }
.op-title   { font-family: var(--font-condensed); font-size: 19px; font-weight: 700; line-height: 1.2; color: var(--cream); }
.op-excerpt { font-size: 13px; color: var(--fog); line-height: 1.55; }
.op-wave    { height: 2px; background: var(--wave); width: 32px; }

/* ══════════════════════════════════════════════════════════
   HOME v2  — new class names (keep legacy classes above for
   backward compat; these are the v2 canonical names)
══════════════════════════════════════════════════════════ */

/* ── Hero wrapper (v2: .hero) ────────────────────────────── */
.hero {
  max-width: var(--site-max);
  margin: 0 auto;
  padding: var(--grid-gap) var(--site-pad) 0;
}

/* ── Secondary row (v2: .sec / .sec-grid) ────────────────── */
.sec {
  max-width: var(--site-max);
  margin: var(--grid-gap) auto 0;
  padding: 0 var(--site-pad);
}

.sec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
  background: var(--mist);
}

/* ── Section divider (v2: .divider) ─────────────────────── */
.divider {
  max-width: var(--site-max);
  margin: 36px auto 0;
  padding: 0 var(--site-pad);
}

.divider-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
}

.div-label {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.2px;
  color: var(--ink);
  white-space: nowrap;
}

.div-line { flex: 1; }

.div-link {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wave);
  white-space: nowrap;
  transition: opacity var(--t-fast);
}
.div-link:hover { opacity: 0.7; }

/* ── Por Sección tabs (v2: .por-seccion / .tabs / .tab) ─── */
.por-seccion {
  max-width: var(--site-max);
  margin: 40px auto 0;
  padding: 0 var(--site-pad);
}

.por-seccion .tabs {
  display: flex;
  border-bottom: 2px solid var(--ink);
  overflow-x: auto;
  scrollbar-width: none;
}
.por-seccion .tabs::-webkit-scrollbar { display: none; }

.por-seccion .tab {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 20px;
  color: var(--fog);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--t-fast);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.por-seccion .tab:hover  { color: var(--ink); }
.por-seccion .tab.active { color: var(--wave); border-bottom-color: var(--wave); }

.tabs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gap);
  background: var(--mist);
  margin-top: var(--grid-gap);
}

.tab-card {
  background: var(--paper);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: background var(--t-fast);
  text-decoration: none;
  color: inherit;
}
.tab-card:hover { background: var(--cream); }

.tc-img {
  height: 100px;
  background: var(--mist);
  margin-bottom: 4px;
  overflow: hidden;
  flex-shrink: 0;
}
.tc-img img { width: 100%; height: 100%; object-fit: cover; }
.tc-cat   { font-family: var(--font-condensed); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--wave); }
.tc-title { font-family: var(--font-condensed); font-size: 18px; font-weight: 700; line-height: 1.2; color: var(--ink); }
.tc-time  { font-size: 11px; color: var(--fog); }

/* ── Verano strip (v2: .verano / .ver-* / .vc) ───────────── */
.verano {
  background: var(--wave);
  margin-top: var(--grid-gap);
}

.ver-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 2px solid rgba(0,0,0,.15);
  padding-right: 40px;
}

.ver-sup {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,.5);
}

.ver-title {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.ver-desc { font-size: 13px; color: rgba(0,0,0,.55); margin-top: 6px; }

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

.vc { display: flex; flex-direction: column; gap: 5px; }

/* ── Opinion section (v2: .opinion-sec / .op-* v2 names) ─── */
.opinion-sec {
  background: var(--ink);
  padding: 40px var(--site-pad);
  margin-top: var(--grid-gap);
}

.op-inner { max-width: var(--site-max); margin: 0 auto; }

.op-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
}

/* .op-title is the section heading ("Opinión") in v2
   (was the card post-title in v1 — now .op-card-title) */
.op-title   { font-family: var(--font-display); font-size: 22px; color: var(--cream); letter-spacing: -0.2px; }
.op-sub     { font-size: 13px; color: var(--fog); }

.op-link {
  margin-left: auto;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wave);
  transition: opacity var(--t-fast);
}
.op-link:hover { opacity: 0.75; }

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

/* Avatar — pure initials div, NO overflow:hidden, NO img */
.op-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--wave);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
}

.op-wave-line { height: 2px; background: var(--wave); width: 32px; }
.op-card-title { font-family: var(--font-condensed); font-size: 19px; font-weight: 700; line-height: 1.2; color: var(--cream); }
.op-card-text  { font-size: 13px; color: var(--fog); line-height: 1.55; }

/* ── SKELETON LOADER ─────────────────────────────────────── */
@keyframes skeleton-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  pointer-events: none;
  user-select: none;
}

.skeleton-line {
  border-radius: 2px;
  background: linear-gradient(
    90deg,
    var(--mist) 25%,
    #ede8de 50%,
    var(--mist) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s infinite linear;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton-line { animation: none; background: var(--mist); }
}

.skeleton-img    { height: 100px; }
.skeleton-cat    { height: 10px; width: 60px; }
.skeleton-title-1 { height: 18px; width: 92%; }
.skeleton-title-2 { height: 18px; width: 65%; }
.skeleton-time   { height: 10px; width: 80px; margin-top: 4px; }

/* ── RESPONSIVE: COMPONENTS ─────────────────────────────── */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  /* legacy */
  .cat-cards  { grid-template-columns: repeat(2, 1fr); }
  .opinion-grid { grid-template-columns: repeat(2, 1fr); }
  /* v2 */
  .tabs-grid  { grid-template-columns: repeat(2, 1fr); }
  .op-grid    { grid-template-columns: repeat(2, 1fr); }
  .sec-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-grid  { grid-template-columns: 1fr; }
  .hero-main  { grid-row: auto; min-height: 400px; padding: 28px 20px 24px; }
  .hero-title { font-size: 32px; }

  /* legacy */
  .secondary-grid { grid-template-columns: 1fr; }
  .verano-inner   { grid-template-columns: 1fr; }
  .verano-label-col { border-right: none; border-bottom: 2px solid rgba(0,0,0,.15); padding-right: 0; padding-bottom: 16px; }
  .verano-cards   { grid-template-columns: 1fr 1fr; }
  .opinion-grid { grid-template-columns: 1fr; }
  .cat-cards    { grid-template-columns: 1fr 1fr; }
  /* v2 */
  .ver-col    { border-right: none; border-bottom: 2px solid rgba(0,0,0,.15); padding-right: 0; padding-bottom: 16px; }
  .ver-cards  { grid-template-columns: 1fr 1fr; }
  .op-grid    { grid-template-columns: 1fr; }
  .tabs-grid  { grid-template-columns: 1fr 1fr; }

  .mm-grid { grid-template-columns: 1fr; }

  .news-item.large .ni-title { font-size: 24px; }
}

@media (max-width: 480px) {
  .ver-cards  { grid-template-columns: 1fr; }
  .tabs-grid  { grid-template-columns: 1fr; }
  .op-grid    { grid-template-columns: 1fr; }
}
