.new-releases__main {
  display: flex;
  justify-content: space-between;;
  gap: 50px;
  margin: 60px 0;
}
.new-releases__main[data-image-side=left] {
  flex-direction: row-reverse;
}

.new-releases__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 150px 0;
}
.new-releases__content p {
  font-family: "Gilroy", sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 90px;
  letter-spacing: 1.68px;
  max-width: 410px;
  color: var(--dark);
}

.new-releases__banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1.5;
  aspect-ratio: 1/1;
}
.new-releases__banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -1;
}
.new-releases__banner p {
  font-family: var(--main-font1);
  font-size: 50px;
  font-weight: 800;
  color: #fff;
  max-width: 442px;
  line-height: 60px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  color: var(--light);
}

@media only screen and (max-width: 1024px) {
  .new-releases__content p {
    font-size: 60px;
  }
  .new-releases__banner p {
    font-size: 40px;
  }
}
@media only screen and (max-width: 800px) {
  .new-releases__main {
    height: 500px;
  }
  .new-releases__content p {
    font-size: 50px;
    line-height: 60px;
  }
  .new-releases__banner {
    flex: 1;
    aspect-ratio: 1/1.2;
  }
  .new-releases__banner p {
    font-size: 34px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .new-releases__main {
    height: auto;
    flex-direction: column-reverse !important;
  }
  .new-releases__content {
    width: 100%;
    padding: 20px 0;
  }
  .new-releases__content p {
    max-width: 100%;
  }
  .new-releases__banner {
    aspect-ratio: 1/0.6;
  }
  .new-releases__banner p {
    font-size: 30px;
  }
}
@media only screen and (max-width: 552px) {
  .new-releases__main {
    gap: 24px;
  }
  .new-releases__content p {
    font-size: 32px;
  }
}
