/* ============================================================
   Radio Armería Premium 10.0.0
   React editorial news + professional article/archive surfaces
   ============================================================ */

.ra-react-news,
.ra-react-news * {
  box-sizing: border-box;
}

.ra-react-news {
  --ra-news-yellow: #ffd400;
  --ra-news-gold: #efa900;
  --ra-news-orange: #ff8b17;
  --ra-news-ink: #111111;
  --ra-news-cream: #fff8e6;
  --ra-news-radius: 24px;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1320px;
  margin: 18px auto 42px;
  padding: 0 18px;
  font-family: Montserrat, Arial, sans-serif;
}

.ra-rnews-shell {
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.48), transparent 25%),
    radial-gradient(circle at 94% 12%, rgba(255,244,168,.36), transparent 22%),
    linear-gradient(135deg, #ffdd17 0%, #ffc700 46%, #efa000 100%);
  box-shadow:
    0 24px 55px rgba(105, 62, 0, .20),
    inset 0 1px 0 rgba(255,255,255,.54);
  padding: 22px;
}

.ra-rnews-shell::before,
.ra-rnews-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.ra-rnews-shell::before {
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 12%, rgba(255,255,255,.09) 12.4% 13%, transparent 13.4% 34%, rgba(255,255,255,.07) 34.4% 35%, transparent 35.4% 100%);
  opacity: .9;
}

.ra-rnews-shell::after {
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -280px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(255,255,255,.035), 0 0 0 86px rgba(255,255,255,.025);
}

.ra-rnews-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 18px;
  padding: 0 2px;
}

.ra-rnews-header > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ra-rnews-eyebrow,
.ra-rnews-header h2 {
  margin: 0 !important;
}

.ra-rnews-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.90);
  color: #8b4e00;
  box-shadow: 0 8px 18px rgba(111, 61, 0, .13), inset 0 1px 0 #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ra-rnews-header h2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 20px;
  border-radius: 10px 10px 14px 14px;
  background: #070707;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.20), inset 0 1px 0 rgba(255,255,255,.10);
  font-size: clamp(17px, 1.75vw, 23px);
  font-weight: 1000;
  letter-spacing: -.02em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.ra-rnews-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #3f2600;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ra-rnews-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ef3157;
  box-shadow: 0 0 0 5px rgba(239,49,87,.14);
  animation: ra-rnews-pulse 1.8s ease-in-out infinite;
}

@keyframes ra-rnews-pulse {
  0%, 100% { transform: scale(.92); opacity: .78; }
  50% { transform: scale(1.12); opacity: 1; }
}

.ra-rnews-mosaic {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(230px, .70fr) minmax(270px, .78fr);
  grid-template-rows: 184px 184px;
  grid-template-areas:
    "lead mid1 side"
    "lead mid2 side";
  gap: 14px;
}

.ra-rnews-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ra-rnews-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  min-height: 184px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 20px;
  background: #15100c;
  box-shadow: 0 15px 30px rgba(66, 39, 0, .22), inset 0 1px 0 rgba(255,255,255,.10);
  transform: translateZ(0);
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
}

.ra-rnews-card--slot-1 { grid-area: lead; min-height: 382px; }
.ra-rnews-card--slot-2 { grid-area: mid1; }
.ra-rnews-card--slot-3 { grid-area: mid2; }
.ra-rnews-card--slot-4 { grid-area: side; min-height: 382px; }

.ra-rnews-card:hover,
.ra-rnews-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.66);
  box-shadow: 0 22px 42px rgba(61, 35, 0, .28), inset 0 1px 0 rgba(255,255,255,.18);
}

.ra-rnews-card__media,
.ra-rnews-card__media img,
.ra-rnews-card__shade {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.ra-rnews-card__media {
  z-index: 0;
}

.ra-rnews-card__media img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  filter: saturate(1.02) contrast(1.02);
  transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}

.ra-rnews-card:hover .ra-rnews-card__media img,
.ra-rnews-card:focus-within .ra-rnews-card__media img {
  transform: scale(1.075);
  filter: saturate(1.10) contrast(1.04);
}

.ra-rnews-card__shade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02) 0%, rgba(0,0,0,.07) 32%, rgba(0,0,0,.88) 100%),
    linear-gradient(90deg, rgba(0,0,0,.24), transparent 62%);
}

