/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Jul 16 2026 | 00:38:28 */
:root {
  --im-yellow: #fac11c;
  --im-yellow-dark: #d89f00;
  --im-black: #222222;
  --im-text: #30343a;
  --im-muted: #68707a;
  --im-border: #e3e6e8;
  --im-background: #ffffff;
  --im-soft: #f5f6f7;
  --im-analysis: #f2f7fb;
  --im-radius: 10px;
  --im-shadow: 0 5px 20px rgba(0, 0, 0, 0.07);
}

.im-noticia {
  width: 100%;
  color: var(--im-text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.75;
}

.im-noticia *,
.im-noticia *::before,
.im-noticia *::after {
  box-sizing: border-box;
}

.im-noticia p {
  margin: 0 0 1.25em;
}

.im-noticia a {
  color: #1267b2;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.im-noticia a:hover {
  color: #0b487f;
}

.im-kicker {
  display: inline-block;
  margin: 0 0 16px !important;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--im-yellow);
  color: var(--im-black);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.im-bajada {
  margin-bottom: 22px !important;
  color: #3c4147;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.5;
}

.im-lead {
  margin: 18px 0 22px;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: #333;
}

.im-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 26px;
}

.im-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid var(--im-border);
  border-radius: 999px;
  background: var(--im-background);
  color: #4f565e;
  font-size: 14px;
  line-height: 1.2;
}

.im-resumen {
  margin: 30px 0;
  padding: 24px 26px;
  border-left: 5px solid var(--im-yellow);
  border-radius: 0 var(--im-radius) var(--im-radius) 0;
  background: var(--im-soft);
}

.im-resumen h2,
.im-datos-clave h2,
.im-analisis h2 {
  margin: 0 0 16px;
  color: var(--im-black);
  font-size: 25px;
  line-height: 1.3;
}

.im-resumen ul {
  margin: 0;
  padding-left: 22px;
}

.im-resumen li {
  margin: 8px 0;
  padding-left: 4px;
}

.im-cuerpo h2 {
  margin: 38px 0 15px;
  color: var(--im-black);
  font-size: 29px;
  line-height: 1.3;
}

.im-cuerpo h3 {
  margin: 28px 0 12px;
  color: var(--im-black);
  font-size: 23px;
  line-height: 1.35;
}

.im-cuerpo ul,
.im-cuerpo ol {
  margin: 0 0 24px;
  padding-left: 24px;
}

.im-cuerpo li {
  margin-bottom: 8px;
}

.im-datos-clave {
  margin: 36px 0;
}

.im-datos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.im-dato {
  padding: 18px;
  border: 1px solid var(--im-border);
  border-radius: var(--im-radius);
  background: var(--im-background);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.im-dato-label {
  display: block;
  margin-bottom: 5px;
  color: var(--im-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.im-dato-valor {
  display: block;
  color: var(--im-black);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
}

.im-analisis {
  position: relative;
  margin: 38px 0;
  padding: 28px;
  border: 1px solid #d9e8f2;
  border-radius: var(--im-radius);
  background: var(--im-analysis);
}

.im-analisis::before {
  display: block;
  margin-bottom: 10px;
  color: #45677d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  content: "CONTEXTO EDITORIAL";
}

.im-analisis p:last-child {
  margin-bottom: 0;
}

.im-publicidad {
  position: relative;
  margin: 38px 0;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #e0b20c;
  border-radius: 12px;
  background: linear-gradient(135deg, #fffdf5 0%, #fff7d7 100%);
  box-shadow: var(--im-shadow);
}

.im-publicidad::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 7px;
  height: 100%;
  background: var(--im-yellow);
  content: "";
}

.im-publicidad-etiqueta {
  display: block;
  margin-bottom: 8px;
  color: #786000;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.im-publicidad h3 {
  margin: 0 0 12px;
  color: var(--im-black);
  font-size: 25px;
  line-height: 1.3;
}

.im-publicidad p {
  margin-bottom: 18px;
  color: #4c4c48;
  font-size: 16px;
  line-height: 1.65;
}

.im-publicidad ul {
  margin: 0 0 20px;
  padding-left: 21px;
}

.im-publicidad li {
  margin-bottom: 6px;
}

.im-publicidad-boton {
  display: inline-block;
  padding: 12px 19px;
  border-radius: 6px;
  background: var(--im-black);
  color: #ffffff !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none !important;
  transition: transform 0.15s ease, background 0.15s ease;
}

.im-publicidad-boton:hover {
  background: #000000;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.im-fuente {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--im-border);
  color: var(--im-muted);
  font-size: 14px;
  line-height: 1.6;
}

.im-fuente strong {
  color: var(--im-text);
}

.im-fuente a {
  word-break: break-word;
}

.im-actualizacion {
  margin-top: 8px;
  color: var(--im-muted);
  font-size: 13px;
}

@media (max-width: 900px) {
  .im-datos-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .im-noticia {
    font-size: 16px;
    line-height: 1.7;
  }
	
@media (max-width: 767px) {
  .im-lead {
    font-size: 16px;
    line-height: 1.6;
  }
}	

  .im-bajada {
    font-size: 19px;
  }

  .im-resumen,
  .im-analisis,
  .im-publicidad {
    padding: 20px;
  }

  .im-cuerpo h2 {
    font-size: 25px;
  }

  .im-datos-grid {
    grid-template-columns: 1fr;
  }

  .im-publicidad-boton {
    display: block;
    width: 100%;
    text-align: center;
  }
}