@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
a {
  text-decoration: none;
  color: #ffffff;
}

html {
  padding: 0;
  width: 100%;
  margin: 0;
  min-height: 100vh;
}

body {
  margin: 0;
  padding-top: 6.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  display: flex;
  justify-content: center;
  flex: 1;
}

.site-footer {
  background: linear-gradient(135deg, #0b2e13 0%, #145a23 45%, #1a7c33 100%);
  border-top: 4px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 55%), radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 55%);
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.site-footer__brand svg {
  flex-shrink: 0;
}

.site-footer__brand span:first-child {
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.site-footer__tagline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.site-footer__title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #f8faf9;
}

.site-footer__links a {
  color: #e6f4ea;
  transition: color 0.3s ease, transform 0.3s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus {
  color: #8ee4a7;
  transform: translateX(3px);
}

.site-footer__links li + li {
  margin-top: 0.6rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #f0fff4;
  background-color: rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus {
  background-color: #39b54a;
  border-color: #39b54a;
  color: #0b2e13;
  transform: translateY(-3px);
}

.site-footer__meta-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-left: 0;
}

.site-footer__meta-links li {
  position: relative;
  padding-left: 0;
}

.site-footer__meta-links li + li::before {
  content: "•";
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.site-footer__meta-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.site-footer__meta-links a:hover,
.site-footer__meta-links a:focus {
  color: #8ee4a7;
}

@media (max-width: 767.98px) {
  .site-footer__brand {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .site-footer__brand svg {
    height: 36px;
  }

  .site-footer__social {
    justify-content: center !important;
  }

  .site-footer__meta-links {
    justify-content: center;
  }

  .site-footer__meta-links li + li::before {
    content: none;
  }

  .site-footer__meta-links,
  .site-footer__meta-links + p {
    text-align: center;
  }
}

@media (max-width: 768px) {
  body {
    margin: 0;
    padding-top: 6rem;
  }
}
@media (max-width: 425px) {
  body {
    margin: 0;
    padding-top: 5rem;
  }
}
@media (max-width: 624px) {
  #botones #sueltos {
    display: none;
  }
  #botones .container {
    display: block;
  }
}
@media (min-width: 625px) {
  #botones .container {
    display: none;
  }
}
@media (max-width: 846px) {
  #redes {
    display: none;
  }
}
@media (max-width: 1024px) {
  header div a svg {
    height: 32px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.75);
  padding: 0 1rem;
}
header ul li .nav-link {
  color: #000000;
  transition: color 0.3s;
}
header ul li .nav-link:hover, header ul li .nav-link:focus {
  color: #289137;
  background-color: transparent;
  transition: color 0.3s;
}
header ul li .nav-link.activo {
  color: #ffffff;
  background-color: #289137;
}
header ul li ul li .dropdown-item:active {
  color: #ffffff;
  background-color: #289137;
}

/* ========================================
   Estilos generales de contenedores
   ======================================== */
.in_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 85%;
}

.titulo {
  width: 100%;
  margin-bottom: 2rem;
  border-bottom: solid 1px rgb(163, 163, 163);
}
.titulo h1 {
  margin-left: 0.5rem;
}

/* ========================================
   Portada y secciones de notas (Home, Sección, Región)
   ======================================== */
.portada {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: auto;
  gap: 1rem;
  margin-bottom: 1rem;
}
.portada .nota_principal {
  width: 75%;
  height: 100%;
}
.portada .nota_principal a div {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: end;
}
.portada .nota_principal a div img {
  display: flex;
  width: 100%;
  aspect-ratio: 1.4584/1;
  object-fit: cover;
}
.portada .nota_principal a div div div {
  width: 100%;
  height: min-content;
  padding: 2rem;
}
.portada .nota_principal a div div div h1 {
  position: relative;
  color: #000000;
  line-height: 3.5rem;
  font-weight: 700;
  margin: 0;
  background-color: #ffffff;
  padding: 1rem;
  z-index: 1;
}
.portada .nota_principal a div div div span {
  background-color: #289137;
  padding: 0.2rem 0.5rem 0.5rem 0.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}