.ra-rnews-card__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px;
  color: #fff;
}

.ra-rnews-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
}

.ra-rnews-card__category {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 25px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #e46e00;
  box-shadow: 0 6px 14px rgba(0,0,0,.16);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .025em;
  line-height: 1;
  text-transform: uppercase;
}

.ra-rnews-card__category i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff9b22;
}

.ra-rnews-card__meta time {
  color: rgba(255,255,255,.78);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.ra-rnews-card h3 {
  width: 100%;
  margin: 0 !important;
  color: #fff;
  font-size: clamp(15px, 1.25vw, 19px);
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: 1.13;
}

.ra-rnews-card.is-lead h3 {
  max-width: 92%;
  font-size: clamp(24px, 2.1vw, 34px);
  line-height: 1.08;
}

.ra-rnews-card--slot-4 h3 {
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.08;
}

.ra-rnews-card h3 a {
  color: inherit !important;
  text-decoration: none !important;
  text-shadow: 0 3px 15px rgba(0,0,0,.45);
}

.ra-rnews-card p {
  display: -webkit-box;
  overflow: hidden;
  width: 100%;
  margin: 0 !important;
  color: rgba(255,255,255,.88);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ra-rnews-card.is-lead p {
  max-width: 88%;
  font-size: 13px;
}

.ra-rnews-card__action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  color: #fff !important;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.ra-rnews-card__action b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  background: #ffd400;
  color: #111;
  font-size: 12px;
  transition: transform .25s ease;
}

.ra-rnews-card:hover .ra-rnews-card__action b,
.ra-rnews-card:focus-within .ra-rnews-card__action b {
  transform: rotate(12deg) translate(1px, -1px);
}

/* + Noticias */
.ra-react-news--more .ra-rnews-shell {
  background:
    radial-gradient(circle at 90% 0%, rgba(255,224,69,.17), transparent 28%),
    linear-gradient(180deg, #fffdf7 0%, #fff8e5 100%);
  border-color: rgba(255, 190, 0, .28);
  box-shadow: 0 22px 50px rgba(61, 43, 9, .12), inset 0 1px 0 #fff;
}

.ra-react-news--more .ra-rnews-shell::before {
  opacity: .34;
}

.ra-react-news--more .ra-rnews-shell::after {
  border-color: rgba(255,183,0,.14);
  box-shadow: 0 0 0 42px rgba(255,183,0,.025), 0 0 0 86px rgba(255,183,0,.018);
}

.ra-react-news--more .ra-rnews-live {
  color: #6c4a00;
}

.ra-react-news--more .ra-rnews-card {
  min-height: 360px;
  border-color: rgba(26,20,9,.08);
  background: #16110c;
  box-shadow: 0 14px 32px rgba(48, 35, 11, .15);
}

.ra-react-news--more .ra-rnews-card__media {
  height: 56%;
}

.ra-react-news--more .ra-rnews-card__shade {
  background:
    linear-gradient(180deg, transparent 0%, transparent 35%, rgba(255,255,255,.10) 55%, #fffaf0 56%, #fffaf0 100%);
}

.ra-react-news--more .ra-rnews-card__content {
  top: 52%;
  bottom: 0;
  justify-content: flex-start;
  padding: 18px;
  color: #18140f;
}

.ra-react-news--more .ra-rnews-card__meta time {
  color: #7d6b4e;
}

.ra-react-news--more .ra-rnews-card h3 {
  color: #15110c;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.14;
}

.ra-react-news--more .ra-rnews-card h3 a {
  text-shadow: none;
}

.ra-react-news--more .ra-rnews-card p {
  color: #6a5c48;
  font-size: 12px;
  -webkit-line-clamp: 2;
}

.ra-react-news--more .ra-rnews-card__action {
  margin-top: auto;
  color: #17120b !important;
}

.ra-rnews-load-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.ra-rnews-load {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: #0d0d0d;
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.10);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .025em;
  transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.ra-rnews-load b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffd400;
  color: #111;
}

.ra-rnews-load:hover:not(:disabled),
.ra-rnews-load:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0,0,0,.21), inset 0 1px 0 rgba(255,255,255,.14);
}

