@charset "UTF-8";
/* "Hear the engine on real calls" video cards — matches Figma node 15463:12008 */
.vt_videos {
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f4f4f5 0%, #f4f4f5 90%, #ffffff 100%);
}
.vt_videos .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.vt_videos__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.vt_videos__eyebrow {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #4a3bbe;
}
.vt_videos__title {
  margin: 0;
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
  color: #1a1a22;
}
.vt_videos__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #1a1a22;
}
.vt_videos {
  /* Language-pair cards */
}
.vt_videos__cards {
  display: flex;
  gap: 24px;
}
.vt_videos__card {
  flex: 1 1 0;
  min-width: 0;
  height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
  /* Hover — matches Figma node 15493:8126 */
}
.vt_videos__card:hover {
  background: linear-gradient(184.5deg, #ffffff 35%, #ccfaf3 66%, #b4abfd 128%);
}
.vt_videos__card:hover .vt_videos__play {
  color: #23232e;
  text-decoration: underline;
}
.vt_videos__pair {
  display: flex;
  align-items: center;
  gap: 16px;
}
.vt_videos__swap {
  flex: 0 0 auto;
  transform: rotate(90deg);
}
.vt_videos__langs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
  color: #23232e;
}
.vt_videos__langs * {
  color: inherit;
  font-weight: inherit;
}
.vt_videos__play {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Plus Jakarta Sans";
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: #23232e;
}
.vt_videos__play svg {
  flex: 0 0 auto;
}
.vt_videos__play:hover {
  color: #614efa;
}
.vt_videos {
  /* "Try it yourself" banner */
}
.vt_videos__banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 56px 32px 32px;
  border-radius: 16px;
  background: radial-gradient(120% 600% at 87% 50%, #1c1647 0%, #0e0c32 48%, #00011d 96%);
}
.vt_videos__banner-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
}
.vt_videos__banner-title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  color: #f7f7f8;
}
.vt_videos__banner-desc {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #d0d0d8;
}
.vt_videos__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  height: 48px;
  padding: 0 24px 2px;
  border-radius: 10px;
  background: #614efa;
  color: #ffffff;
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease;
}
.vt_videos__cta:hover {
  background: #5544dc;
}

@media (max-width: 1100px) {
  .vt_videos {
    padding: 64px 0;
  }
  .vt_videos__title {
    font-size: 32px;
    line-height: 40px;
  }
  .vt_videos__cards {
    flex-wrap: wrap;
  }
  .vt_videos__card {
    flex: 1 1 calc(50% - 12px);
    height: auto;
    min-height: 200px;
    gap: 32px;
  }
  .vt_videos__banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }
}
@media (max-width: 575px) {
  .vt_videos__card {
    flex: 1 1 100%;
  }
  .vt_videos__cta {
    width: 100%;
  }
}
/* Tablet + mobile — video cards scroll horizontally (302x280 each) per Figma
   15648:9148. Covers <=1281 so mobile scrolls too; desktop (>1281) untouched.
   Placed after the 1100/575 blocks so it wins (overrides the wrap/stack). */
@media screen and (max-width: 1281px) {
  .vt_videos__cards {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .vt_videos__cards::-webkit-scrollbar {
    display: none;
  }
  .vt_videos__card {
    flex: 0 0 302px;
    height: 280px;
    min-height: 0;
  }
}
/* Tablet only — banner stays a single row + reduced heading/padding.
   Mobile (<=767) keeps the stacked banner from the 1100 block. */
@media screen and (min-width: 768px) and (max-width: 1281px) {
  .vt_videos {
    padding: 64px 0;
  }
  .vt_videos__title {
    font-size: 32px;
    line-height: 40px;
  }
  .vt_videos__banner {
    flex-direction: row;
    align-items: center;
    padding: 32px 56px 32px 32px;
  }
}
/* Mobile — let the card scroller bleed past the container's 16px gutters so the
   last card isn't cropped; keep the first card aligned to the gutter.
   Cards are 280x240 per Figma 15782:5574. */
@media screen and (max-width: 767px) {
  .vt_videos__cards {
    gap: 16px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .vt_videos__card {
    flex: 0 0 280px;
    height: 240px;
  }
}
