.the-edit__intro {
  text-align: center;
}

.the-edit__copy {
  max-width: 800px;
  margin: 0 auto;
}

.the-edit__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.the-edit__item-img {
  aspect-ratio: 9 / 11;
  object-fit: cover;
  width: 100%;
}

.the-edit__profile {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  object-fit: cover;
}

.the-edit .the-edit__item {
  color: var(--color-blue);
  text-decoration: none;
}

.the-edit__button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.the-edit__back-button {
  display: none;
}

.the-edit__content-wrapper {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}

.the-edit__logo {
  width: 60px;
  height: fit-content;
  object-fit: contain;
  padding-top: 3px;
}

.the-edit__logo-large {
  width: 120px;
}

@media only screen and (min-width: 768px) {
  .the-edit__items {
    grid-template-columns: repeat(3, 1fr);
  }

  .the-edit__back-button {
    display: block;
  }
}

@media only screen and (min-width: 1100px) {
  .the-edit__content-wrapper {
    flex-direction: row;
  }
}