.portada .notas_secundarias {
  display: flex;
  width: 25%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}
.portada .notas_secundarias a {
  display: flex;
  height: calc(50% - 0.5rem);
}
.portada .notas_secundarias a .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem 0 0 0;
  border-color: rgba(0, 0, 0, 0.25);
}
.portada .notas_secundarias a .card img {
  width: 100%;
  aspect-ratio: 10/6;
  object-fit: cover;
}
.portada .notas_secundarias a .card div {
  flex-direction: column;
  padding: 0.75rem;
}
.portada .notas_secundarias a .card div h5 {
  margin-bottom: 0.5rem;
  color: #289137;
}
.portada .notas_secundarias a .card div p {
  line-height: 1.25rem;
}

#tres_notas_y_publi {
  display: flex;
  width: 100%;
  height: auto;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-direction: row;
  justify-content: space-between;
}
#tres_notas_y_publi .dos_notas {
  display: flex;
  flex-direction: column;
  width: 25%;
  height: 100%;
  gap: 1rem;
}
#tres_notas_y_publi .dos_notas a {
  display: flex;
  height: calc(50% - 0.5rem);
}
#tres_notas_y_publi .dos_notas a .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem 0 0 0;
  border-color: rgba(0, 0, 0, 0.25);
}
#tres_notas_y_publi .dos_notas a .card img {
  width: 100%;
  aspect-ratio: 10/6;
  object-fit: cover;
}
#tres_notas_y_publi .dos_notas a .card div {
  flex-direction: column;
  padding: 0.75rem;
}
#tres_notas_y_publi .dos_notas a .card div h5 {
  margin-bottom: 0.5rem;
  color: #289137;
}
#tres_notas_y_publi .dos_notas a .card div p {
  line-height: 1.25rem;
}
#tres_notas_y_publi .nota_fuerte {
  width: calc(50% - 1rem);
  height: 100%;
}
#tres_notas_y_publi .nota_fuerte a {
  display: flex;
  height: 100%;
}
#tres_notas_y_publi .nota_fuerte a .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 0.4rem 0 0 0;
  border-color: rgba(0, 0, 0, 0.25);
}
#tres_notas_y_publi .nota_fuerte a .card img {
  aspect-ratio: 1.75/1;
  object-fit: cover;
}
#tres_notas_y_publi .nota_fuerte a .card div {
  flex-direction: column;
  padding: 0.75rem;
}
#tres_notas_y_publi .nota_fuerte a .card div h2 {
  margin-bottom: 0.5rem;
  color: #289137;
  font-weight: 700;
  font-size: 3rem;
}
#tres_notas_y_publi .nota_fuerte a .card div p {
  font-weight: 400;
  font-size: 1.5rem;
}
#tres_notas_y_publi .publicidad {
  display: flex;
  flex-direction: column;
  width: 25%;
  height: 100%;
  border-radius: 0.4rem;
  background-color: rgb(146, 146, 146);
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  gap: 1rem;
}
#tres_notas_y_publi .publicidad a img {
  width: 100%;
  object-fit: cover;
}

#tres_notas {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  gap: 1rem;
  margin-bottom: 1rem;
}
#tres_notas a {
  display: flex;
  height: 100%;
  width: 100%;
}
#tres_notas a .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem 0 0 0;
  border-color: rgba(0, 0, 0, 0.25);
}
#tres_notas a .card img {
  aspect-ratio: 1.2096/1;
  object-fit: cover;
}
#tres_notas a .card div {
  flex-direction: column;
  padding: 0.75rem;
}
#tres_notas a .card div h5 {
  margin-bottom: 0.5rem;
  color: #289137;
}
#tres_notas a .card div p {
  line-height: 1.25rem;
}

#tres_publi {
  display: flex;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1rem;
}
#tres_publi img {
  width: 100%;
  aspect-ratio: 1.18293/1;
  border-radius: 0.4rem;
}