.ra-rnews-load:disabled {
  cursor: wait;
  opacity: .72;
}

.ra-rnews-status {
  position: relative;
  z-index: 2;
  margin: 18px 0 0 !important;
  color: #7a2d20;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.ra-rnews-status--done {
  color: #7d6b4e;
}

/* Ocultar módulo de solicitudes: respaldo visual para Elementor guardado. */
html body .ra-song-request-hidden,
html body [data-ra-song-request-hidden="1"] {
  display: none !important;
}

/* ============================================================
   Páginas de notas, archivo y búsqueda con acabado premium
   ============================================================ */
.single .elty-container,
.archive .elty-container,
.search .elty-container,
.blog .elty-container {
  width: min(1280px, calc(100% - 32px));
  max-width: 1280px;
  margin-inline: auto;
  gap: 28px;
}

.single .elty-main,
.archive .elty-main,
.search .elty-main,
.blog .elty-main {
  min-width: 0;
}

.single .post-hero {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.30);
  border-radius: 30px;
  box-shadow: 0 22px 52px rgba(39, 24, 5, .20);
}

.single .post-header {
  padding: clamp(24px, 4vw, 54px) !important;
}

.single .post-header h1 {
  max-width: 980px;
  margin-top: 14px !important;
  font-size: clamp(32px, 4.4vw, 62px) !important;
  line-height: 1.03 !important;
  letter-spacing: -.045em !important;
}

.single .post-content {
  position: relative;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 52px) !important;
  border: 1px solid rgba(27, 20, 8, .08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(47, 35, 13, .10);
  color: #2d2923;
  font-size: 17px;
  line-height: 1.85;
}

.single .post-content > p:first-of-type::first-letter {
  float: left;
  margin: .10em .14em 0 0;
  color: #df7b00;
  font-size: 4.4em;
  font-weight: 950;
  line-height: .78;
}

.single .post-content h2,
.single .post-content h3,
.single .post-content h4 {
  color: #15120e;
  letter-spacing: -.025em;
  line-height: 1.18;
}

.single .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0,0,0,.10);
}

.single .elty-aside .widget,
.archive .sidebar .widget,
.search .sidebar .widget,
.blog .sidebar .widget,
.single .elty-aside > * {
  overflow: hidden;
  border: 1px solid rgba(27,20,8,.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(47,35,13,.08);
}

.archive .elty-main__header,
.search .elty-main__header,
.blog .elty-main__header {
  margin-bottom: 24px;
  padding: 24px 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, #111 0%, #21170b 100%);
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
}

.archive .elty-main__title,
.search .elty-main__title,
.blog .elty-main__title {
  margin: 0 !important;
  color: #fff !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  letter-spacing: -.04em;
}

.archive .elty-main__content,
.search .elty-main__content,
.blog .elty-main__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.archive .archive-item,
.search .archive-item,
.blog .archive-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  margin: 0 !important;
  border: 1px solid rgba(30,22,8,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(48,35,11,.10);
  transition: transform .3s ease, box-shadow .3s ease;
}

.archive .archive-item:hover,
.search .archive-item:hover,
.blog .archive-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(48,35,11,.15);
}

.archive .archive-item__thumbnail,
.search .archive-item__thumbnail,
.blog .archive-item__thumbnail {
  width: 100% !important;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.archive .archive-item__thumbnail a,
.search .archive-item__thumbnail a,
.blog .archive-item__thumbnail a,
.archive .archive-item__thumbnail img,
.search .archive-item__thumbnail img,
.blog .archive-item__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
}

.archive .archive-item__thumbnail img,
.search .archive-item__thumbnail img,
.blog .archive-item__thumbnail img {
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.7,.2,1);
}

.archive .archive-item:hover .archive-item__thumbnail img,
.search .archive-item:hover .archive-item__thumbnail img,
.blog .archive-item:hover .archive-item__thumbnail img {
  transform: scale(1.06);
}

.archive .archive-item__body,
.search .archive-item__body,
.blog .archive-item__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px !important;
}

.archive-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #8a7655;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.archive-item__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: #fff2c5;
  color: #b65f00;
}

