/* lead
 * Last update : 11.3.26
*/

.lead-page {
  position: relative;
  padding-top: clamp(4rem, 6vw, 7rem);
}
.lead-page .container {
  position: relative;
  z-index: 1;
}

.lead-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, 30rem);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.lead-hero__inner {
  max-width: 48rem;
}

.lead-hero__inner .lead-hero_kicker {
  display:inline-flex;
  align-items:center;
  gap:10px;
  border: 1px solid rgba(214,192,138,.38);
  background: rgba(214,192,138,.08);
  color: #f2f2f2;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lead-hero__inner .lead-hero_kicker span {
  width:7px;
  height:7px;
  border-radius:999px;
  background: #ffffff;
}
.lead-hero__inner h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

/* FORM */
.lead-form-card {
  position: sticky;
  top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 1.5rem;
  background: #0e0e0e;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.lead-form-card__head {
  margin-bottom: 1.5rem;
}

.lead-showcase__intro h2 {
  margin: 0;
  padding: 0;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}


/* VIDEOS */

.lead-showcase__intro {
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 40rem;
}
.lead-videos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
  align-items: start;
}
.lead-video--offset {
  padding-top: 3rem;
}


/* RESPONSIVE */

@media screen and (max-width: 991px) {

  .lead-hero__grid {
    grid-template-columns: 1fr;
  }

  .lead-form-card {
    position: relative;
    top: auto;
  }

  .lead-video--offset {
    padding-top: 0;
  }

}

@media screen and (max-width: 767px) {

  .lead-page {
    padding: 3.5rem 0;
  }

  .lead-hero {
    padding-bottom: 3rem;
  }

  .lead-videos {
    grid-template-columns: 1fr;
  }

  .lead-video__media,
  .lead-form-card {
    border-radius: 1.2rem;
  }

}