.profile_spotlight_1__wrapper {
  padding-top: 60px;
  padding-bottom: 70px;
}
.profile_spotlight_1__container {
  height: 320px;
  background: url('../assets/bg-texture.webp');
  border-radius: 6px;
  padding: 0;
  display: grid;
  align-items: end;
  position: relative;
}
.profile_spotlight_1__image {
  position: relative;
}
.profile_spotlight_1__blob_wrap {
  overflow: clip;
  height: 100%;
  width: 100%;
  position: absolute;
}
.profile_spotlight_1__blob {
  position: absolute;
  left: 20px;
  top: 80px;
  opacity: 0;
  transform: translateY(-8px);
  transition: 250ms;
}
.profile_spotlight_1__image img {
  object-fit: cover;
  border-bottom-left-radius: 6px;
}
.profile_spotlight_1__person {
  padding: 24px;
  box-shadow: var(--box-shadow-next);
  border-radius: 6px;
  position: absolute;
  left: 110px;
  bottom: -20px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  width: fit-content;
}
.profile_spotlight_1__name {
  display: block;
  padding-right: 50px;
}
.profile_spotlight_1__position {
  color: var(--slate-500);
}
.profile_spotlight_1__icon_name {
  padding: 12px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: var(--box-shadow-warm);
  position: absolute;
  top: -12px;
  right: 8px;
}
.profile_spotlight_1__content_wrap {
  padding: 24px;
  box-shadow: var(--box-shadow-next);
  border-radius: 6px;
  max-width: 520px;
  background-color: #fff;
  position: absolute;
  left: 260px;
  bottom: 96px;
}
.profile_spotlight_1__icon_content {
  padding: 12px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: var(--box-shadow-warm);
  position: absolute;
  top: -28px;
  right: 50px;
}
.profile_spotlight_1__doodle_sparks {
  position: absolute;
  top: -52px;
  right: -50px;
  opacity: 0;
  transform: translateY(8px);
  transition: 250ms;
}

/* Animations */
.viewport .profile_spotlight_1__blob {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 500ms;
}
.viewport .profile_spotlight_1__doodle_sparks {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1000ms;
}

@media(max-width: 1000px) {
  .profile_spotlight_1__container {
    border-radius: unset;
    height: unset;
    padding-top: 20px;
  }
  .profile_spotlight_1__image img {
    border-bottom-left-radius: unset;
  }
  .profile_spotlight_1__person {
    position: relative;
    left: unset;
    bottom: unset;
    margin-top: -60px;
    margin-left: 10px;
  }
  .profile_spotlight_1__content_wrap {
    max-width: calc(100% - 70px);
    position: relative;
    left: unset;
    bottom: unset;
    margin-top: 8px;
    margin-left: 10px;
  }
}
@media(max-width: 500px) {
  .profile_spotlight_1__content_wrap {
    max-width: calc(100% - 50px);
  }
  .profile_spotlight_1__icon_content {
    top: 8px;
    right: -32px;
  }
  .profile_spotlight_1__doodle_sparks {
    display: none;
  }
}