.archive .archive-item__title,
.search .archive-item__title,
.blog .archive-item__title {
  margin: 0 0 12px !important;
  font-size: clamp(20px, 1.8vw, 28px) !important;
  line-height: 1.14 !important;
  letter-spacing: -.03em;
}

.archive .archive-item__title a,
.search .archive-item__title a,
.blog .archive-item__title a {
  color: #17130e !important;
  text-decoration: none !important;
}

.archive .archive-item__excerpt,
.search .archive-item__excerpt,
.blog .archive-item__excerpt {
  color: #716653;
  font-size: 13px;
  line-height: 1.65;
}

.archive-item__read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  color: #15110d !important;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-decoration: none !important;
  text-transform: uppercase;
}

.archive-item__read b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #ffd400;
}

@media (max-width: 1100px) {
  .ra-rnews-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 300px 210px 240px;
    grid-template-areas:
      "lead lead"
      "mid1 mid2"
      "side side";
  }

  .ra-rnews-card--slot-1,
  .ra-rnews-card--slot-4 {
    min-height: 0;
  }

  .ra-rnews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .ra-react-news {
    margin-bottom: 30px;
    padding: 0 12px;
  }

  .ra-rnews-shell {
    padding: 16px;
    border-radius: 24px;
  }

  .ra-rnews-header {
    align-items: flex-start;
  }

  .ra-rnews-header > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .ra-rnews-header h2 {
    white-space: normal;
  }

  .single .elty-container,
  .archive .elty-container,
  .search .elty-container,
  .blog .elty-container {
    width: min(100% - 20px, 1280px);
  }

  .archive .elty-main__content,
  .search .elty-main__content,
  .blog .elty-main__content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ra-rnews-header {
    gap: 10px;
  }

  .ra-rnews-live {
    display: none;
  }

  .ra-rnews-eyebrow {
    min-height: 30px;
    padding-inline: 13px;
  }

  .ra-rnews-header h2 {
    min-height: 36px;
    padding: 0 15px;
    font-size: 18px;
  }

  .ra-rnews-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: 330px 215px 215px 275px;
    grid-template-areas:
      "lead"
      "mid1"
      "mid2"
      "side";
    gap: 12px;
  }

  .ra-rnews-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ra-rnews-card,
  .ra-react-news--more .ra-rnews-card {
    border-radius: 18px;
  }

  .ra-rnews-card__content {
    padding: 16px;
  }

  .ra-rnews-card.is-lead h3 {
    max-width: 100%;
    font-size: 24px;
  }

  .ra-rnews-card--slot-4 h3 {
    font-size: 21px;
  }

  .ra-react-news--more .ra-rnews-card {
    min-height: 345px;
  }

  .single .post-content {
    padding: 22px !important;
    border-radius: 22px;
    font-size: 16px;
  }

  .single .post-header h1 {
    font-size: 34px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ra-rnews-live i,
  .ra-rnews-card,
  .ra-rnews-card__media img,
  .ra-rnews-load,
  .archive .archive-item,
  .search .archive-item,
  .blog .archive-item,
  .archive .archive-item__thumbnail img,
  .search .archive-item__thumbnail img,
  .blog .archive-item__thumbnail img {
    animation: none !important;
    transition: none !important;
  }
}

/* ============================================================
   Radio Armería Premium 10.0.3
   Rotación automática por módulo sin mezclar noticias nuevas y antiguas
   ============================================================ */
.ra-rnews-rotator .ra-rnews-card {
  animation: ra-rnews-card-in .62s cubic-bezier(.2,.72,.2,1);
}

.ra-rnews-rotator .ra-rnews-card:nth-child(2) { animation-delay: .055s; }
.ra-rnews-rotator .ra-rnews-card:nth-child(3) { animation-delay: .11s; }
.ra-rnews-rotator .ra-rnews-card:nth-child(4) { animation-delay: .165s; }

