.v2-reels {
  background: #f7f6ff;
  padding: 80px 20px 72px;
}

.v2-reels__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.v2-reels__head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.v2-reels__eyebrow {
  margin: 0 0 12px;
  color: #6b21a8;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.v2-reels h2 {
  margin: 0 0 12px;
  color: #14191e;
  font-family: Poppins, sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 120%;
}

.v2-reels__head p {
  margin: 0;
  color: #5b6b75;
  font-size: 17px;
  line-height: 160%;
}

.v2-reels__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-reel {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(20, 25, 30, .12);
}

.v2-reel iframe {
  display: block;
  width: 100%;
  height: 580px;
  border: 0;
  background: #111;
}

.v2-reel__open {
  display: block;
  padding: 12px 14px;
  text-align: center;
  color: #6b21a8;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.v2-reel__open:hover { color: #7e22ce; }

.v2-reels__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.v2-reels .v2-btn--outline {
  background: transparent;
  border-color: #6b21a8;
  color: #6b21a8;
  box-shadow: none;
}

.v2-reels .v2-btn--outline:hover {
  background: #6b21a8;
  color: #fff;
  border-color: #6b21a8;
}

@media screen and (max-width: 1100px) {
  .v2-reels__grid { grid-template-columns: 1fr 1fr; }
}

@media screen and (max-width: 700px) {
  .v2-reels { padding: 56px 16px 48px; }
  .v2-reels h2 { font-size: 26px; }
  .v2-reels__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .v2-reel {
    flex: 0 0 82%;
    scroll-snap-align: start;
    min-height: 520px;
  }
  .v2-reel iframe { height: 560px; }
}
