.up__title{
  color: var(--color-texto-verde);
}
.up__upcoming-wrapper{
  gap: 1rem;
  display: flex;
  flex-direction: column;
  margin: 1rem auto 2rem;
}
.up__events{
  box-shadow: -4px 3px 8px 0px rgba(0,0,0,0.13);
  padding: 1rem 0 0 1rem;
}
.up__card-name{
  font-size: 1.5rem;
  color: var(--color-text-negro);
  font-weight: bold;
  text-transform: uppercase;
}
.up__details{
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
  width: 80%;
  justify-content: space-between;
  max-width: 60rem;
  position: relative;
}
.up__details span{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.up__details-modalidad,
.up__details-precio{
  width: 10rem;
}
.up__details-micro{
  width: 6rem;
}
.up__details-red{
  color: var(--color-rojo-error);
}
.up__details-oficial{
  color: var(--color-oficial-cec);
  font-weight: 600;
}
.up__micro-logo{
  width: 4rem;
}
.up__anchor{
  margin-left: auto;
  display: flex;
  width: fit-content;
  padding: 1.5rem 2.5rem;
  color: white;
  text-decoration: none;
  background-color: var(--color-texto-verde);
}
.up__corp{
  text-align: center;
  font-size: 1.3rem;
  margin: 4rem auto;
  span{
    font-weight: bold;
  }
}
.up__corp span:nth-child(1){
  color: var(--color-azul-background);
}
.up__corp span:nth-child(2){
  color: var(--color-text-negro);
}
.up__corp a{
  color: white;
  text-decoration: none;
  background-color: #e28a0c;
  box-shadow: -4px 3px 8px 0px rgba(0,0,0,0.13);
  padding: .3rem 1.5rem;
  border-radius: .5rem;
}
.up__paginator{
  text-align: center;
  margin: 3rem 0;
}
.up__paginator-title{
  color: white;
  background-color: var(--color-texto-verde);
  text-align: center;
  width: fit-content;
  margin: 1rem auto;
  padding: .3rem 2.5rem;
  box-shadow: -4px 3px 8px 0px rgba(0,0,0,0.13);
  border-radius: .5rem;
}
@media (max-width: 780px) {
  .up__details{
    width: 100%;
    flex-direction: column;
    align-items: unset;
  }
  .up__details-micro{
    position: absolute;
    right: .5rem;
    top: .5rem;
  }
  .up__details span{
    text-align: left;
  }
}