.coach__container {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100%;
}

.coach__container > svg {
  position: absolute;
  width: 100%;
  top: 50px;
  left: 50%;
  z-index: 0;

  opacity: 0.2;

  fill: #ffda33;

  transform: translate(-50%, 0);
}

.coach__avatar {
  width: 100%;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 1));
  mask-image: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 5%,
    rgba(255, 255, 255, 1) 10%
  );
  transform: translateY(20%);
}

.coach__article {
  z-index: 10;
  display: flex;
  width: 100%;
}

.coach__article--description {
  flex-direction: column;
  position: relative;
  justify-content: center;
  align-items: center;
}

.coach__header {
  width: 80%;
  z-index: 10;
}

.coach__header h1 {
  align-self: center;
  justify-self: center;
  text-align: center;
  font-family: "Capture It";
  font-size: 2.5rem;
  font-weight: 500;
  color: #d8d8d8;
  margin: 0;
  padding: 0.9rem 0;
  text-transform: uppercase;
  max-width: fit-content;
  text-shadow: rgba(0, 0, 0, 1) 0px 0px 5px;
}

.coach__header hr {
  width: 100%;
  height: 3px;
  background: #ffda33;
  border: none;
  padding: 0;
  margin: 0;
}

.coach__list {
  flex-direction: column;
  color: #d8d8d8;
  display: flex;
  gap: 12px;
  text-shadow: rgba(0, 0, 0, 1) 0px 0px 5px;
}

@media screen and (min-width: 1010px) {
  .coach__container {
    flex-direction: row;
    height: 100vh;
    padding-top: 0;
  }

  .coach__article {
    width: 50%;
  }

  .coach__avatar {
    height: 80%;
    width: auto;
    align-self: end;
    justify-self: end;
    filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 1));
    transform: translateX(25%);
  }

  .coach__article--description {
    padding-top: 250px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    position: relative;
  }

  .coach__header h1 {
    text-align: center;
    font-family: "Capture It";
    font-size: 5rem;
    padding: 0.9rem 0;
    text-transform: uppercase;
    max-width: fit-content;
    text-shadow: rgba(0, 0, 0, 1) 0px 0px 5px;
  }

  .coach__container > svg {
    position: absolute;
    width: auto;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
  }
}
