.gigs-section {
  display: flex;
  position: center;
  justify-content: left;
  margin-top: 5rem;
  background-color: var(--oa-text-dark);
}

.gigs-section .left {
  content: "";
  width: 45%;
  height: 100%;
}

.gigs-section .right {
  content: "";
  width: 55%;
  height: 100%;
}

.gigs-section-media {
  margin-bottom: 1.5rem;
  justify-content: center;
  position: flex;
  width: 100%;
  height: auto;
  padding-bottom: 56.25%;
  transform: scale(0.9) translateY(-1.35rem) scaleX(1.09) scaleY(1.04)
}

.gigs-section-media iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 0;
}

.gigs-section .gig {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  height: 7rem;
}

.gigs-section .right .gig:nth-child(1) {
  background-color: var(--oa-pink-low-alpha);
}

.gigs-section .right .gig:nth-child(2) {
  background-color: var(--oa-yellow-low-alpha);
}

.gigs-section .right .gig:nth-child(3) {
  background-color: var(--oa-green-low-alpha);
}

.gigs-section .right .gig:nth-child(4) {
  background-color: var(--oa-blue-low-alpha);
}

.gigs-section .date {
  width: 5rem;
  height: 5rem;
  margin: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--oa-text-dark);
  flex-grow: 2;
}

.gigs-section .date .num {
  font-weight: bold;
  font-size: 2rem;
}

.gigs-section .description {
  width: 100%;
  text-align: left;
  flex-shrink: 2;
}

.gigs-section .description .name {
  font-weight: bold;
  font-size: 2rem;
}

.gigs-section .buy-btn {
  width: 5rem;
  height: 5rem;
  margin: 1rem;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  color: var(--oa-text-dark);
  flex-grow: 2;
  text-decoration: none;
  cursor: pointer;
  display:block;
}

.gigs-section .right .gig:nth-child(1) .date,
.gigs-section .right .gig:nth-child(1) .buy-btn {
  background-color: var(--oa-pink);
}

.gigs-section .right .gig:nth-child(2) .date,
.gigs-section .right .gig:nth-child(2) .buy-btn {
  background-color: var(--oa-yellow);
}

.gigs-section .right .gig:nth-child(3) .date,
.gigs-section .right .gig:nth-child(3) .buy-btn {
  background-color: var(--oa-green);
}

.gigs-section .right .gig:nth-child(4) .date,
.gigs-section .right .gig:nth-child(4) .buy-btn {
  background-color: var(--oa-blue);
}

@media screen and (max-width: 900px) {
  .gigs-section {
    flex-direction: column;
  }

  .gigs-section .left {
    width: 100%;
    max-height: 28rem;
  }

  .gigs-section .right {
    width: 100%;
  }
}
