.paginador_noticias{
    display: flex;
    justify-content: center;
    align-items: center;
}

.paginador_noticias .page-item.active .page-link{
    background-color: #031028;
    border-color: #031028;
}

.paginador_noticias .page-link {
    color: #031028;
}

.paginador_noticias .disabled{
    display: none;
}

@media (max-width: 1441px) {
    .detalle-noti-contenido .contenedor-detalle-noti-contenido .titulo-contenido h2{
        font-size: 44px;
        }
}

@media(max-width: 1023px) {
    .detalle-noti-contenido .contenedor-detalle-noti-contenido .titulo-contenido h2{
        font-size: 40px;
        }
}


/* POP UP HOME*/
   .popup_overlay {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
  transition: visibility 0s, opacity 0.5s;
  z-index: 9999;
  cursor: pointer;
}

/* Evita que el contenido interno sea afectado por el clic */
.popup-content {
  position: relative;
  pointer-events: auto;
  border-radius: 5px;
  text-align: center;
  /* background: white; */
}

.popup_overlay img {
  max-width: 1000px;
  height: auto;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

.popup_overlay .close {
  position: absolute;
  top: -5px;
  right: 0px;
  text-decoration: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
  background: #FD465F;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  text-align: center;
  font-weight: 700;
  line-height: 35px;
  opacity: 1;
}

#closePopup:checked ~ .popup_overlay {
  visibility: hidden;
  opacity: 0;
}

#closePopup {
  display: none;
}

/* POP UP HOME*/


/*Menu Header - Sub links y newsletter*/
 
.dropdown-menu .dropdown-item{
    color: #000F2E;
    padding: 0.60rem 1.5rem;
}
@media (max-width: 992px) {
   .dropdown-menu .dropdown-item{
        color: #26296e;
        font-weight: 600;
    } 
}
.dropdown-menu .dropdown-item:active{
    background-color: #26296E;
}
 

.sec_newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  /* padding: 2rem; */
  /* background-color: #f8f9fa; */
  justify-content: center;
  border-radius: 12px;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  width: 100%;
}

.sec_newsletter article {
  flex: 1 1 300px;
  max-width: 320px;
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.sec_newsletter article:hover {
  transform: translateY(-5px);
}

.sec_newsletter figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 1rem;
}

.sec_newsletter img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
  border-radius: 8px 8px 0 0;
}

.sec_newsletter h3 {
  font-size: 1.1rem;
  margin: 0.5rem 0 1rem;
  color: #333;

  display: -webkit-box;
  -webkit-line-clamp: 2;       /* máximo 2 líneas */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: normal;
}

.sec_newsletter a {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #26296E;
  color: white;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.sec_newsletter a:hover, .sec_newsletter a:focus:not(:focus-visible) {
  background-color: #3f4397;
  text-decoration: none;
  color: white;
}



.sec_newsletter p{
    margin-bottom: 0px;
    font-weight: 400;
    color: #333;
}


.sec_newsletter .btn_ultim {
    background: white;
    margin-top: 10px;
    border-radius: 4px;
    border: 2px solid #26296E;
    color: #26296E;
}
.sec_newsletter .btn_ultim:hover, .sec_newsletter .btn_ultim:focus:not(:focus-visible)  {
    background-color: #ededed;
    color:#26296E
}
/*Menu Header - Sub links y newsletter*/

