/* =========================================================
   SacaCuentas.com — Artículo (tpl/post.shtml)
   Hoja de estilos independiente de css/style.css: solo lo que
   necesita el despliegue de un artículo (tipografía larga, cita,
   compartir, temas). Usa las variables de color/tipografía ya
   definidas en style.css, que se carga antes que este archivo.
   ========================================================= */

.articulo{ padding-top: 32px; }

/* ---------- Encabezado ---------- */
/* Vive dentro de .articulo-cuerpo (misma columna que la foto), no a todo
   el ancho: así el sidebar arranca alineado con el título. */
.articulo-header{ margin: 0 0 24px; }
.articulo-kicker{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--gris-lema);
  margin: 0 0 14px;
}
.articulo-kicker time{ color: var(--gris-lema); }
.articulo-kicker-sep{ color: var(--borde); }

.articulo-titulo{
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  margin: 0 0 14px;
}
.articulo-bajada{
  font-size: 17px;
  line-height: 1.55;
  color: #47566B;
  margin: 0 0 20px;
}

.articulo-autor{
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--borde);
}
.articulo-autor img{
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.articulo-autor-nombre{
  display: block;
  font-weight: 700;
  color: var(--azul-oscuro);
  font-size: 15px;
}
.articulo-autor-nombre:hover{ color: var(--azul-claro); }
.articulo-autor-fecha{
  display: block;
  font-size: 13px;
  color: var(--gris-lema);
  margin-top: 2px;
}

/* ---------- Imagen principal ---------- */
.articulo-media{
  margin: 0 0 24px;
  border-radius: var(--radio);
  overflow: hidden;
  box-shadow: var(--sombra);
}
.articulo-media img{
  width: 100%;
  height: auto;
  display: block;
}
.articulo-media figcaption{
  padding: 10px 4px 0;
  font-size: 12.5px;
  color: var(--gris-lema);
}

/* ---------- Compartir ---------- */
.articulo-compartir{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--borde);
}
.articulo-compartir-label{
  font-size: 13px;
  font-weight: 700;
  color: var(--azul-oscuro);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.articulo-compartir a{
  display: inline-block;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--borde);
  font-size: 13px;
  font-weight: 600;
  color: var(--azul-oscuro);
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.articulo-compartir a:hover{
  background: var(--azul-oscuro);
  border-color: var(--azul-oscuro);
  color: #fff;
}

/* ---------- Cuerpo del artículo ---------- */
.articulo-texto{
  font-size: 17px;
  line-height: 1.75;
  color: var(--texto);
}
.articulo-texto > *:first-child{ margin-top: 0; }
.articulo-texto p{ margin: 0 0 22px; }
.articulo-texto h2{
  font-size: 24px;
  margin: 36px 0 16px;
}
.articulo-texto h3{
  font-size: 19px;
  margin: 28px 0 12px;
}
.articulo-texto ul,
.articulo-texto ol{
  margin: 0 0 22px;
  padding-left: 22px;
}
.articulo-texto li{ margin-bottom: 8px; }
.articulo-texto a{
  color: var(--azul-medio);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.articulo-texto a:hover{ color: var(--azul-claro); }
.articulo-texto strong{ color: var(--azul-oscuro); }

.articulo-texto figure{
  margin: 28px 0;
}
.articulo-texto figure img{
  width: 100%;
  height: auto;
  border-radius: var(--radio);
  display: block;
}
.articulo-texto figcaption{
  padding-top: 8px;
  font-size: 13px;
  color: var(--gris-lema);
  text-align: center;
}

.articulo-texto blockquote{
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 4px solid var(--verde);
  background: var(--superficie);
  border-radius: 0 var(--radio) var(--radio) 0;
  font-size: 18px;
  font-style: italic;
  color: var(--azul-oscuro);
}
.articulo-texto blockquote p{ margin: 0 0 8px; }
.articulo-texto blockquote p:last-child{ margin-bottom: 0; }
.articulo-texto blockquote .blockquoteAutor{
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--gris-lema);
}

/* Anuncios intercalados en el cuerpo (se inyectan como <ins class="adsbygoogle">
   entre párrafos vía las variables ads_Nparrafos del contenido). */
.articulo-texto ins.adsbygoogle{
  display: block;
  margin: 28px auto;
  text-align: center;
}

/* ---------- Temas / tags ---------- */
.articulo-temas{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
}
.articulo-temas-label{
  font-size: 13px;
  font-weight: 700;
  color: var(--azul-oscuro);
  text-transform: uppercase;
  letter-spacing: .03em;
}
.articulo-temas a{
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--superficie);
  color: var(--azul-medio);
  font-size: 13px;
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}
.articulo-temas a:hover{ background: var(--azul-oscuro); color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 720px){
  .articulo-titulo{ font-size: 26px; }
  .articulo-bajada{ font-size: 15.5px; }
  .articulo-texto{ font-size: 16px; }
  .articulo-texto blockquote{ font-size: 16px; padding: 16px 18px; }
}


/******** CUSTOM *********/

.post-trivia {
  display: grid;
  gap: 20px;
  margin: 34px 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(18, 56, 79, 0.06), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
  box-shadow: 0 22px 48px rgba(18, 56, 79, 0.11);
}

.post-trivia__header {
  display: grid;
  gap: 8px;
}

.post-trivia__kicker,
.post-trivia__result-kicker {
  margin: 0;
  color: var(--azul-oscuro);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.post-trivia__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.12;
}