#dos_notas {
  display: flex;
  height: auto;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1rem;
}
#dos_notas .nota_fuerte {
  width: calc(50% - 0.5rem);
  height: 100%;
}
#dos_notas .nota_fuerte a {
  display: flex;
  height: 100%;
}
#dos_notas .nota_fuerte a .card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border-radius: 0.4rem 0 0 0;
  border-color: rgba(0, 0, 0, 0.25);
}
#dos_notas .nota_fuerte a .card img {
  aspect-ratio: 1.75/1;
  object-fit: cover;
}
#dos_notas .nota_fuerte a .card div {
  flex-direction: column;
  padding: 0.75rem;
}
#dos_notas .nota_fuerte a .card div h2 {
  margin-bottom: 0.5rem;
  color: #289137;
  font-weight: 700;
  font-size: 3rem;
}
#dos_notas .nota_fuerte a .card div p {
  font-weight: 400;
  font-size: 1.5rem;
}

#cuatro_notas {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: auto;
  gap: 1rem;
  margin-bottom: 2rem;
}
#cuatro_notas a {
  display: flex;
  width: 100%;
  height: 100%;
}
#cuatro_notas a .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem 0 0 0;
  border-color: rgba(0, 0, 0, 0.25);
}
#cuatro_notas a .card img {
  width: 100%;
  aspect-ratio: 1.21687/1;
  object-fit: cover;
}
#cuatro_notas a .card div {
  flex-direction: column;
  padding: 0.75rem;
}
#cuatro_notas a .card div h5 {
  margin-bottom: 0.5rem;
  color: #289137;
}
#cuatro_notas a .card div p {
  line-height: 1.25rem;
}

#segmento {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  height: auto;
  margin-bottom: 4rem;
  border-bottom: solid 1px rgb(175, 175, 175);
}
#segmento .seccion {
  display: flex;
}
#segmento .seccion svg {
  height: 2.5rem;
  margin-right: 1rem;
}
#segmento .seccion p {
  font-size: 2.5rem;
  padding-left: calc(1.5rem - 4px);
  line-height: 2.5rem;
  font-weight: 500;
  border-left: solid 4px #289137;
  margin-bottom: 0;
}
#segmento .principal {
  height: 100%;
}
#segmento .principal .nota_fuerte a .card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  height: 100%;
}
#segmento .principal .nota_fuerte a .card img {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
#segmento .principal .nota_fuerte a .card div {
  width: 100%;
  padding: 0;
}
#segmento .principal .nota_fuerte a .card div h3 {
  text-align: center;
  background-color: #5dcb6c;
  font-weight: 600;
  font-size: 1.75rem;
}
#segmento .principal .nota_fuerte a .card div h3 span {
  background-color: transparent;
  font-weight: 600;
  line-height: 2rem;
  padding: 0.1rem;
}
#segmento .principal .nota_fuerte a .card div p {
  font-size: 1rem;
}

/* ========================================
   seg_notas (para seccion.php / region.php)
   ======================================== */
#seg_notas {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
}
#seg_notas .nota_fuerte {
  width: 100%;
  height: 100%;
}
#seg_notas .nota_fuerte a {
  display: flex;
  height: 100%;
}
#seg_notas .nota_fuerte a .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border-radius: 0.4rem 0 0 0;
  border-color: rgba(0, 0, 0, 0.25);
}
#seg_notas .nota_fuerte a .card img {
  width: 100%;
  aspect-ratio: 1.266/1;
  object-fit: cover;
}
#seg_notas .nota_fuerte a .card .card-body {
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
}
#seg_notas .nota_fuerte a .card .card-body h5 {
  margin-bottom: 0.5rem;
  color: #289137;
  font-weight: 700;
  font-size: 3.5rem;
}
#seg_notas .nota_fuerte a .card .card-body p {
  font-weight: 400;
  font-size: 1.5rem;
}

#verMasBtn {
  background-color: #289137;
  color: #ffffff;
}

#una_publi {
  display: flex;
  width: 100%;
  gap: 1rem;
  margin-bottom: 1rem;
}
#una_publi .publicidad a img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.4rem;
}

/* ========================================
   Estilos para la página de NOTA INDIVIDUAL (nota.php)
   ======================================== */
