.programacion-container {
  padding-bottom: 50px;
  padding-top: 30px;
  background-color: rgba(0, 0, 0, 0.9);
}

.g-wrapper {
  max-width: 1400px;
}

.programacion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: white;
}

.g-title{
    color: white;
}

.evento-programacion {
  position: relative;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 20px;
  cursor: pointer;
}

.evento-programacion h2 {
  margin-bottom: 5px;
  margin-top: 0;
}

.evento-programacion .hora {
  font-size: 25px;
}

.evento-programacion h3 {
  margin-top: 5px;
  font-size: 16px;
  font-weight: normal;
}

.evento-programacion img {
  height: 140px;
  width: 200px;
  object-fit: cover;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.evento-programacion h4 {
  font-size: 20px;
  margin: 0;
  flex-shrink: 0;
  width: 200px;
}

.evento-programacion .col1 {
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: opacity 0.3s ease;
}

.evento-programacion:hover img,
.evento-programacion:hover .col1 {
  opacity: 0.5;
}


.evento-programacion .col2 {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-direction: column;
  height: 140px;
  flex-shrink: 0;
}

.evento-programacion .titles * {
  color: white;
}

.evento-programacion .col2 .text {
  display: flex;
  flex-direction: column;
}

.evento-programacion .col2 .text h5{
  margin: 0;
  font-size: 16px;
  font-weight: 100;
  margin-bottom: 10px;
}

.evento-programacion .col2 .text p {
  margin: 0;
  text-align: right;
}

.tags {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100%;
  flex-wrap: wrap;
}

/* Pagination styles */
.pagination-ajax {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  align-items: center;
}

.pagination-ajax a{
  text-decoration: none;
}


.btn-plus-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px; /* Slightly smaller to match visual weight */
  height: 45px;
  border-radius: 50%;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: .3s ease;
  flex-shrink: 0;
}

.btn-plus-circle.has-text {
  width: auto;
  height: 45px; /* Altura fija para asegurar simetría */
  padding: 0 30px;
  border-radius: 100px;
  gap: 12px;
  display: flex;
  align-items: center;
}

.btn-plus-circle.has-text span {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transform: translateY(1px); /* Ajuste fino para alinear con el centro del "+" */
}

.btn-plus-circle:hover {
  background-color: white;
  color: black;
  border-color: white;
}

.btn-plus-circle svg {
  width: 18px;
  height: 18px;
}

.evento-programacion .col2 .actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}


@media (max-width: 1000px) {
  .evento-programacion {
    flex-direction: column;
    gap: 15px;
    padding-bottom: 25px;
  }

  .evento-programacion h4 {
    width: 100%;
    font-size: 18px;
    opacity: 0.8;
  }

  .evento-programacion img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .evento-programacion h2 {
    font-size: 24px;
    margin-top: 5px;
  }

  .evento-programacion h3 {
    font-size: 14px;
  }

  .evento-programacion .col1 {
    width: 100%;
  }

  .evento-programacion .col2 {
    width: 100%;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }

  .evento-programacion .col2 .text p {
    text-align: left;
  }

  .evento-programacion .col2 .text .hora {
    font-size: 24px;
  }

  .tags {
    margin-top: 15px;
    flex-wrap: wrap;
    height: auto;
  }
}