.post-trivia__intro {
  max-width: 62ch;
  margin: 0;
  color: var(--gris-lema);
  font-size: 1rem;
  line-height: 1.65;
}

.post-trivia__progress {
  display: grid;
  gap: 10px;
}

.post-trivia__progress-text,
.post-trivia__score {
  margin: 0;
  color: var(--gris-lema);
  font-size: 0.92rem;
  font-weight: 700;
}

.post-trivia__progress-track {
  display: block;
  width: 100%;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(18, 56, 79, 0.1);
}

.post-trivia__progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--azul-oscuro), var(--accent));
  transition: width 0.28s ease;
}

.post-trivia__question {
  display: grid;
  gap: 18px;
}

.post-trivia__question-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.22rem, 2vw, 1.62rem);
  line-height: 1.25;
}

.post-trivia__options {
  display: grid;
  gap: 12px;
}

.post-trivia__option {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(18, 56, 79, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(18, 56, 79, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.post-trivia__option:hover,
.post-trivia__option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(143, 60, 42, 0.34);
  box-shadow: 0 16px 30px rgba(18, 56, 79, 0.1);
  outline: none;
}

.post-trivia__option:disabled {
  cursor: default;
  opacity: 0.86;
}

.post-trivia__option:disabled:hover {
  transform: none;
}

.post-trivia__option.is-correct {
  border-color: rgba(20, 128, 83, 0.5);
  background: rgba(230, 248, 239, 0.94);
}

.post-trivia__option.is-wrong {
  border-color: rgba(184, 61, 46, 0.5);
  background: rgba(255, 237, 232, 0.96);
}

.post-trivia__option-letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(18, 56, 79, 0.08);
  color: var(--azul-oscuro);
  font-weight: 800;
}

.post-trivia__option-text {
  min-width: 0;
  font-weight: 700;
  line-height: 1.35;
}

.post-trivia__feedback,
.post-trivia__result {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
}

.post-trivia__feedback strong {
  color: var(--text);
  font-size: 1rem;
}

.post-trivia__feedback p,
.post-trivia__result p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.post-trivia__feedback.is-correct {
  border: 1px solid rgba(20, 128, 83, 0.22);
  background: rgba(230, 248, 239, 0.78);
}

.post-trivia__feedback.is-wrong {
  border: 1px solid rgba(184, 61, 46, 0.2);
  background: rgba(255, 237, 232, 0.86);
}

.post-trivia__correct-answer {
  color: var(--text);
  font-weight: 700;
}

.post-trivia__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding-top: 4px;
}

.post-trivia__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--azul-oscuro);
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 24px rgba(143, 60, 42, 0.2);
  transition: transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.post-trivia__next:hover,
.post-trivia__next:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(143, 60, 42, 0.24);
  outline: none;
}

.post-trivia__next:disabled {
  cursor: default;
  opacity: 0.45;
  transform: none;
  box-shadow: none;
}

.post-trivia__result {
  border: 1px solid rgba(18, 56, 79, 0.1);
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.post-trivia__result-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.15;
}

.post-trivia__result-message {
  color: var(--gris-lema);
}

.post-trivia__result-score {
  color: var(--azul-oscuro);
  font-weight: 800;
}

.post-poll {
  display: grid;
  gap: 20px;
  margin: 34px 0;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(143, 60, 42, 0.08), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f7f4ee 100%);
  box-shadow: 0 22px 48px rgba(18, 56, 79, 0.11);
}

.post-poll__header {
  display: grid;
  gap: 8px;
}

