/* ==========================================================================
   EMEL INFORMA — Design System v2
   Paleta de marca: AZUL MARINO (#002040) + ROJO (#C02020) + AZUL NEON
   Prefijo de clases: em-*   (aislado del tema original de Blogger)
   Responsive · mobile-first · tema claro/oscuro
   ========================================================================== */

:root {
  /* --- Marca --- */
  --em-red: #c02020;
  --em-red-dark: #961717;
  --em-red-light: #e23b39;
  --em-navy: #002040;
  --em-navy-700: #001b3f;
  --em-navy-600: #0a2e5c;
  --em-navy-900: #000e24;
  --em-blue: #1e88e5;
  --em-cyan: #38bdf8;
  --em-gold: #e8b400;

  /* --- Tinta / fondos --- */
  --em-ink: #0b1220;
  --em-body: #333a45;
  --em-muted: #6b7480;
  --em-line: #e3e7ed;
  --em-line-strong: #c9d0da;
  --em-bg: #ffffff;
  --em-bg-soft: #f4f6f9;
  --em-bg-tint: #eef3f9;
  --em-ad-bg: #fffbf2;
  --em-ad-line: #ecd9a8;

  /* --- Tipografia --- */
  --em-font-display: "Oswald", "Arial Narrow", system-ui, sans-serif;
  --em-font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --em-font-serif: Georgia, "Times New Roman", serif;

  /* --- Medidas --- */
  --em-container: 1240px;
  --em-gutter: 16px;
  --em-radius: 4px;
  --em-radius-md: 8px;
  --em-radius-lg: 14px;
  --em-shadow-sm: 0 1px 2px rgba(11, 18, 32, .06), 0 1px 3px rgba(11, 18, 32, .08);
  --em-shadow: 0 4px 14px -4px rgba(11, 18, 32, .16), 0 2px 6px -2px rgba(11, 18, 32, .1);
  --em-shadow-lg: 0 18px 40px -18px rgba(0, 32, 64, .45);
  --em-ease: cubic-bezier(.22, .61, .36, 1);
}

@media (min-width: 768px) { :root { --em-gutter: 24px; } }

/* ------------------------------ Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
.em-app {
  margin: 0;
  font-family: var(--em-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--em-body);
  background: var(--em-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Franja de marca superior (toque único) */
.em-app::before {
  content: ""; display: block; height: 3px;
  background: linear-gradient(90deg, var(--em-red) 0%, var(--em-red) 45%, var(--em-blue) 45%, var(--em-cyan) 100%);
}
.em-app img, .em-app svg, .em-app video { display: block; max-width: 100%; }
.em-app img { height: auto; }
.em-app a { color: inherit; text-decoration: none; }
.em-app ul, .em-app ol { list-style: none; margin: 0; padding: 0; }
.em-app h1, .em-app h2, .em-app h3, .em-app h4 {
  margin: 0; font-family: var(--em-font-display); color: var(--em-ink);
  font-weight: 600; line-height: 1.16; overflow-wrap: break-word;
}
.em-app p { margin: 0; }
.em-app button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
.em-app ::selection { background: rgba(192, 32, 32, .18); }

.em-container {
  width: 100%; max-width: var(--em-container);
  margin-inline: auto; padding-inline: var(--em-gutter);
}
.em-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ------------------------------ Barra superior ------------------------------ */
.em-topbar {
  background: var(--em-navy-900); color: #aebbcb; font-size: 12.5px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.em-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 40px; }
.em-topbar__left { display: flex; align-items: center; gap: 16px; min-width: 0; }
.em-topbar__date { letter-spacing: .02em; white-space: nowrap; text-transform: capitalize; }
.em-topbar__date b { color: #fff; font-weight: 500; }
.em-topbar__clock {
  display: inline-flex; align-items: center; gap: 7px; color: #fff;
  font-variant-numeric: tabular-nums; letter-spacing: .04em; white-space: nowrap;
}
.em-topbar__clock b { font-weight: 600; font-family: var(--em-font-display); font-size: 13.5px; }
.em-topbar__clock-ico { color: var(--em-cyan); font-size: 13px; }
@media (max-width: 560px) { .em-topbar__date { display: none; } }
.em-topbar__links { display: flex; align-items: center; gap: 16px; }
.em-topbar__links a { color: #aebbcb; transition: color .2s; }
.em-topbar__links a:hover { color: #fff; }
.em-topbar__social svg { width: 15px; height: 15px; fill: currentColor; display: inline-block; vertical-align: middle; }
.em-live {
  display: inline-flex; align-items: center; gap: 7px; color: #fff;
  font-family: var(--em-font-display); font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; font-size: 12px;
}
.em-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--em-red); animation: em-pulse 1.9s infinite; }
@keyframes em-pulse {
  0% { box-shadow: 0 0 0 0 rgba(192,32,32,.65); }
  70% { box-shadow: 0 0 0 8px rgba(192,32,32,0); }
  100% { box-shadow: 0 0 0 0 rgba(192,32,32,0); }
}
@media (max-width: 860px) { .em-topbar__links a:not(.em-live) { display: none; } }

/* ------------------------------ Cabecera ------------------------------ */
.em-masthead {
  position: relative; overflow: hidden;
  background: var(--em-bg);
  border-bottom: 1px solid var(--em-line);
}
.em-masthead::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(120% 200% at 10% -50%, rgba(30,136,229,.12), transparent 58%),
    radial-gradient(90% 170% at 100% -10%, rgba(192,32,32,.09), transparent 52%);
}
.em-masthead__wm {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--em-font-display); font-weight: 700;
  font-size: clamp(17px, 2.5vw, 33px); line-height: 1;
  letter-spacing: .42em; text-transform: uppercase;
  white-space: nowrap; pointer-events: none; user-select: none; overflow: hidden;
  color: transparent;
  background-image: linear-gradient(100deg,
    rgba(0, 32, 64, .14) 0%, rgba(0, 32, 64, .40) 50%, rgba(0, 32, 64, .14) 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text;
  animation: em-wm-shine 16s ease-in-out infinite;
}
@keyframes em-wm-shine {
  from { background-position: 160% 0; }
  to { background-position: -60% 0; }
}
@media (prefers-reduced-motion: reduce) { .em-masthead__wm { animation: none; } }
.em-masthead__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 16px;
  padding: 13px 0; min-height: 78px;
}
.em-brand { display: flex; align-items: center; gap: 13px; min-width: 0; flex: 1 1 auto; }
.em-brand__logo { height: 46px; width: 46px; flex: none; }
.em-brand__meta { display: block; min-width: 0; }
.em-brand__name {
  display: block; font-family: var(--em-font-display); font-size: 21px; font-weight: 700;
  color: var(--em-navy); letter-spacing: .02em; line-height: 1.05; white-space: nowrap;
}
.em-brand__tag {
  display: block; margin-top: 2px; font-size: 10px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--em-red); font-weight: 600; white-space: nowrap;
}
.em-masthead__tools { display: flex; align-items: center; gap: 10px; flex: none; }

.em-theme-btn { padding: 11px 14px; font-size: 16px; line-height: 1; }

@media (min-width: 1000px) {
  .em-brand__logo { height: 54px; width: 54px; }
  .em-brand__name { font-size: 25px; }
  .em-masthead__inner { min-height: 90px; padding: 15px 0; }
}
@media (max-width: 560px) {
  .em-brand__tag { display: none; }
  .em-btn--live .em-btn__label { display: none; }
  .em-btn--live { padding: 11px 13px; }
}