@keyframes ra-rnews-card-in {
  from { opacity: .18; transform: translateY(8px) scale(.988); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* En + Noticias se muestran cuatro tarjetas y las demás entran por rotación. */
.ra-react-news--more .ra-rnews-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Evita un destello de todas las entradas antes de que React monte el carrusel. */
.ra-react-news--more .ra-rnews-grid .ra-rnews-card:nth-child(n+5) {
  display: none;
}

@media (max-width: 1100px) {
  .ra-react-news--more .ra-rnews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .ra-react-news--more .ra-rnews-grid .ra-rnews-card:nth-child(n+3) {
    display: none;
  }
}

@media (max-width: 640px) {
  .ra-react-news--more .ra-rnews-grid {
    grid-template-columns: 1fr;
  }
  .ra-react-news--more .ra-rnews-grid .ra-rnews-card:nth-child(n+2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ra-rnews-rotator .ra-rnews-card {
    animation: none !important;
  }
}


/* ============================================================
   Radio Armería Premium 10.0.4
   Rotación corregida: funciona aun con 4 tarjetas visibles,
   sin pausa por hover y con respaldo cuando React no monta.
   ============================================================ */
.ra-rnews-mosaic.is-rotating-now .ra-rnews-card,
.ra-rnews-grid.is-rotating-now .ra-rnews-card {
  animation: ra-rnews-card-in .58s cubic-bezier(.2,.72,.2,1);
}

.ra-rnews-shell[data-ra-rotation-active="true"]::before {
  will-change: opacity;
}

/* ============================================================
   Radio Armería Premium 10.0.5
   Rotación real del mosaico original y títulos de nota seguros
   ============================================================ */
.ra-news-primary-legacy .slider-item,
.ra-news-more-grid > .related-item,
.ra-news-more-grid > .elty-item,
.ra-news-more-grid > .swiper-slide {
  will-change: opacity, transform;
  transition: opacity .28s ease, transform .28s ease, filter .28s ease !important;
}

.ra-news-primary-legacy .slider-item.ra-news-swap-out,
.ra-news-more-grid > .ra-news-swap-out {
  opacity: 0 !important;
  transform: translateY(10px) scale(.985) !important;
  filter: blur(2px) !important;
}

.ra-news-primary-legacy .slider-item.ra-news-swap-in,
.ra-news-more-grid > .ra-news-swap-in {
  animation: ra-news-real-enter .58s cubic-bezier(.2,.72,.2,1) both !important;
}

.ra-news-more-grid > [hidden] {
  display: none !important;
}

@keyframes ra-news-real-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.982);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* El título completo debe permanecer dentro del hero de la nota. */
body.single-post .post-hero,
body.single .post-hero {
  height: auto !important;
  min-height: 420px !important;
  overflow: hidden !important;
  padding: 0 !important;
  justify-content: flex-end !important;
}

body.single-post .post-hero .post-header,
body.single .post-hero .post-header {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(28px, 4vw, 46px) !important;
  overflow: visible !important;
}

body.single-post .post-hero .post-header h1,
body.single .post-hero .post-header h1 {
  display: block !important;
  width: 100% !important;
  max-width: 980px !important;
  margin: 10px 0 18px !important;
  padding: 0 !important;
  overflow: visible !important;
  color: #fff !important;
  font-size: clamp(30px, 3.15vw, 48px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  letter-spacing: -.035em !important;
  text-transform: none !important;
  text-wrap: balance;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: auto;
}

body.single-post .post-hero .post-meta,
body.single .post-hero .post-meta {
  position: relative !important;
  z-index: 2 !important;
  flex-wrap: wrap !important;
  gap: 12px 20px !important;
}

@media (max-width: 820px) {
  body.single-post .post-hero,
  body.single .post-hero {
    min-height: 360px !important;
  }

  body.single-post .post-hero .post-header,
  body.single .post-hero .post-header {
    padding: 24px !important;
  }

  body.single-post .post-hero .post-header h1,
  body.single .post-hero .post-header h1 {
    margin-top: 8px !important;
    font-size: clamp(27px, 7.4vw, 38px) !important;
    line-height: 1.1 !important;
    letter-spacing: -.03em !important;
  }
}

@media (max-width: 480px) {
  body.single-post .post-hero,
  body.single .post-hero {
    min-height: 330px !important;
    border-radius: 22px !important;
  }

  body.single-post .post-hero .post-header,
  body.single .post-hero .post-header {
    padding: 20px !important;
  }

  body.single-post .post-hero .post-header h1,
  body.single .post-hero .post-header h1 {
    font-size: clamp(25px, 8.2vw, 34px) !important;
  }
}
