.form-widget {
  padding: 30px;
  border: 1px solid var(--light-purple);
  border-radius: 25px;
  background: var(--white);
  border: none;
}

.form-widget svg {
  width: 70px;
  height: 70px;
  fill: var(--huyck-purple);
}

.form-widget-alt {
  border-radius: 25px;
  background: var(--light-purple);
  padding: 20px;
}

.form-widget-alt svg {
  height: 50px;
  width: 50px;
  margin-right: 10px;
  fill: var(--dark-purple);
}

.form-widget-alt a:not(.btn) {
  color: var(--dark-purple);
}

.form-widget-alt .flex {
  flex-wrap: nowrap;
}

@media (max-width: 600px) {
  .form-widget {
    padding: 20px;
  }

  .form-widget-alt .flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .form-widget-alt .flex svg {
    margin-top: -10px;
  }
}

.headshot {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.headshot img {
  aspect-ratio: 1.45;
  overflow: hidden;
  width: 100%;
  object-fit: cover;
  object-position: center 22%;
}

.headshot:before,
.headshot:after {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  z-index: 2;
}

.headshot:after {
  background: linear-gradient(to right, var(--dark-purple), transparent);
  opacity: 0.9;
  z-index: 1;
}

.headshot:before {
  background-image: url(https://rpff1ve7smxonhzm.public.blob.vercel-storage.com/airbnb-superhost.png);
  background-repeat: no-repeat;
  background-size: 35%;
  background-position: 15% center;
  z-index: 2;
}

.highlights {
  display: grid;
  grid-gap: 10px;
}

@media (max-width: 900px) {
  .main-section {
    flex-direction: column-reverse;
  }
}

@media (min-width: 700px) {
  .highlights {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.highlights svg {
  width: 35px;
  height: 35px;
}

.form-widget h3:not(:first-of-type) {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 1em;
  margin-top: 1.25em;
}