.em-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--em-font-display); font-weight: 500; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 11px 18px; border-radius: 999px; transition: all .2s var(--em-ease); white-space: nowrap;
}
.em-btn svg { width: 16px; height: 16px; flex: none; }
.em-btn--sm { padding: 7px 12px; font-size: 11.5px; gap: 6px; }
.em-btn--sm svg { width: 13px; height: 13px; }
.em-btn--live { background: var(--em-red); color: #fff; box-shadow: 0 6px 16px -6px rgba(192,32,32,.7); }
.em-btn--live:hover { background: var(--em-red-dark); transform: translateY(-1px); }
.em-btn--ghost { background: var(--em-bg-soft); color: var(--em-navy); border: 1px solid var(--em-line); }
.em-btn--ghost:hover { background: var(--em-bg-tint); }
.em-btn--wa { background: #25d366; color: #05340f; font-weight: 600; }
.em-btn--wa:hover { background: #1eb455; }

/* (masthead listo) */

/* ------------------------------ Menu (SIN hamburguesa) ------------------------------ */
.em-nav { position: sticky; top: 0; z-index: 60; background: linear-gradient(180deg, var(--em-navy) 0%, var(--em-navy-700) 100%); box-shadow: 0 6px 18px -12px rgba(0,32,64,.9); }
.em-nav__inner { display: flex; align-items: stretch; flex-wrap: wrap; }
.em-nav__scroll {
  display: flex; align-items: stretch; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x proximity;
}
.em-nav__scroll::-webkit-scrollbar { display: none; }
.em-nav__link {
  position: relative; display: inline-flex; align-items: center;
  padding: 14px 15px; color: #d9e2ee; white-space: nowrap; scroll-snap-align: start;
  font-family: var(--em-font-display); font-weight: 500; font-size: 14px;
  letter-spacing: .07em; text-transform: uppercase; transition: color .2s, background .2s;
}
.em-nav__link::after {
  content: ""; position: absolute; left: 15px; right: 15px; bottom: 0; height: 3px;
  background: var(--em-red); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--em-ease);
}
.em-nav__link:hover { color: #fff; background: rgba(255,255,255,.06); }
.em-nav__link:hover::after, .em-nav__link.is-active::after { transform: scaleX(1); }
.em-nav__link.is-active { color: #fff; }
/* Buscador dentro del menu */
.em-nav__form {
  order: 2; flex: 1 1 100%;
  display: flex; align-items: center; gap: 9px;
  margin: 9px 0 11px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px; padding: 8px 15px;
  transition: background .2s, border-color .2s;
}
.em-nav__form:focus-within { background: #fff; border-color: #fff; }
.em-nav__form svg { width: 16px; height: 16px; stroke: #cfdceb; flex: none; transition: stroke .2s; }
.em-nav__form:focus-within svg { stroke: var(--em-navy); }
.em-nav__form input {
  border: 0; outline: 0; background: transparent; width: 100%; min-width: 0;
  color: #fff; font-size: 14px;
}
.em-nav__form input::placeholder { color: rgba(255,255,255,.68); }
.em-nav__form:focus-within input { color: #0b1220; }
.em-nav__form:focus-within input::placeholder { color: var(--em-muted); }
.em-nav__scroll { order: 1; flex: 1 1 100%; }
@media (min-width: 980px) {
  .em-nav__inner { flex-wrap: nowrap; }
  .em-nav__scroll { order: 1; flex: 1 1 auto; }
  .em-nav__form { order: 2; flex: 0 0 268px; margin: 0 0 0 16px; align-self: center; padding: 8px 16px; }
}
@media (max-width: 899px) { .em-nav__link { padding: 12px 13px; font-size: 13px; } .em-nav__link::after { left: 13px; right: 13px; } }

/* Enlace "Escúchalos en vivo" (destacado) */
.em-nav__link--alt { color: #8fe3ff; }
.em-nav__link--alt::after { background: #8fe3ff; }
.em-nav__link--alt:hover { color: #fff; background: rgba(56,189,248,.12); }
.em-nav__link--alt .em-dot { width: 7px; height: 7px; margin-right: 9px; background: #ff5147; }
.em-nav__link--alt { border-left: 1px solid rgba(255,255,255,.14); }

/* ------------------------------ Ticker ------------------------------ */
.em-ticker { background: var(--em-bg-tint); border-bottom: 1px solid var(--em-line); }
.em-ticker__inner { display: flex; align-items: stretch; min-height: 42px; }
.em-ticker__label {
  display: inline-flex; align-items: center; gap: 8px; flex: none;
  background: var(--em-red); color: #fff; padding: 0 16px;
  font-family: var(--em-font-display); font-weight: 600; font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
}
.em-ticker__viewport {
  overflow: hidden; display: flex; align-items: center;
  padding-left: 20px; margin-left: 20px; border-left: 1px solid var(--em-line);
}
.em-ticker__track { display: flex; gap: 36px; white-space: nowrap; padding-left: 0; animation: em-ticker 40s linear infinite; }
.em-ticker:hover .em-ticker__track { animation-play-state: paused; }
.em-ticker__item { font-size: 13.5px; color: var(--em-body); }
.em-ticker__item b { color: var(--em-red); font-weight: 600; }
@keyframes em-ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .em-ticker__track { animation: none; } }
@media (max-width: 767px) { .em-ticker__label span { display: none; } }

/* ------------------------------ Layout ------------------------------ */
.em-main { padding-block: 26px 46px; }
.em-layout { display: grid; gap: 34px; grid-template-columns: 1fr; }
@media (min-width: 1000px) { .em-layout { grid-template-columns: minmax(0, 1fr) 330px; } }
.em-content { display: flex; flex-direction: column; gap: 36px; min-width: 0; }

/* ------------------------------ Seccion ------------------------------ */
.em-section-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; padding-bottom: 9px; border-bottom: 2px solid var(--em-navy); }
.em-section-head__title { font-size: 21px; font-weight: 600; text-transform: uppercase; letter-spacing: .02em; }
.em-section-head__title::before {
  content: ""; display: inline-block; width: 7px; height: 19px; margin-right: 11px;
  background: var(--em-red); vertical-align: -3px; border-radius: 1px;
}
.em-section-head__more {
  margin-left: auto; font-size: 12px; font-weight: 700; color: var(--em-red);
  text-transform: uppercase; letter-spacing: .07em; display: inline-flex; align-items: center; gap: 5px;
}
.em-section-head__more:hover { color: var(--em-red-dark); text-decoration: underline; }

/* ------------------------------ Hero ------------------------------ */
.em-hero { display: grid; gap: 16px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .em-hero { grid-template-columns: 1.72fr 1fr; } }
.em-hero__side { display: grid; gap: 16px; }

/* ------------------------------ Tarjetas ------------------------------ */
.em-card { display: block; position: relative; }
.em-card__media {
  position: relative; overflow: hidden; background: var(--em-bg-soft);
  border-radius: var(--em-radius); aspect-ratio: 16 / 9;
}
.em-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--em-ease); }
.em-card:hover .em-card__media img { transform: scale(1.05); }
.em-card__kicker {
  display: inline-block; font-family: var(--em-font-display); font-size: 11px;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--em-red); margin-bottom: 7px;
}
.em-card__title { font-size: 17.5px; font-weight: 600; transition: color .18s; }
.em-card:hover .em-card__title { color: var(--em-red); }
.em-card__meta { margin-top: 9px; font-size: 12px; color: var(--em-muted); display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.em-card__meta span::before { content: "·"; margin-right: 9px; }
.em-card__meta span:first-child::before { content: ""; margin: 0; }
.em-card--xl .em-card__title { font-size: clamp(22px, 3.6vw, 33px); line-height: 1.13; }
.em-card--xl .em-card__body { padding-top: 14px; }
.em-card--overlay .em-card__media { aspect-ratio: 16 / 10; }
.em-card--overlay .em-card__body {
  position: absolute; inset: auto 0 0 0; padding: 20px 18px;
  background: linear-gradient(to top, rgba(0,14,36,.92) 0%, rgba(0,14,36,.45) 55%, rgba(0,14,36,0) 100%);
  color: #fff;
}
.em-card--overlay .em-card__title { color: #fff; }
.em-card--overlay .em-card__kicker { color: #ffb9b7; }
.em-card--overlay .em-card__meta { color: rgba(255,255,255,.85); }
.em-card--overlay:hover .em-card__title { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.em-row { display: grid; grid-template-columns: 120px 1fr; gap: 15px; }
.em-row .em-card__media { aspect-ratio: 4 / 3; }
.em-row .em-card__title { font-size: 16px; }
@media (max-width: 420px) { .em-row { grid-template-columns: 98px 1fr; } }

/* ------------------------------ Grillas ------------------------------ */
.em-grid { display: grid; gap: 24px 22px; grid-template-columns: 1fr; }
@media (min-width: 560px) { .em-grid--2, .em-grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1000px) { .em-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.em-stack { display: flex; flex-direction: column; gap: 18px; }
.em-stack--divided > * + * { padding-top: 18px; border-top: 1px solid var(--em-line); }

/* ------------------------------ Publicidad ------------------------------ */
.em-ad {
  position: relative; background: var(--em-ad-bg);
  border: 1px dashed var(--em-ad-line); border-radius: var(--em-radius);
  padding: 30px 16px 18px; text-align: center; min-height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.em-ad::before {
  content: "PUBLICIDAD"; position: absolute; top: 0; left: 0;
  background: var(--em-ad-line); color: #8a6d1f;
  font-family: var(--em-font-display); font-size: 10px; font-weight: 700;
  letter-spacing: .16em; padding: 4px 11px; border-radius: 0 0 4px 0;
}
.em-ad__placeholder { color: #a08f63; font-size: 13px; }
.em-ad__note { font-size: 12px; color: #a08f63; line-height: 1.4; }
.em-ad--banner { min-height: 92px; }
.em-ad--box { min-height: 260px; }
.em-ad--inline { margin: 30px 0; }
.em-ad ins.adsbygoogle { display: block; width: 100%; }

/* ------------------------------ CTA Reportes ------------------------------ */
.em-cta {
  position: relative; overflow: hidden; border-radius: var(--em-radius-md);
  background: linear-gradient(135deg, var(--em-navy) 0%, var(--em-navy-900) 100%);
  color: #fff; display: grid; grid-template-columns: 1fr;
  border: 1px solid rgba(255,255,255,.07);
}
.em-cta__body { padding: 28px 26px; }
.em-cta__eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 12px;
  font-family: var(--em-font-display); font-size: 12px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: #8fe3ff;
}
.em-cta__title { color: #fff; font-size: clamp(21px, 2.8vw, 30px); margin-bottom: 9px; }
.em-cta__text { color: #c9d8ea; font-size: 14.5px; margin-bottom: 18px; max-width: 46ch; }
.em-cta__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.em-cta__media { position: relative; min-height: 176px; }
.em-cta__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.em-cta__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--em-navy-900) 0%, rgba(0,14,36,.4) 45%, rgba(0,14,36,.05) 100%);
}
@media (min-width: 780px) {
  .em-cta { grid-template-columns: 1.05fr .95fr; }
  .em-cta__body { padding: 36px 34px; }
  .em-cta__media { min-height: 100%; }
}

/* Imagen promocional de marca (ya trae su propio texto) */
.em-promo { margin: 26px 0 0; border-radius: var(--em-radius-md); overflow: hidden; border: 1px solid var(--em-line); }
.em-promo img { width: 100%; }
.em-promo__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
.em-promo__note { text-align: center; color: var(--em-muted); font-size: 13.5px; margin-top: 12px; }

/* ------------------------------ Sidebar ------------------------------ */
.em-sidebar { display: flex; flex-direction: column; gap: 28px; min-width: 0; }
@media (min-width: 1000px) { .em-sidebar__sticky { position: sticky; top: 66px; } }
.em-widget__head { display: flex; align-items: center; border-bottom: 2px solid var(--em-red); padding-bottom: 9px; margin-bottom: 16px; }
.em-widget__title { font-size: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.em-mostread { display: flex; flex-direction: column; gap: 15px; counter-reset: em-rank; }
.em-mostread__item { display: grid; grid-template-columns: 32px 1fr; gap: 13px; align-items: start; }
.em-mostread__item::before {
  counter-increment: em-rank; content: counter(em-rank);
  font-family: var(--em-font-display); font-size: 28px; font-weight: 700;
  color: var(--em-line-strong); line-height: 1;
}
.em-mostread__item:nth-child(-n+3)::before { color: var(--em-red); }
.em-mostread__title { font-size: 14.5px; font-weight: 500; color: var(--em-ink); }
.em-mostread__item:hover .em-mostread__title { color: var(--em-red); }
.em-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.em-tag {
  display: inline-block; padding: 6px 12px; background: var(--em-bg-soft);
  border: 1px solid var(--em-line); border-radius: 999px; font-size: 12.5px;
  color: var(--em-body); transition: all .18s;
}
.em-tag:hover { background: var(--em-navy); border-color: var(--em-navy); color: #fff; }
.em-social-row { display: flex; gap: 10px; }
.em-social-row a {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px;
  background: var(--em-bg-soft); color: var(--em-navy); transition: all .2s;
}
.em-social-row a:hover { background: var(--em-red); color: #fff; transform: translateY(-2px); }
.em-social-row svg { width: 18px; height: 18px; fill: currentColor; }
.em-clockbox {
  background: var(--em-navy-700); color: #fff; border-radius: var(--em-radius-md);
  padding: 18px; text-align: center;
}
.em-clockbox__time { font-family: var(--em-font-display); font-size: 30px; font-weight: 600; letter-spacing: .04em; }
.em-clockbox__date { font-size: 12.5px; color: #a9bcd2; margin-top: 4px; }

/* ------------------------------ Articulo ------------------------------ */
.em-article__breadcrumb { font-size: 12.5px; color: var(--em-muted); margin-bottom: 14px; display: flex; gap: 7px; flex-wrap: wrap; }
.em-article__breadcrumb a:hover { color: var(--em-red); }
.em-article__header { margin-bottom: 20px; }
.em-article__kicker {
  display: inline-block; background: var(--em-red); color: #fff;
  font-family: var(--em-font-display); font-size: 11px; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase; padding: 5px 11px; margin-bottom: 14px;
}
.em-article__title { font-size: clamp(27px, 4.8vw, 44px); line-height: 1.08; font-weight: 700; margin-bottom: 15px; }
.em-article__lead { font-size: 18px; color: #4b5158; line-height: 1.55; border-left: 3px solid var(--em-red); padding-left: 16px; }
.em-article__meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 15px;
  padding: 15px 0; margin-top: 18px;
  border-top: 1px solid var(--em-line); border-bottom: 1px solid var(--em-line);
  font-size: 13px; color: var(--em-muted);
}
.em-article__meta strong { color: var(--em-ink); font-weight: 600; }
.em-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--em-navy); color: #fff; display: grid; place-items: center; font-family: var(--em-font-display); font-weight: 600; }
.em-share { display: flex; gap: 8px; margin-left: auto; }
.em-share a { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--em-bg-soft); color: var(--em-body); transition: all .18s; }
.em-share a:hover { background: var(--em-red); color: #fff; }
.em-share svg { width: 16px; height: 16px; fill: currentColor; }
.em-article__figure { margin: 24px 0; }
.em-article__figure img { width: 100%; border-radius: var(--em-radius); }
.em-article__caption { font-size: 12.5px; color: var(--em-muted); margin-top: 9px; padding-bottom: 11px; border-bottom: 1px solid var(--em-line); }
.em-prose { font-family: var(--em-font-serif); font-size: 18px; line-height: 1.78; color: #23272d; }
.em-prose > * + * { margin-top: 21px; }
.em-prose p { margin: 0; }
.em-prose h2 { font-size: 25px; margin-top: 34px; font-family: var(--em-font-display); }
.em-prose h3 { font-size: 21px; margin-top: 28px; font-family: var(--em-font-display); }
.em-prose a { color: var(--em-red); text-decoration: underline; }
.em-prose blockquote { border-left: 4px solid var(--em-red); padding-left: 19px; font-style: italic; color: #4b5158; }
.em-prose img { margin: 23px auto; border-radius: var(--em-radius); }
.em-prose ul, .em-prose ol { padding-left: 23px; margin-top: 19px; }
.em-prose ul { list-style: disc; } .em-prose ol { list-style: decimal; }
.em-prose li + li { margin-top: 9px; }
.em-article__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 30px; }
.em-authorbox {
  display: flex; gap: 16px; align-items: center; margin-top: 32px;
  background: var(--em-bg-soft); border-radius: var(--em-radius-md); padding: 20px;
}
.em-authorbox__name { font-family: var(--em-font-display); font-size: 17px; color: var(--em-ink); font-weight: 600; }
.em-authorbox__desc { font-size: 13.5px; color: var(--em-muted); margin-top: 3px; }

/* ------------------------------ Paginacion ------------------------------ */
.em-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 36px; flex-wrap: wrap; }
.em-pagination a, .em-pagination span {
  min-width: 42px; height: 42px; display: grid; place-items: center; padding: 0 13px;
  border: 1px solid var(--em-line-strong); border-radius: var(--em-radius);
  font-size: 14px; font-weight: 500; transition: all .18s;
}
.em-pagination a:hover { border-color: var(--em-red); color: var(--em-red); }
.em-pagination .is-current { background: var(--em-red); border-color: var(--em-red); color: #fff; }

/* ------------------------------ Estados vacios ------------------------------ */
.em-empty { text-align: center; padding: 60px 20px; color: var(--em-muted); }
.em-empty__title { font-family: var(--em-font-display); font-size: 26px; color: var(--em-ink); margin-bottom: 8px; }

/* ------------------------------ Footer ------------------------------ */
.em-footer { background: var(--em-navy-900); color: #a3b2c4; margin-top: 24px; }
.em-footer__top { display: grid; gap: 30px; grid-template-columns: 1fr; padding: 44px 0; }
@media (min-width: 720px) { .em-footer__top { grid-template-columns: 1.5fr 1fr 1fr; } }
.em-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.em-footer__brand img { height: 48px; width: auto; }
.em-footer__brandname { font-family: var(--em-font-display); font-size: 21px; color: #fff; font-weight: 700; }
.em-footer__about { font-size: 14px; line-height: 1.65; max-width: 44ch; }
.em-footer__title { color: #fff; font-family: var(--em-font-display); font-size: 14px; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 15px; }
.em-footer__links { display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.em-footer__links a { transition: color .2s; }
.em-footer__links a:hover { color: #fff; }
.em-footer__bottom { border-top: 1px solid rgba(255,255,255,.09); padding: 17px 0; font-size: 12.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.em-footer__bottom a:hover { color: #fff; }

/* ------------------------------ Acciones flotantes (WhatsApp + Facebook) ------------------------------ */
.em-fabs {
  position: fixed; right: 16px; bottom: 16px; z-index: 80;
  display: flex; flex-direction: column; gap: 8px; align-items: flex-end;
}
.em-fab {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 12.5px; letter-spacing: .02em; text-transform: uppercase;
  padding: 9px 14px; border-radius: 999px; min-width: 134px;
  transition: transform .2s var(--em-ease), box-shadow .2s;
}
.em-fab:hover { transform: translateY(-2px) scale(1.03); }
.em-fab svg { width: 15px; height: 15px; fill: currentColor; flex: none; }
.em-fab--wa { background: #25d366; color: #06340f; box-shadow: 0 8px 20px -10px rgba(37,211,102,.9); }
.em-fab--fb { background: #1877f2; color: #ffffff; box-shadow: 0 8px 20px -10px rgba(24,119,242,.9); }
@media (max-width: 600px) { .em-fab span { display: none; } .em-fab { padding: 11px; min-width: 0; } }

/* ------------------------------ Franja EN VIVO ------------------------------ */
.em-livebar { background: linear-gradient(90deg, var(--em-navy) 0%, var(--em-navy-600) 100%); color: #fff; }
.em-livebar__inner { display: flex; align-items: center; gap: 14px; min-height: 52px; flex-wrap: wrap; }
.em-livebar__text { font-size: 14px; color: #cddcee; }
.em-livebar__text b { color: #fff; }
.em-livebar .em-btn { margin-left: auto; }
@media (max-width: 620px) { .em-livebar__text { display: none; } .em-livebar .em-btn { margin-left: auto; } }

/* ------------------------------ Pagina EN VIVO ------------------------------ */
.em-live-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--em-red); color: #fff;
  font-family: var(--em-font-display); font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px;
}
.em-live-badge--off { background: var(--em-bg-tint); color: var(--em-muted); }
.em-live-grid { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 980px) { .em-live-grid { grid-template-columns: 1.35fr .65fr; } }
.em-frame {
  position: relative; border-radius: var(--em-radius-md); overflow: hidden;
  background: var(--em-navy-900); border: 1px solid var(--em-line);
}
.em-frame iframe { display: block; width: 100%; border: 0; }
.em-frame--fb iframe { height: 500px; background: var(--em-bg); }
.em-panel {
  background: var(--em-bg-soft); border: 1px solid var(--em-line);
  border-radius: var(--em-radius-md); padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.em-panel__title { font-size: 17px; }
.em-panel__text { font-size: 14px; color: var(--em-muted); }
.em-live-list { display: flex; flex-direction: column; gap: 10px; }
.em-live-list a {
  display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500;
  padding: 11px 13px; border-radius: var(--em-radius); background: var(--em-bg);
  border: 1px solid var(--em-line); transition: all .18s;
}
.em-live-list a:hover { border-color: var(--em-navy); transform: translateX(2px); }
.em-live-list svg { width: 18px; height: 18px; fill: currentColor; flex: none; }

/* ------------------------------ Reproductor de radio ------------------------------ */
.em-radio {
  background: var(--em-bg); border: 1px solid var(--em-line);
  border-radius: var(--em-radius-md); overflow: hidden;
}
.em-radio__head {
  display: flex; align-items: center; gap: 13px; padding: 15px 17px;
  background: linear-gradient(135deg, var(--em-navy) 0%, var(--em-navy-900) 100%);
  color: #fff;
}
.em-radio__logo {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  background: #fff; padding: 2px; object-fit: contain;
}
.em-radio__name { font-family: var(--em-font-display); font-size: 17px; font-weight: 600; color: #fff; line-height: 1.15; }
.em-radio__sub { font-size: 11.5px; color: #9fb6d0; letter-spacing: .04em; text-transform: uppercase; margin-top: 2px; }
.em-radio__head .em-live-badge { margin-left: auto; }
.em-radio__frame { background: #ffffff; padding: 0; }
.em-radio__frame iframe { display: block; width: 100%; height: 168px; border: 0; }
.em-radio__stations { padding: 15px 17px; border-top: 1px solid var(--em-line); }
.em-radio__stations-title {
  display: block; font-family: var(--em-font-display); font-size: 11.5px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--em-muted); margin-bottom: 10px;
}
.em-radio__chips { display: flex; flex-wrap: wrap; gap: 8px; }
.em-chip {
  padding: 7px 13px; border-radius: 999px; font-size: 13px; font-weight: 500;
  background: var(--em-bg-soft); border: 1px solid var(--em-line); color: var(--em-body);
  transition: all .18s; cursor: pointer;
}
.em-chip:hover { border-color: var(--em-navy); color: var(--em-navy); }
.em-chip.is-active { background: var(--em-red); border-color: var(--em-red); color: #fff; }
.em-app[data-em-theme="dark"] .em-radio__frame { background: #ffffff; }
.em-app[data-em-theme="dark"] .em-chip:hover { border-color: #fff; color: #fff; }

/* ------------------------------ Utilidades ------------------------------ */
.em-mt-2 { margin-top: 2rem; }
.em-hidden { display: none !important; }
.em-card__media img.is-loading { opacity: 0; }
.em-card__media img.is-ready { opacity: 1; transition: opacity .35s; }

/* ------------------------------ Tema oscuro ------------------------------ */
.em-app[data-em-theme="dark"] {
  --em-ink: #eef2f7;
  --em-body: #c2cad5;
  --em-muted: #8b94a1;
  --em-line: #1d2530;
  --em-line-strong: #34404f;
  --em-bg: #070b12;
  --em-bg-soft: #10161f;
  --em-bg-tint: #0d141d;
  --em-ad-bg: #14120c;
  --em-ad-line: #3a3218;
  color: var(--em-body);
  background: var(--em-bg);
}
.em-app[data-em-theme="dark"] .em-masthead { background: #0a0f17; border-bottom-color: var(--em-line); }
.em-app[data-em-theme="dark"] .em-masthead::before {
  background:
    radial-gradient(120% 200% at 10% -50%, rgba(30,136,229,.16), transparent 58%),
    radial-gradient(90% 170% at 100% -10%, rgba(192,32,32,.14), transparent 52%);
}
.em-app[data-em-theme="dark"] .em-masthead__wm {
  background-image: linear-gradient(100deg,
    rgba(255,255,255,.13) 0%, rgba(255,255,255,.40) 50%, rgba(255,255,255,.13) 100%);
}
.em-app[data-em-theme="dark"] .em-brand__name { color: #ffffff; }
.em-app[data-em-theme="dark"] .em-brand__logo { filter: brightness(1.04); }
.em-app[data-em-theme="dark"] .em-topbar { background: #04070c; }
.em-app[data-em-theme="dark"] .em-nav { background: linear-gradient(180deg, #0a1424 0%, #050b15 100%); }
.em-app[data-em-theme="dark"] .em-btn--ghost { background: #10161f; color: #e6ecf4; }
.em-app[data-em-theme="dark"] .em-prose { color: #c6ced9; }
.em-app[data-em-theme="dark"] .em-article__lead { color: #b6bfcb; }
.em-app[data-em-theme="dark"] .em-card__media { background: var(--em-bg-soft); }
.em-app[data-em-theme="dark"] .em-authorbox { background: #10161f; }
.em-app[data-em-theme="dark"] .em-footer { background: #04070c; }
.em-app[data-em-theme="dark"] .em-section-head { border-bottom-color: #eef2f7; }
.em-app[data-em-theme="dark"] .em-clockbox { background: #10161f; }
.em-app[data-em-theme="dark"] .em-ad::before { color: #d9c184; }
.em-app[data-em-theme="dark"] .em-ad__placeholder,
.em-app[data-em-theme="dark"] .em-ad__note { color: #b9a976; }
.em-app[data-em-theme="dark"] .em-social-row a { background: #10161f; color: #cfe0f5; }
.em-app[data-em-theme="dark"] .em-avatar { background: var(--em-navy-600); }
.em-app[data-em-theme="dark"] .em-brand__tag { color: #ff6f68; }

/* ==========================================================================
   Integracion con el tema de Blogger (secciones, widgets y utilidades)
   ========================================================================== */

/* La seccion de Blogger que envuelve el menu no debe romper el flex */
.em-nav__scroll > .section,
.em-nav__scroll > div[id="header"] { display: contents; }

/* Contenido del widget Blog a ancho completo */
.em-main-section,
.em-main-section > .widget,
.em-main-section .widget-content { display: block; width: 100%; }

/* Formulario de busqueda del sidebar */
.em-sform { display: flex; gap: 8px; }
.em-sform input {
  flex: 1; min-width: 0; padding: 10px 12px;
  border: 1px solid var(--em-line-strong); border-radius: var(--em-radius);
  background: var(--em-bg); color: var(--em-body); font-size: 14px; outline: 0;
}
.em-sform input:focus { border-color: var(--em-navy); }
.em-sform button {
  padding: 10px 15px; background: var(--em-red); color: #fff;
  border-radius: var(--em-radius); font-weight: 600; font-size: 13px;
  font-family: var(--em-font-display); letter-spacing: .04em; text-transform: uppercase;
}
.em-sform button:hover { background: var(--em-red-dark); }

/* La tarjeta destacada ocupa todo el ancho cuando va sola */
.em-content > .em-card--xl { width: 100%; }

/* Secciones ocultas de servicio (requeridas por Blogger) */
.em-hidden { display: none !important; }

/* ==========================================================================
   AISLAMIENTO TOTAL del tema original de Bison
   ========================================================================== */

/* 1) Ocultar TODOS los widgets de Bison salvo los nuestros */
.em-app .widget:not(#PageList51):not(#Blog1) { display: none !important; }
.em-app #header > .widget:not(#PageList51) { display: none !important; }

/* 2) Ocultar el resto del chrome de Bison que no usamos */
.em-app #tools,
.em-app #before-content,
.em-app #after-content,
.em-app #upper,
.em-app #Hero,
.em-app #search,
.em-app #bjs,
.em-app .footer.layout-section,
.em-app #footer-upper,
.em-app .footer-copyright,
.em-app .footer-widgets-area,
.em-app .footer-lower,
.em-app .breaking,
.em-app .blog-hero,
.em-app .sidebar { display: none !important; }

/* 2) Neutralizar el armazon y sus estilos heredados */
.em-app .template { font-size: 16px !important; padding: 0 !important; overflow: visible !important; }
.em-app .template-content {
  box-shadow: none !important; padding: 0 !important;
  max-width: none !important; min-height: 0 !important; display: block !important;
}
.em-app .main { background: transparent !important; padding: 0 !important; display: block !important; }
.em-app .blog { display: block !important; gap: 0 !important; }
.em-app .content { gap: 0 !important; }
.em-app .header { background: transparent !important; padding: 0 !important; }
.em-app .section { background: transparent !important; padding: 0 !important; margin: 0 !important; }
.em-app .widget { background: transparent !important; box-shadow: none !important; border: 0 !important; }
.em-app .widget > .widget-content { padding: 0 !important; }

/* 3) Tipografia y texto bajo nuestro control */
.em-app {
  font-family: var(--em-font-body) !important;
  -webkit-hyphens: none !important;
  hyphens: none !important;
  word-break: normal !important;
}

