@charset "UTF-8";
/* Dev-experience resources: dashboard banner + CTA tiles — bottom of Figma node 15484:2016 */
.vt_resources {
  padding: 0 0 120px;
}
.vt_resources .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.vt_resources {
  /* Gradient banner: back image + dashboard screenshot overlay */
}
.vt_resources__banner {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  padding: 40px 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, #131032 0%, #20bfa7 100%);
}
.vt_resources__banner-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.vt_resources__banner-img {
  position: relative;
  z-index: 1;
  width: 809px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(28, 31, 32, 0.25);
}
.vt_resources {
  /* CTA tiles */
}
.vt_resources__tiles {
  display: flex;
  gap: 24px;
}
.vt_resources__tile {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 32px 56px 32px 32px;
  border-radius: 16px;
}
.vt_resources__tile--light {
  background: #f4f4f5;
}
.vt_resources__tile--light .vt_resources__badge {
  background: rgba(20, 20, 26, 0.1);
  color: #1a1a22;
}
.vt_resources__tile--light .vt_resources__tile-title,
.vt_resources__tile--light .vt_resources__link {
  color: #1a1a22;
}
.vt_resources__tile--dark {
  background: radial-gradient(140% 240% at 86% -24%, #242729 4%, #161819 100%);
}
.vt_resources__tile--dark .vt_resources__badge {
  background: rgba(243, 240, 255, 0.2);
  color: #f7f7f8;
}
.vt_resources__tile--dark .vt_resources__tile-title,
.vt_resources__tile--dark .vt_resources__link {
  color: #f7f7f8;
}
.vt_resources__tile--dark {
  /* Arrow path is force-painted dark by the global `body *` color rule,
     so override the rendered pixels to white via filter. */
}
.vt_resources__tile--dark .vt_resources__link svg {
  filter: brightness(0) invert(1);
}
.vt_resources__tile-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.vt_resources__badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  line-height: 16px;
  font-weight: 600;
}
.vt_resources__tile-title {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.vt_resources__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-decoration: none;
}
.vt_resources__link svg {
  flex: 0 0 auto;
  color: inherit;
}
.vt_resources__link:hover {
  text-decoration: underline;
}

@media (max-width: 1100px) {
  .vt_resources {
    padding-bottom: 64px;
  }
  .vt_resources__tiles {
    flex-direction: column;
  }
  .vt_resources__tile {
    padding: 24px;
    gap: 32px;
  }
}
