.separator {
  margin: 24px 20px;
  border: 0.5px solid rgba(227, 230, 232);
}


.no-photo-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.no-photo {
  position: absolute;
  top: 50%;
  background-color: var(--black);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 0 5px 5px 0;
}

#reviews {
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-self: center;
}

#reviews-header {
  & h2 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 280px;
  }
}


.add-review-btn {
  max-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  gap: 8px;
  height: 42px;
  border: 1px solid var(--gray);
  padding: 11px 35px;
  width: 100%;
  border-radius: 20px;
  margin: 0 auto;
}

.form-group {
  width: 100%;
  font-weight: 400;
  display: flex;
  flex-direction: column;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  width: 280px;
  margin: 16px auto;
  z-index: 3;

  .primary-green-btn {
    font-size: 1rem;
    font-weight: 500;
    height: 42px;
    border-radius: 20px;
    width: 118px;
    background-color: var(--green);
    color: var(--white);
    border: none;
  }

  .turbo-cancel-btn {
    font-size: 1rem;
    font-weight: 500;
    border-radius: 20px;
    color: var(--gray);
    border: 1px solid var(--gray);
    width: 118px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Inline forms end  */

.contributors {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 16px;

  & h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 16px;
  }
}

.contributors-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  max-width: 280px;
  gap: 16px;
  flex-wrap: wrap;

  & img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }
}

.contributor {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
  word-break: break-word;
  min-width: 90px;
  max-width: 90px;
  color: var(--gray);

  & a {
    color: var(--gray);
    text-decoration: underline;
  }
}


@media (min-width: 1024px) {
  .separator {
    margin: 48px 0;
  }

  #reviews {
    flex-direction: row;
    gap: 27px;

    #reviews-header {
      & h2 {
        font-size: 1.75rem;
      }
    }
  }
}
