#team-details {
  padding: 24px;
  border-radius: 36px;
  border: 1px solid #58476f;
  background: #190233;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);

  display: flex;
  flex-wrap: wrap;
  gap: 24px;

  @media screen and (max-width: 600px) {
    padding: 16px;
    border-radius: 24px;
  }

  > .img-wrapper {
    flex: 1 1 600px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 400px;

    img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;

      opacity: 0;

      &.active {
        opacity: 1;
      }
    }
  }

  > .accordion-wrapper {
    flex: 1 0 min(400px, 80vw);
    display: flex;
    flex-direction: column;
    gap: 24px;

    .accordion-item {
      margin-top: 0;
      border: none;

      &:not(:last-child) {
        border-bottom: 1px solid #58476f;
      }
      background-color: transparent;
      border-radius: 0;
    }
  }
}
