.reels {
  padding: 145px 5.5% 155px;
  background: #e8ece5;
}

.reels-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin: 0 6.5% 70px;
}

.reels-head h2 {
  font-size: clamp(48px, 5vw, 75px);
}

.reels-head > p {
  max-width: 330px;
  margin: 0;
  color: #526058;
  font-size: 15px;
  line-height: 1.85;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 54px 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.reel-card h3 {
  margin: 20px 0 8px;
  font-size: 27px;
}

.reel-card > p {
  margin: 0;
  color: #526058;
  font-size: 13px;
  line-height: 1.65;
}

.reel-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #182b24;
}

.reel-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 900px) {
  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .reels {
    padding: 90px 9%;
  }

  .reels-head {
    display: block;
    margin: 0 0 45px;
  }

  .reels-head > p {
    margin-top: 26px;
  }

  .reels-grid {
    display: block;
    max-width: 420px;
  }

  .reel-card {
    margin-bottom: 50px;
  }

  .reel-card:last-child {
    margin-bottom: 0;
  }
}