.post-poll__kicker {
  margin: 0;
  color: var(--azul-oscuro);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.post-poll__title {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.12;
}

.post-poll__intro {
  max-width: 62ch;
  margin: 0;
  color: var(--gris-lema);
  font-size: 1rem;
  line-height: 1.65;
}

.post-poll__image {
  width: 100%;
  max-height: 280px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.post-poll__options {
  display: grid;
  gap: 12px;
}

.post-poll__option {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 15px 18px;
  border: 1px solid rgba(18, 56, 79, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(18, 56, 79, 0.06);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.post-poll__option:hover,
.post-poll__option:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(143, 60, 42, 0.34);
  box-shadow: 0 16px 30px rgba(18, 56, 79, 0.1);
  outline: none;
}

.post-poll__option:disabled,
.post-poll__option.is-loading {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.post-poll__option-image {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.post-poll__option-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.post-poll__feedback {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-left: 3px solid rgba(143, 60, 42, 0.38);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.55;
}

.post-poll__feedback[data-state="loading"] {
  border-left-color: rgba(18, 56, 79, 0.34);
}

.post-poll__feedback[data-state="success"] {
  border-left-color: rgba(38, 102, 67, 0.46);
  background: rgba(235, 246, 240, 0.9);
}

.post-poll__feedback[data-state="error"] {
  border-left-color: rgba(143, 60, 42, 0.48);
  background: rgba(251, 240, 235, 0.95);
}

.post-poll__options.is-results {
  gap: 0;
  padding: 12px 18px 8px;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
}

.post-poll__result {
  padding: 14px 0;
}

.post-poll__result + .post-poll__result {
  border-top: 1px solid rgba(18, 56, 79, 0.08);
}

.post-poll__result.is-selected {
  margin: 0 -10px;
  padding: 14px 10px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(250, 239, 233, 0.96), rgba(255, 255, 255, 0.96));
}

.post-poll__result-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}

.post-poll__result-label {
  min-width: 0;
  color: var(--accent);
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.post-poll__result-numbers {
  color: var(--gris-lema);
  font-size: 0.92rem;
  white-space: nowrap;
}

.post-poll__result-track {
  display: block;
  position: relative;
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(18, 56, 79, 0.08);
}

.post-poll__result-bar {
  display: block;
  width: 0;
  height: 100%;
  min-width: 4px;
  border-radius: inherit;
  background: linear-gradient(90deg, #b85f42, #d98968);
  transition: width 0.3s ease;
}

.post-poll__result.is-leading .post-poll__result-bar {
  background: linear-gradient(90deg, #12384f, #2c6079);
}

@media (max-width: 640px) {
  .post-poll {
    padding: 20px;
  }

  .post-poll__result-meta {
    display: grid;
    gap: 4px;
  }

  .post-poll__result-numbers {
    white-space: normal;
  }
}

.articulo-texto__lead {
  margin-top: 0;
  font-size: 1.24rem;
  line-height: 1.75;
  color: var(--text);
}

.articulo-texto p {
  margin: 0 0 1.35em;
  font-size: 1.08rem;
  line-height: 1.82;
  color: #243b4b;
}

.articulo-texto p a,
.articulo-texto li a,
.articulo-texto td a,
.articulo-texto figcaption a,
.articulo-texto blockquote a {
  color: var(--azul-oscuro);
  font-weight: 600;
  text-decoration-color: rgba(143, 60, 42, 0.58);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.18em;
  transition: color 0.18s ease, text-decoration-color 0.18s ease;
}

.articulo-texto p a:hover,
.articulo-texto p a:focus-visible,
.articulo-texto li a:hover,
.articulo-texto li a:focus-visible,
.articulo-texto td a:hover,
.articulo-texto td a:focus-visible,
.articulo-texto figcaption a:hover,
.articulo-texto figcaption a:focus-visible,
.articulo-texto blockquote a:hover,
.articulo-texto blockquote a:focus-visible {
  color: #a13a24;
  text-decoration-color: rgba(143, 60, 42, 0.9);
}

.articulo-texto strong {
  color: var(--text);
  font-weight: 800;
}

.articulo-texto h2 {
  margin: 1.5em 0 0.6em;
  font-size: clamp(1.7rem, 2vw, 2.3rem);
  line-height: 1.02;
}

.articulo-texto h3 {
  margin: 1.35em 0 0.55em;
  font-size: clamp(1.36rem, 1.8vw, 1.8rem);
  line-height: 1.08;
}

.articulo-texto ul,
.articulo-texto ol {
  margin: 0 0 1.6em;
  padding-left: 1.35em;
  color: #243b4b;
}

.articulo-texto li {
  margin-bottom: 0.7em;
  font-size: 1.06rem;
  line-height: 1.78;
}

.articulo-texto .parrafo-dark {
  margin: 1.8em 0;
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(18, 56, 79, 0.96), rgba(11, 32, 46, 0.98));
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.78;
  box-shadow: var(--shadow-sm);
}

.articulo-texto .parrafo-dark a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.44);
}

.articulo-texto .parrafo-dark a:hover,
.articulo-texto .parrafo-dark a:focus-visible {
  color: #fff7db;
  text-decoration-color: rgba(255, 247, 219, 0.78);
}

.articulo-texto .parrafo-dark strong {
  color: #fff;
}

.articulo-texto .parrafo-info {
  position: relative;
  margin: 1.8em 0;
  padding: 18px 20px 18px 72px;
  border: 1px solid rgba(42, 109, 86, 0.14);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at top left, rgba(76, 169, 124, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(242, 251, 246, 0.96), rgba(232, 246, 237, 0.92));
  color: #1f3a31;
  font-size: 1.08rem;
  line-height: 1.78;
  box-shadow: var(--shadow-sm);
}

.articulo-texto .parrafo-info::before {
  content: "i";
  position: absolute;
  top: 18px;
  left: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #45b06d, #2f8d56);
  color: #fff;
  font-family: "Newsreader", serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(47, 141, 86, 0.22);
}

.articulo-texto .parrafo-info strong {
  color: #18382d;
}

.articulo-texto .parrafo-info a {
  color: #1b6c4b;
  text-decoration-color: rgba(27, 108, 75, 0.34);
}

.articulo-texto .parrafo-info a:hover,
.articulo-texto .parrafo-info a:focus-visible {
  color: #14543a;
  text-decoration-color: rgba(20, 84, 58, 0.58);
}

.articulo-texto .parrafo-idea {
  position: relative;
  margin: 1.8em 0;
  padding: 18px 20px 18px 72px;
  border: 1px solid rgba(212, 170, 64, 0.16);
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at top left, rgba(246, 212, 108, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(255, 251, 238, 0.98), rgba(252, 245, 214, 0.94));
  color: #4f4322;
  font-size: 1.08rem;
  line-height: 1.78;
  box-shadow: var(--shadow-sm);
}

.articulo-texto .parrafo-idea::before {
  content: "💡";
  position: absolute;
  top: 18px;
  left: 20px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #f2d26d, #dfb84d);
  font-size: 1.2rem;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(212, 170, 64, 0.22);
}

.articulo-texto .parrafo-idea strong {
  color: #3c3218;
}

.articulo-texto .parrafo-idea a {
  color: #8a5d16;
  text-decoration-color: rgba(138, 93, 22, 0.3);
}

.articulo-texto .parrafo-idea a:hover,
.articulo-texto .parrafo-idea a:focus-visible {
  color: #6d4a12;
  text-decoration-color: rgba(109, 74, 18, 0.56);
}

.articulo-texto mark {
  padding: 0.08em 0.28em;
  border-radius: 0.28em;
  background: rgba(230, 192, 82, 0.36);
  color: inherit;
  box-shadow: inset 0 -0.08em 0 rgba(180, 67, 43, 0.18);
}

.articulo-texto mark.cdx-green-marker {
  background: linear-gradient(180deg, rgba(88, 193, 130, 0.24), rgba(58, 164, 100, 0.34));
  padding: 0.08em 0.28em;
  color: #155338;
  box-shadow: inset 0 -0.08em 0 rgba(34, 122, 74, 0.2);
}

.articulo-texto mark.cdx-red-marker {
  background: linear-gradient(180deg, rgba(239, 68, 68, 0.22), rgba(220, 38, 38, 0.34));
  padding: 0.08em 0.28em;
  color: #7f1d1d;
  box-shadow: inset 0 -0.08em 0 rgba(185, 28, 28, 0.2);
}

code.inline-code {
  font-family: "Instrument Sans", sans-serif;
  padding: 0.08em 0.28em;
  background: rgba(250, 239, 240, 0.78);
  color: #b44437;
  box-shadow: inset 0 -0.08em 0 rgba(34, 122, 74, 0.2);
  border-radius: 0.28em;
}



.articulo-texto hr, .article-card hr {
  width: 100%;
  height: 1px;
  margin: 2em 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(18, 56, 79, 0), rgba(18, 56, 79, 0.3) 18%, rgba(143, 60, 42, 0.42) 50%, rgba(18, 56, 79, 0.3) 82%, rgba(18, 56, 79, 0));
}

.articulo-texto .contenedor-centrado {
  display: flex;
  justify-content: center;
  margin: 1.7em 0;
}

.articulo-texto .contenedor-centrado button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #12384f, #0f3043);
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.articulo-texto .contenedor-centrado button:hover,
.articulo-texto .contenedor-centrado button:focus-visible {
  background: linear-gradient(180deg, #164664, #12384f);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

ul {
    list-style-type: disc;
}

.articulo-texto ul li::marker {
  color: var(--azul-oscuro);
}

.articulo-texto ol li::marker {
  color: var(--azul-oscuro);
  font-weight: 700;
}

.table-wrapper {
  margin: 24px 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.table-wrapper table {
    /* width: max-content; */
    min-width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background-color: #ffffff;
}


.articulo-texto thead {
  background: rgba(18, 56, 79, 0.06);
}

.articulo-texto th,
.articulo-texto td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(18, 56, 79, 0.08);
  text-align: left;
  vertical-align: top;
  font-size: 0.98rem;
  line-height: 1.55;
  /* overflow-wrap: anywhere; */
}

.articulo-texto th {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.articulo-texto tbody tr:nth-child(even) {
  background: rgba(248, 244, 238, 0.75);
}

.articulo-texto tbody tr:last-child td {
  border-bottom: 0;
}

.articulo-texto .accordionExample {
  display: grid;
  gap: 12px;
  margin: 1.6em 0;
}

.articulo-texto .accordionExample .card {
  overflow: hidden;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.articulo-texto .accordionExample .card-header {
  margin: 0;
}

.articulo-texto .accordionExample .card-header a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.96));
}

.articulo-texto .accordionExample .card-header a::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--azul-oscuro);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

.articulo-texto .accordionExample .card-header a[aria-expanded="true"] {
  color: var(--accent);
  background: linear-gradient(180deg, rgba(18, 56, 79, 0.06), rgba(18, 56, 79, 0.03));
}

.articulo-texto .accordionExample .card-header a[aria-expanded="true"]::after {
  content: "\2212";
}

.articulo-texto .accordionExample .collapse {
  display: none;
}

.articulo-texto .accordionExample .collapse.show {
  display: block;
}

.articulo-texto .accordionExample .card-body {
  padding: 0 20px 20px;
  color: #243b4b;
}

.articulo-texto .accordionExample .card-body > :last-child {
  margin-bottom: 0;
}

.articulo-texto amp-twitter,
.articulo-texto amp-instagram,
.articulo-texto amp-facebook,
.articulo-texto blockquote.tiktok-embed,
.articulo-texto .responsive-facebook,
.articulo-texto .embed,
.articulo-texto .embed-responsive {
  display: block;
  width: 100%;
  max-width: min(100%, 720px);
  margin: 1.8em auto;
}

.articulo-texto .responsive-facebook,
.articulo-texto blockquote.tiktok-embed,
.articulo-texto .embed,
.articulo-texto .embed-responsive {
  overflow: hidden;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.articulo-texto amp-twitter,
.articulo-texto amp-instagram,
.articulo-texto amp-facebook,
.articulo-texto blockquote.tiktok-embed {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.articulo-texto blockquote.tiktok-embed {
  min-width: 0 !important;
  max-width: min(100%, 605px) !important;
  padding: 0 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: inherit;
  box-shadow: var(--shadow-sm);
}

.articulo-texto blockquote.tiktok-embed::before {
  content: none;
}

.articulo-texto blockquote.tiktok-embed section {
  margin: 0 !important;
}

.articulo-texto .responsive-facebook iframe,
.articulo-texto .embed-responsive iframe,
.articulo-texto .containerIframe iframe {
  display: block;
  width: 100%;
  border: 0;
}

.articulo-texto .responsive-facebook iframe {
  min-height: 497px;
}

.articulo-texto .embed {
  padding: 14px;
}

.articulo-texto .containerIframe {
  max-width: 540px;
  margin: 0 auto;
}

.articulo-texto .embed-responsive {
  aspect-ratio: 16 / 9;
}

.articulo-texto .embed-responsive iframe {
  width: 100%;
  height: 100%;
}

.articulo-texto .iframe_video {
  min-height: 320px;
}

.articulo-texto .embedPinterest {
  display: grid;
  justify-items: center;
  width: min(100%, 452px);
  margin: 1.9em auto;
  padding: 10px;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 244, 238, 0.84));
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.articulo-texto .embedPinterest iframe {
  display: block;
  width: min(100%, 400px);
  height: clamp(360px, 54vw, 430px);
  min-height: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 56, 79, 0.08);
}

.articulo-texto .embedPinterest + p {
  margin-top: 0;
}

.articulo-texto h5 {
  margin: 1.2em 0 0.8em;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.articulo-texto h5 a {
  color: var(--azul-oscuro);
  font-weight: 800;
  text-underline-offset: 3px;
}

.articulo-texto .iframe_pdf {
  display: block;
  width: 100%;
  min-height: 600px;
  margin: 1em 0 1.8em;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
}

.articulo-texto .poll-card--media {
  gap: 22px;
  padding: 20px;
}

.articulo-texto .poll-card--no-image {
  grid-template-columns: 1fr;
}

.articulo-texto .poll-card--media img {
  height: 184px;
}

.articulo-texto .poll-card__content {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 1.02fr);
  gap: 18px 24px;
}

.articulo-texto .poll-card--no-image .poll-card__content {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.articulo-texto .poll-card h3 {
  max-width: 10ch;
}

.articulo-texto .poll-card--no-image h3 {
  max-width: 12ch;
}

.articulo-texto .interactive-card__aside {
  gap: 10px;
  padding-left: 18px;
}

.articulo-texto .poll-options {
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: stretch;
}

.articulo-texto .poll-option {
  min-height: 0;
  padding: 16px 18px;
  font-size: 0.95rem;
  line-height: 1.38;
  text-align: left;
  text-wrap: pretty;
  overflow-wrap: anywhere;
  word-break: normal;
}

.articulo-texto .poll-feedback {
  padding: 14px 16px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.articulo-texto .poll-result__meta {
  align-items: flex-start;
}

.articulo-texto .poll-result__label {
  max-width: 26ch;
  line-height: 1.35;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

.articulo-texto div:has(> audio) {
  display: grid;
  gap: 12px;
  margin: 1.6em 0;
  padding: 16px 18px;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.96));
  box-shadow: var(--shadow-sm);
}

.articulo-texto div:has(> audio)::before {
  content: "Audio";
  color: var(--azul-oscuro);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.articulo-texto audio {
  display: block;
  width: 100%;
  min-height: 54px;
}

.article-embed {
  margin: 0 0 1.5em;
  overflow: hidden;
}

.article-embed img {
  display: block;
  width: 100%;
  border-radius: var(--radius-sm);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.article-embed figcaption {
  margin-top: 8px;
  color: var(--gris-lema);
  font-size: 0.86rem;
  line-height: 1.45;
}

.article-embed--left,
.article-embed--right {
  width: min(30%, 220px);
  max-width: 100%;
}

.article-embed--left {
  float: left;
  margin: 0.2em 24px 1em 0;
}

.article-embed--right {
  float: right;
  margin: 0.2em 0 1em 24px;
}

.article-embed--left img,
.article-embed--right img {
  /* aspect-ratio: 4 / 3;
  max-height: 220px; */
}

.article-embed--horizontal {
  width: min(50%, 400px);
}

.article-embed--horizontal img {
  /* aspect-ratio: 16 / 10;
  max-height: 190px; */
}

.article-embed--square {
  width: min(24%, 180px);
}

.article-embed--square img {
  aspect-ratio: 1 / 1;
  max-height: 180px;
}

.article-embed--center {
  max-width: 512px;
  margin: 1.9em auto;
}

.article-embed--center img {
/*  aspect-ratio: 16 / 9;*/
}

.article-embed--center.article-embed--square {
  max-width: 460px;
}

.article-related-embed {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 18px;
  margin: 1.9em 0;
  padding: 18px;
  border: 1px solid rgba(18, 56, 79, 0.1);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 244, 238, 0.96));
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.article-related-embed img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: calc(var(--radius-sm) - 2px);
  object-fit: cover;
}

.article-related-embed__content {
  display: grid;
  align-content: start;
  gap: 10px;
}

.article-related-embed__content span {
  color: var(--azul-oscuro);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-related-embed__content strong {
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1.04;
}

.article-related-embed__content p {
  margin: 0;
  color: var(--gris-lema);
  font-size: 0.98rem;
  line-height: 1.62;
}

.article-gallery {
  display: grid;
  gap: 16px;
  margin: 2em 0;
}

.article-gallery__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.article-gallery__heading h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.3vw, 2rem);
  line-height: 1.04;
}

.article-gallery__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.article-gallery__button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.article-gallery__viewport {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.article-gallery__viewport::-webkit-scrollbar {
  display: none;
}

.article-gallery__slide {
  flex: 0 0 100%;
  display: grid;
  gap: 12px;
  padding: 12px;
  scroll-snap-align: start;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.articulo-texto .article-gallery__slide,
.articulo-texto .article-gallery__slide:hover,
.articulo-texto .article-gallery__slide:focus-visible {
  color: inherit;
  text-decoration: none;
}

.article-gallery__slide:hover,
.article-gallery__slide:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(143, 60, 42, 0.22);
  box-shadow: var(--shadow-md);
}

.article-gallery__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: calc(var(--radius-sm) - 2px);
  object-fit: cover;
}

.article-gallery__caption {
  color: #304656;
  font-size: 0.92rem;
  line-height: 1.5;
}

.articulo-texto blockquote {
  position: relative;
  margin: 1.8em 0;
  padding: 28px 22px 20px 30px;
  border-left: 4px solid var(--azul-oscuro);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(18, 56, 79, 0.05);
  color: var(--accent);
}

.articulo-texto blockquote::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 14px;
  font-family: "Newsreader", serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(143, 60, 42, 0.2);
  pointer-events: none;
}

.articulo-texto blockquote p {
  margin: 0 0 14px;
}

.articulo-texto blockquote p:not(.blockquoteAutor) {
  font-family: "Newsreader", serif;
  font-size: clamp(1.42rem, 2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--accent);
}

.articulo-texto blockquote .blockquoteAutor {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0;
  color: var(--gris-lema);
}

.articulo-texto blockquote .blockquoteAutor::before {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(143, 60, 42, 0.42);
  flex: 0 0 auto;
}

.articulo-texto blockquote p:last-child {
  margin-bottom: 0;
}

.articulo-texto blockquote p:empty {
  display: none;
}

.articulo-texto blockquote.warning {
  position: relative;
  margin: 1.9em 0;
  padding: 72px 22px 20px 22px;
  border: 1px solid rgba(143, 60, 42, 0.2);
  border-left: 6px solid #b4432b;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(180, 67, 43, 0.07), rgba(180, 67, 43, 0.03)),
    #fff8f5;
  color: #6d2417;
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}

.articulo-texto blockquote.warning::before {
  content: none;
}

.articulo-texto blockquote.warning .author {
  position: absolute;
  top: 20px;
  left: 22px;
  display: block;
  color: #8a3321;
  font-size: 1.24rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}

.articulo-texto blockquote.warning .author::before {
  content: none;
}

.article-highlight {
  margin: 1.8em 0;
  padding: 20px 22px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(18, 56, 79, 0.06), rgba(143, 60, 42, 0.08)),
    #fff;
}