.nt_container {
  /* Este contenedor se usa en nota.php para la nota individual */
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 75%;
  margin-top: 0.5rem;
}
.nt_container .nota_fuerte {
  width: 100%;
}
.nt_container .nota_fuerte .card {
  width: 100%;
  /* Título principal */
  /* Subtítulo o bajada */
  /* Links dentro de la nota */
  /* Fecha y segment info */
  /* Compartir en redes */
  /* Imagen principal de la nota */
  /* Imágenes secundarias dentro del contenido */
  /* Párrafos del contenido */
  /* Videos de YouTube */
  /* Texto adicional que a veces aparece dentro de la nota */
}
.nt_container .nota_fuerte .card h1 span {
  color: #289137;
}
.nt_container .nota_fuerte .card h2 {
  font-weight: 400;
  font-size: 1.1rem;
  color: #8f8f8f;
}
.nt_container .nota_fuerte .card a {
  color: rgb(90, 50, 201);
}
.nt_container .nota_fuerte .card .fechaSegment {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100%;
  font-size: 1.5rem;
}
.nt_container .nota_fuerte .card .fechaSegment #creacion {
  font-size: 1.5rem;
}
.nt_container .nota_fuerte .card .compartir {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 100%;
}
.nt_container .nota_fuerte .card .compartir a {
  text-decoration: none;
  color: #000000;
}
.nt_container .nota_fuerte .card .img-principal {
  margin: 2rem 5%;
  width: 90%;
  object-fit: cover;
  aspect-ratio: 16/10;
}
.nt_container .nota_fuerte .card > img:not(.img-principal) {
  margin: 1.5rem auto;
  width: 75%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.nt_container .nota_fuerte .card p {
  font-size: 1.5rem;
}
.nt_container .nota_fuerte .card .yt {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nt_container .nota_fuerte .card .yt iframe {
  width: 70%;
  aspect-ratio: 560/315;
}
.nt_container .nota_fuerte .card .textito p {
  line-height: 0;
}
.nt_container .nota_fuerte .card .textito img {
  display: block;
  margin: 1.5rem auto;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* ========================================
   MEDIA QUERIES
   ======================================== */
@media (max-width: 1080px) {
  #dos_notas .nota_fuerte {
    width: calc(50% - 0.5rem);
  }
  #dos_notas .nota_fuerte a .card img {
    aspect-ratio: 1.219175/1;
  }
  #dos_notas .nota_fuerte a .card div h2 {
    font-size: 4rem;
  }
  #dos_notas .nota_fuerte a .card div p {
    font-size: 2rem;
  }
  .nt_container {
    width: 100%;
  }
  .nt_container .nota_fuerte {
    /* Ajustes generales de ancho */
  }
  .nt_container .nota_fuerte .card {
    align-items: center;
  }
  .nt_container .nota_fuerte .card .fechaSegment {
    padding: 0 5%;
  }
  .nt_container .nota_fuerte h1,
  .nt_container .nota_fuerte h2,
  .nt_container .nota_fuerte hr,
  .nt_container .nota_fuerte .compartir,
  .nt_container .nota_fuerte .textito {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .in_container {
    width: 95%;
  }
  .portada {
    flex-direction: column;
  }
  .portada .nota_principal {
    width: 100%;
  }
  .portada .nota_principal a div {
    border: 0;
  }
  .portada .nota_principal a div div {
    padding: 0;
    position: relative;
  }
  .portada .nota_principal a div div div {
    padding: 0;
  }
  .portada .nota_principal a div div div h1 {
    font-size: 1rem;
    line-height: 2rem;
    padding: 0.5rem;
  }
  .portada .nota_principal a div div div h1 span {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 0;
    background-color: transparent;
    color: #289137;
    padding: 0;
  }
  .portada .notas_secundarias {
    width: 100%;
    flex-direction: row;
  }
  .portada .notas_secundarias a {
    width: 100%;
    height: 100%;
  }
  #tres_notas_y_publi {
    flex-direction: column;
    justify-content: space-between;
  }
  #tres_notas_y_publi .dos_notas {
    flex-direction: row;
    width: 100%;
    gap: 0.5rem;
  }
  #tres_notas_y_publi .dos_notas a {
    display: flex;
    width: calc(50% - 0.25rem);
  }
  #tres_notas_y_publi .dos_notas a .card {
    border: 0;
  }
  #tres_notas_y_publi .dos_notas a .card img {
    width: 100%;
    aspect-ratio: 10/6;
    object-fit: cover;
  }
  #tres_notas_y_publi .dos_notas a .card div {
    flex-direction: column;
    padding: 0.35rem;
  }
  #tres_notas_y_publi .dos_notas a .card div h5 {
    font-size: 1.15rem;
  }
  #tres_notas_y_publi .dos_notas a .card div p {
    line-height: 1rem;
  }
  #tres_notas_y_publi .nota_fuerte {
    width: 100%;
  }
  #tres_notas_y_publi .nota_fuerte a .card div {
    flex-direction: column;
    padding: 0.5rem;
  }
  #tres_notas_y_publi .nota_fuerte a .card div h2 {
    margin-bottom: 0.5rem;
    color: #289137;
    font-weight: 600;
    font-size: 2rem;
  }
  #tres_notas_y_publi .nota_fuerte a .card div p {
    font-weight: 400;
    font-size: 1rem;
  }
  #tres_notas_y_publi .publicidad {
    display: grid;
    gap: 1rem;
    width: 100%;
    background-color: rgb(146, 146, 146);
    padding: 1rem;
    border-radius: 0.4rem;
    /* Caso: exactamente 3 hijos */
    /* Caso: 4 o más hijos */
  }
  #tres_notas_y_publi .publicidad a img {
    object-fit: cover;
    width: 100%;
    height: auto;
    border-radius: 0.2rem;
  }
  #tres_notas_y_publi .publicidad:has(> a:nth-child(3):last-child) {
    grid-template-columns: repeat(3, 1fr);
  }
  #tres_notas_y_publi .publicidad:has(> a:nth-child(4)) {
    grid-template-columns: repeat(2, 1fr);
  }
  #tres_notas {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-direction: column;
  }
  #tres_notas img {
    border-radius: 0;
  }
  #tres_publi {
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  #tres_publi img {
    border-radius: 0;
  }
  #dos_notas {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  #dos_notas .nota_fuerte {
    width: 100%;
  }
  #dos_notas .nota_fuerte a .card img {
    border-radius: 0;
  }
  #dos_notas .nota_fuerte a .card div h2 {
    font-size: 1.25rem;
    font-weight: 600;
  }
  #seg_notas .nota_fuerte a .card .card-body h5 {
    font-size: 2rem;
  }
  #seg_notas .nota_fuerte a .card .card-body p {
    font-size: 1rem;
  }
  #cuatro_notas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
  #cuatro_notas a .card img {
    border-radius: 0;
  }
  footer #trebol {
    display: none;
  }
  /* #seg_notas en una sola columna a 768px o menos */
  #seg_notas {
    grid-template-columns: 1fr;
  }
  /* .nt_container en nota.php a ancho completo */
  .nt_container {
    width: 100%;
  }
  .nt_container .nota_fuerte .card {
    align-items: center;
  }
  .nt_container .nota_fuerte .card .fechaSegment {
    padding: 0 5%;
  }
  .nt_container .nota_fuerte .card .fechaSegment a {
    font-size: 1.25rem;
  }
  .nt_container .nota_fuerte .card .fechaSegment #creacion {
    font-size: 1.25rem;
  }
  .nt_container .nota_fuerte h1,
  .nt_container .nota_fuerte h2,
  .nt_container .nota_fuerte hr,
  .nt_container .nota_fuerte .compartir,
  .nt_container .nota_fuerte .textito {
    width: 90%;
  }
  .nt_container .nota_fuerte h1 a svg,
  .nt_container .nota_fuerte h2 a svg,
  .nt_container .nota_fuerte hr a svg,
  .nt_container .nota_fuerte .compartir a svg,
  .nt_container .nota_fuerte .textito a svg {
    width: 101%;
  }
}
@media (max-width: 425px) {
  .in_container {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */
