.video-models-section {
  --vm-text: #111827;
  --vm-muted: #5f6f8a;
  --vm-blue: #2e5bd8;
  --vm-pink: #df4aa8;
  --vm-purple: #8c4dff;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 120px 0 92px;
  background: #ffffff;
  color: var(--vm-text);
}

.video-models-section * {
  box-sizing: border-box;
}

.video-models-section > .container {
  position: relative;
  z-index: 1;
  max-width: 1260px;
}

.video-models-header {
  max-width: 760px;
  margin: 0 auto 64px;
  padding-top: 0;
  text-align: center;
}

.video-models-badge {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.42rem 1rem;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 999px;
  background: #ffffff;
  color: #245de8;
  font-size: 0.92rem;
  font-weight: 700;
}

.video-models-svg-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  flex: 0 0 auto;
  fill: currentColor;
  vertical-align: -0.12em;
}

.video-models-badge .video-models-svg-icon {
  color: #ff5ebd;
}

.video-models-header h2 {
  margin: 1.45rem 0 0;
  color: #050505;
  font-size: clamp(2.5rem, 4.7vw, 3.35rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: 0;
}

.video-models-header h2 span,
.video-models-header h2 strong {
  display: block;
}

.video-models-header h2 strong {
  background: linear-gradient(90deg, #df4aa8 8%, #8c4dff 92%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.video-models-header p {
  max-width: 710px;
  margin: 1.55rem auto 0;
  color: var(--vm-muted);
  font-size: clamp(1rem, 1.7vw, 1.17rem);
  line-height: 1.48;
}

.video-models-divider {
  display: block;
  width: 120px;
  height: 1px;
  margin: 2.3rem auto 0;
  background: linear-gradient(90deg, transparent, rgba(223, 74, 168, 0.55), rgba(140, 77, 255, 0.45), transparent);
}

.video-models-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.video-models-card {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 24px 42px rgba(15, 23, 42, 0.12);
}

.video-models-media {
  position: relative;
  aspect-ratio: 1.68 / 1;
  overflow: hidden;
  background: #111827;
}

.video-models-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.45));
  pointer-events: none;
}

.video-models-media img,
.video-models-media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-models-media img {
  object-fit: cover;
}

.video-models-media.is-playing::after,
.video-models-media.is-playing .video-models-play {
  display: none;
}

.video-models-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: rgba(255, 255, 255, 0.28);
  font-size: 5rem;
  font-weight: 900;
}

.video-models-play {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-models-play .video-models-svg-icon {
  width: 1.45rem;
  height: 1.45rem;
  margin-left: 0.1rem;
}

.video-models-play:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-models-card-body {
  padding: 1.25rem 1.25rem 1.45rem;
}

.video-models-card h3 {
  margin: 0;
  color: #111827;
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.3;
}

.video-models-card p {
  min-height: 5.4rem;
  margin: 0.7rem 0 0;
  color: #1f2937;
  font-size: 0.96rem;
  line-height: 1.55;
}

.video-models-tags {
  display: none;
}

.video-models-card-button {
  display: inline-flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  border: 0;
  border-radius: 10px;
  background: var(--vm-blue);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.video-models-card-button .video-models-svg-icon {
  width: 0.92rem;
  height: 0.92rem;
  color: #ff9ed1;
}

.video-models-card-button:hover {
  background: #244fc5;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-1px);
}

.video-models-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: 3.45rem;
  padding: 1.45rem 1.55rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.05);
}

.video-models-benefits {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  gap: 1.6rem;
}

.video-models-benefit {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.video-models-benefit + .video-models-benefit {
  padding-left: 1.6rem;
  border-left: 1px solid rgba(15, 23, 42, 0.32);
}

.video-models-benefit-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: 12px;
  background: #ffffff;
  color: #b86cff;
  font-size: 1.2rem;
}

.video-models-benefit:nth-child(2) .video-models-benefit-icon {
  border-color: rgba(236, 72, 153, 0.28);
  color: #ff5ebd;
}

.video-models-benefit:nth-child(3) .video-models-benefit-icon {
  border-color: rgba(59, 130, 246, 0.28);
  color: #3b82f6;
}

.video-models-benefit-icon .video-models-svg-icon {
  width: 1.08rem;
  height: 1.08rem;
}

.video-models-benefit strong,
.video-models-benefit small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-models-benefit strong {
  color: #245de8;
  font-size: 0.95rem;
  font-weight: 900;
}

.video-models-benefit small {
  margin-top: 0.1rem;
  color: #111827;
  font-size: 0.82rem;
}

.video-models-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 1.45rem;
  border-radius: 12px;
  background: linear-gradient(90deg, #8c4dff, #df4aa8);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 12px 22px rgba(140, 77, 255, 0.2);
}

.video-models-cta .video-models-svg-icon {
  width: 1rem;
  height: 1rem;
}

.video-models-cta:hover {
  color: #ffffff;
  text-decoration: none;
  filter: brightness(1.05);
}

@media (max-width: 1199.98px) {
  .video-models-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  .video-models-section {
    padding: 120px 0 72px;
  }

  .video-models-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-models-footer,
  .video-models-benefits {
    align-items: stretch;
    flex-direction: column;
  }

  .video-models-benefit + .video-models-benefit {
    padding-top: 1rem;
    padding-left: 0;
    border-top: 1px solid rgba(15, 23, 42, 0.12);
    border-left: 0;
  }

  .video-models-cta {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .video-models-section {
    padding: 120px 0 58px;
  }

  .video-models-header {
    margin-bottom: 38px;
  }

  .video-models-grid {
    grid-template-columns: 1fr;
  }

  .video-models-card p {
    min-height: 0;
  }
}