.article-highlight h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.article-highlight p {
  margin: 0;
  font-size: 1rem;
}

.article-sidebar {
  width: 320px;
  position: sticky;
  top: 104px;
  display: grid;
  gap: 16px;
  justify-self: end;
}

.article-facts {
  margin: 0;
  display: grid;
  gap: 14px;
}

.article-facts div {
  display: grid;
  gap: 4px;
}

.article-facts dt {
  color: var(--gris-lema);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-facts dd {
  margin: 0;
  color: var(--text);
  font-weight: 600;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-post-tags {
  display: grid;
  gap: 12px;
}

.article-post-tags h2 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.05;
}

.article-tags a {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(18, 56, 79, 0.12);
  border-radius: 999px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.article-list {
  display: grid;
  gap: 14px;
}

.article-list a {
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
  text-decoration: none;
}

.article-latest {
  display: grid;
  gap: 22px;
  padding: 24px 22px 22px;
}

.article-latest__title {
  margin: 0;
  color: #163872;
  font-family: "Newsreader", serif;
  font-style: italic;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.article-latest__timeline {
  position: relative;
  display: grid;
  gap: 26px;
  padding-left: 30px;
}

.article-latest__timeline::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 10px;
  width: 1px;
  background: rgba(23, 33, 43, 0.86);
}

.article-latest__item {
  position: relative;
  display: grid;
  gap: 10px;
}

.article-latest__item::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #0c1014;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.9);
}

.article-latest__item time {
  color: #0c1014;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
}

.article-latest__item a {
  color: #0c1014;
  font-family: "Newsreader", serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
  text-decoration: none;
}

.article-latest__item a:hover,
.article-latest__item a:focus-visible {
  color: var(--accent);
}

.article-ad {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-inline: 0;
  text-align: center;
  overflow: hidden;
}

.article-ad .article-card__kicker {
  padding-inline: 18px;
}

.article-ad__frame {
  width: 320px;
  max-width: 100%;
  overflow: hidden;
}

.article-ad__slot {
  display: block !important;
  width: 320px !important;
  height: 100px !important;
  margin: 0 auto;
  border-radius: calc(var(--radius-sm) - 2px);
}

.articulo-texto__body center.ads {
  display: grid;
  justify-items: center;
  gap: 10px;
  width: min(340px, 100%);
  margin: 1.8em auto;
  padding: 16px 18px 18px;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(180deg, rgba(248, 244, 238, 0.92), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.articulo-texto__body center.ads::before {
  content: "Publicidad";
  color: var(--azul-oscuro);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.articulo-texto__body center.ads .adsbygoogle {
  display: inline-block !important;
  margin: 0 auto !important;
}

.article-more {
  margin-top: 42px;
}

.article-more__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-teaser {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(18, 56, 79, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.article-teaser img {
  width: 100%;
  height: 220px;
  border-radius: calc(var(--radius-sm) - 2px);
  object-fit: cover;
}

.article-teaser span {
  color: var(--azul-oscuro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 700;
}

.article-teaser strong {
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.15;
}

@media (max-width: 1080px) {
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    width: 100%;
    position: static;
  }

  .article-more__grid {
    grid-template-columns: 1fr 1fr;
  }

  .article-latest__title {
    font-size: 2rem;
  }
}

@media (max-width: 760px) {
  .article-main {
    padding-bottom: 40px;
  }

  .article-shell.shell--wide {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
  }

  .article-hero {
    padding: 18px 14px;
    gap: 14px;
  }

  .article-hero h1 {
    max-width: none;
    font-size: clamp(1.95rem, 8.4vw, 2.75rem);
    line-height: 1.02;
  }

  .article-excerpt,
  .articulo-texto__lead,
  .articulo-texto p {
    font-size: 1rem;
  }

  .article-meta {
    align-items: stretch;
  }

  .article-author {
    align-items: flex-start;
  }

  .article-share {
    justify-items: start;
    width: 100%;
  }

  .article-share__links {
    justify-content: flex-start;
  }

  .articulo-texto,
  .article-summary,
  .article-card {
    padding: 18px;
  }

  .articulo-texto .poll-card--no-image .poll-card__content {
    grid-template-columns: 1fr;
  }

  .articulo-texto .poll-card--no-image .interactive-card__aside {
    padding-left: 0;
  }

  .articulo-texto .parrafo-info {
    padding: 16px 16px 16px 62px;
    font-size: 1rem;
  }

  .articulo-texto .parrafo-idea {
    padding: 16px 16px 16px 62px;
    font-size: 1rem;
  }

  .articulo-texto .parrafo-info::before {
    top: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    font-size: 1.35rem;
  }

  .articulo-texto .parrafo-idea::before {
    top: 16px;
    left: 16px;
    width: 34px;
    height: 34px;
    font-size: 1.08rem;
  }

  .article-media img {
    height: clamp(220px, 58vw, 300px);
    max-height: none;
    aspect-ratio: 16 / 9;
  }

  .article-latest {
    gap: 18px;
    padding: 20px 18px 18px;
  }

  .article-latest__title {
    font-size: 1.72rem;
  }

  .article-latest__timeline {
    gap: 22px;
    padding-left: 26px;
  }

  .article-latest__item::before {
    left: -26px;
    width: 12px;
    height: 12px;
  }

  .article-latest__item a {
    font-size: 1.42rem;
  }

  .articulo-texto blockquote p:not(.blockquoteAutor) {
    font-size: 1.28rem;
  }

  .articulo-texto blockquote .blockquoteAutor {
    font-size: 0.92rem;
  }

  .articulo-texto blockquote.warning {
    padding: 62px 18px 16px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .articulo-texto blockquote.warning .author {
    top: 18px;
    left: 18px;
    font-size: 1.02rem;
  }

  .table-wrapper {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-wrapper table,
  .table-wrapper thead,
  .table-wrapper tbody,
  .table-wrapper tr,
  .table-wrapper td {
    display: block;
    width: 100%;
  }

  .table-wrapper table {
    min-width: 0;
    background: transparent;
  }

  .table-wrapper thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .table-wrapper tbody {
    display: grid;
    gap: 12px;
  }

  .table-wrapper tr {
    overflow: hidden;
    border: 1px solid rgba(18, 56, 79, 0.1);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-sm);
  }

  .table-wrapper td {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(18, 56, 79, 0.08);
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .table-wrapper td:last-child {
    border-bottom: 0;
  }

  .table-wrapper td::before {
    content: attr(data-label);
    color: var(--azul-oscuro);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .articulo-texto .responsive-facebook,
  .articulo-texto .embed,
  .articulo-texto .embed-responsive,
  .articulo-texto amp-twitter,
  .articulo-texto amp-instagram,
  .articulo-texto amp-facebook,
  .articulo-texto blockquote.tiktok-embed {
    margin: 1.4em 0;
  }

  .articulo-texto blockquote.tiktok-embed {
    max-width: 100% !important;
  }

  .articulo-texto .embed {
    padding: 12px;
  }

  .articulo-texto .responsive-facebook iframe {
    min-height: 440px;
  }

  .articulo-texto .iframe_video {
    min-height: 220px;
  }

  .articulo-texto .embedPinterest {
    width: 100%;
    margin: 1.4em 0;
    padding: 8px;
  }

  .articulo-texto .embedPinterest iframe {
    width: 100%;
    height: clamp(360px, 108vw, 430px);
  }

  .articulo-texto .iframe_pdf {
    min-height: 420px;
  }

  .articulo-texto div:has(> audio) {
    padding: 14px 16px;
  }

  .article-embed--left,
  .article-embed--right,
  .article-embed--center {
    float: none;
    width: 100%;
    max-width: none;
    margin: 1.4em 0;
  }

  .article-embed img {
    /* aspect-ratio: 16 / 10; */
  }

  .article-embed--square img {
    aspect-ratio: 1 / 1;
  }

  .article-related-embed {
    grid-template-columns: 1fr;
  }

  .article-related-embed img {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .article-gallery__heading {
    align-items: start;
    flex-direction: column;
  }

  .article-gallery__controls {
    width: 100%;
    justify-content: flex-end;
  }

  .article-gallery__slide {
    padding: 10px;
  }

  .article-gallery__slide img {
    height: clamp(200px, 54vw, 260px);
    aspect-ratio: 16 / 9;
    max-height: none;
  }

  .article-ad__frame {
    width: min(320px, calc(100vw - 24px));
    aspect-ratio: 16 / 5;
  }

  .article-ad__slot {
    transform-origin: top left;
    transform: scale(calc(min(320px, calc(100vw - 24px)) / 320px));
  }

  .articulo-texto__body center {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1.4em 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    overflow: hidden;
    text-align: center;
  }

  .articulo-texto__body center.ads::before {
    display: block;
    margin-bottom: 10px;
  }

  .articulo-texto__body center.ads .adsbygoogle,
  .articulo-texto__body center.ads iframe {
    display: block !important;
    width: min(300px, 100%) !important;
    max-width: 100% !important;
    margin: 0 auto !important;
  }

  .article-more__grid {
    grid-template-columns: 1fr;
  }
}


/*TIMELINE*/
.yagan-timeline {    position: relative;    max-width: 800px;    margin: 30px auto;    padding-left: 35px;    font-family: Arial, sans-serif;  }    /* Línea vertical */  .yagan-timeline::before {    content: "";    position: absolute;    left: 8px;    top: 8px;    bottom: 8px;    width: 2px;    background: #222;  }    .yagan-timeline .timeline-item {    position: relative;    padding: 0 0 35px 20px;  }    .yagan-timeline .timeline-item:last-child {    padding-bottom: 0;  }    /* Punto */  .yagan-timeline .timeline-item::before {    content: "";    position: absolute;    left: -33px;    top: 5px;    width: 12px;    height: 12px;    background: #fff;    border: 3px solid #222;    border-radius: 50%;    box-sizing: content-box;  }    .yagan-timeline .timeline-year {    font-size: 26px;    line-height: 1;    font-weight: 700;    margin-bottom: 8px;  }    .yagan-timeline .timeline-content {    font-size: 16px;    line-height: 1.5;  }    /* Destacar último hito */  .yagan-timeline .timeline-item:last-child::before {    background: #222;  }    @media (max-width: 600px) {    .yagan-timeline {      padding-left: 30px;      margin: 20px 0;    }      .yagan-timeline .timeline-year {      font-size: 22px;    }      .yagan-timeline .timeline-content {      font-size: 15px;    }  }
/* FIN TIMELINE*/

/*  DATOS */
.ficha-datos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  font-family: Arial, sans-serif;
}

.ficha-datos .ficha-dato {
  flex: 1;
  text-align: center;
  padding: 20px 30px;
  border-right: 1px solid #d9d9d9;
}

.ficha-datos .ficha-dato:last-child {
  border-right: 0;
}

.ficha-datos strong {
  display: block;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

.ficha-datos span {
  display: block;
  font-size: 15px;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .ficha-datos {
    flex-direction: column;
  }

  .ficha-datos .ficha-dato {
    border-right: 0;
    border-bottom: 1px solid #d9d9d9;
  }

  .ficha-datos .ficha-dato:last-child {
    border-bottom: 0;
  }
}
/* FIN DATOS*/
/* ============================================
   DAST BLOCKS — Estilos frontend
   timeline · ficha · checklist · procon
   ============================================ */

/* ---------- LÍNEA DE TIEMPO ---------- */
.yagan-timeline {
  position: relative;
  padding-left: 28px;
  margin: 2rem 0;
}
.yagan-timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: #e2e8f0;
}
.timeline-item {
  position: relative;
  padding: 0 0 28px 24px;
}
.timeline-item:last-child {
  padding-bottom: 0;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -19px;
  top: 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #1e2d40;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #1e2d40;
}
.timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: #c9a84c;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.timeline-content {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}

/* ---------- FICHA DE DATOS ---------- */
.ficha-datos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 2rem 0;
}
.ficha-dato {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #f8faff;
  border: 1.5px solid #e8ecf3;
  border-radius: 10px;
  padding: 16px 20px;
  min-width: 120px;
  flex: 1;
}
.ficha-dato strong {
  font-size: 22px;
  font-weight: 800;
  color: #1e2d40;
  line-height: 1.2;
  display: block;
}
.ficha-dato span {
  font-size: 12px;
  color: #64748b;
  margin-top: 4px;
  display: block;
}

/* ---------- CHECKLIST NUMERADO ---------- */
.dast-checklist {
  background: #fff;
  border: 1.5px solid #e8ecf3;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 2rem 0;
}
.dast-checklist__title {
  font-size: 20px;
  font-weight: 800;
  color: #1e2d40;
  margin: 0 0 24px;
}
.dast-checklist__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dast-checklist__list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  counter-increment: dast-cl;
}
.dast-checklist__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dast-checklist__list li::before {
  content: counter(dast-cl);
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #1e2d40;
  color: #c9a84c;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.dast-checklist__list {
  counter-reset: dast-cl;
}

/* ---------- PRO / CONTRA ---------- */
.dast-procon {
  background: #fff;
  border: 1.5px solid #e8ecf3;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 2rem 0;
}
.dast-procon__title {
  font-size: 20px;
  font-weight: 800;
  color: #1e2d40;
  margin: 0 0 10px;
}
.dast-procon__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #92400e;
  background: #fef3c7;
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.dast-procon__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dast-procon__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
}
.dast-procon__list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.dast-procon__list li::before {
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.dast-procon__pro::before {
  content: '✓';
  color: #16a34a;
}
.dast-procon__con::before {
  content: '✗';
  color: #dc2626;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
  .ficha-datos { gap: 8px; }
  .ficha-dato  { min-width: calc(50% - 8px); flex: none; }
  .dast-checklist,
  .dast-procon  { padding: 20px 18px; }
  .yagan-timeline { padding-left: 20px; }
}

/****** FIN CUSTOM *******/
