
.section-header {
    text-align: center;
    margin: 0 auto;
    padding-top: 50px;
    margin-bottom: 50px;
    font: small-caps 300 75px 'Lato', sans-serif;
    letter-spacing: 3px;
    color: #222;
  }
  
  .gallery {
    margin: 15px auto;
    text-align: center;
    max-width: 900px;
  }
  
  .gallery-item-wrapper {
    margin: 10px auto;
    display: inline-block;
    
    height: 236px; /* WITH BOTTOM DESCRIPTION: 216px */
    width: 295px; /* 295px */
    overflow: hidden;
    
    position: relative;
  }
  
  .gallery-image {
    height: 166px; /* 166px */
    width: 295px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    -ms-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute; /* NECESSARY? */
  }
  
  /*
  .gallery ul li div a { text-decoration: none; }
  */
  
  .ul-gallery{
    display: flex;
    flex-wrap: wrap;
  }
  
  .text {
    position: relative;
    top: 165px;
    display: inline-block;
    
    font: 100 16px 'Lato';
    margin: 0 auto;
    text-align: center;
    width: 295px;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #111;
    color: #fff;
    border-top: 1px solid #eee;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
  
    letter-spacing: .7px;
    line-height: 1.2;
  }
  
  .span-text {
    font-weight: 700;
    letter-spacing: 1.2px;
    font-size: 19px;
    font-family: 'Alegreya Sans SC', sans-serif;
  }

/* Estilos generales para la paginación */
.pagination-container {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.pagination {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.pagination-item {
  margin: 0 5px;
}

.pagination-item a {
  display: block;
  padding: 8px 16px;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Estilo del enlace activo */
.pagination-item a.current {
  background-color: #004f9e;
  color: white;
  font-weight: bold;
}

/* Efecto hover para los enlaces */
.pagination-item a:hover {
  background-color: #0061d5;
  transform: scale(1.05);
}

/* Estilo para los enlaces deshabilitados */
.pagination-item a.disabled {
  background-color: #e0e0e0;
  color: #b0b0b0;
  cursor: not-allowed;
}

/* Responsividad: paginación en pantallas pequeñas */
@media (max-width: 600px) {
  .pagination-container {
      flex-direction: column;
  }
  .pagination {
      flex-direction: column;
  }
  .pagination-item {
      margin-bottom: 5px;
  }
}
