.lineup-list {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 1rem 1rem;
}
.lineup-list .lineup-item {
  width: 100%;
  display: block;
  list-style: none;
}

.lineup-list .lineup-item .lineup-item-wrapper {
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 3rem -2rem;
  color: var(--black);
}

.lineup-item-data {
  padding: 1rem;
  background: linear-gradient(90deg, var(--primary) 36%, rgba(0, 0, 0, 0) 75%);
}

.lineup-item-name {
  font-size: 2rem;
}

.lineup-item-day {
  margin: 0;
  font-size: 1.2rem;
}

@media only screen and (min-width: 680px) {
  .lineup-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media only screen and (min-width: 1000px) {
  .lineup-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lineup-list .lineup-item .lineup-item-wrapper {
    background-size: 100%;
    background-position: top center;
    padding-block-start: 10rem;
    aspect-ratio: 3/2;
    display: flex;
  }

  .lineup-item-data {
    padding: 1rem;
    width: 100%;
    margin-block-start: auto;
    background: var(--primary);
    transition: padding 200ms;
  }

  .lineup-list .lineup-item .lineup-item-wrapper:hover .lineup-item-data {
    padding-block-end: 3rem;
  }
}

.article-schedule-2024 {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  padding-left: 0;
  padding: 25px;
}

.schedule-band-block {
  cursor: pointer;
  background-color: rgb(13, 13, 13);
  position: relative;
  background-repeat: no-repeat;
  background-position: right;
  height: 80px;
  background-size: contain;
  width: 60%;
  left: 20%;
}

.no-pointer {
  cursor: text !important;
}

.schedule-band-section {
  position: absolute;
  color: rgb(224, 224, 224);
  top: 55%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  width: 100%;
}

.grid-section {
  position: absolute;
  color: rgb(224, 224, 224);
  top: 87%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  text-align: center;
  width: 100%;
}

.schedule-band-block > img {
  inline-size: 100%;
}

/* Individual band */

.artist-head {
  color: rgb(200, 200, 200);
}

.artist-head__sticky > h1 {
  font-size: 4rem;
  color: rgb(224, 224, 224);
}

.tba-content {
  font-size: 3rem;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--light-neutral);
}

@media only screen and (max-width: 1000px) {
  .lineup-section {
    width: 90%;
    margin-left: 5%;
    height: 100%;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .img-presentacio-left {
    width: 100%;
    margin-left: 0%;
  }

  .tba-content {
    font-size: 1.5rem;
    padding: 1rem;
    text-align: center;
    color: #d3d3d3;
  }

  .article-schedule-2024 {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 10px;
    list-style: none;
    padding-left: 0;
    padding: 25px;
  }

  .schedule-band-block {
    cursor: pointer;
    background-color: rgb(13, 13, 13);
    position: relative;
    background-repeat: no-repeat;
    background-position: right;
    height: 100px;
    background-size: contain;
    width: 100%;
    left: 0%;
  }

  .schedule-band-section {
    position: absolute;
    text-shadow: -3px 0px 10px #000000ad;
    color: rgb(224, 224, 224);
    height: 100%;
    top: 100%;
    left: 100%;
    padding-left: 10px;
    transform: translateY(-100%) translateX(-100%);
    text-align: left;
    width: 100%;
    /*background: rgb(4,151,63);*/
    background: linear-gradient(
      90deg,
      rgba(225, 227, 1) 0%,
      rgba(0, 0, 0, 1) 32%,
      rgba(2, 0, 36, 0) 85%
    );
  }

  .grid-section {
    position: absolute;
    color: rgb(224, 224, 224);
    height: 100%;
    top: 100%;
    left: 100%;
    padding-left: 10px;
    transform: translateY(-100%) translateX(-100%);
    text-align: left;
    width: 100%;
  }

  .schedule-band-section > h2 {
    margin-top: 3.5%;
  }
}
