.friends-section {
  margin: 0 auto 8rem;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .friends-section {
    margin-bottom: 12rem;
  }
}
.friends-section:last-of-type {
  margin-bottom: 0;
}
.friends-section__title {
  font-size: 2rem;
  line-height: 1.6;
  font-family: arboria, sans-serif;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
  .friends-section__title {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 769px) {
  .friends-section__title {
    margin-bottom: 3rem;
  }
}

.archive-friends {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (min-width: 769px) {
  .archive-friends {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5rem 4rem;
  }
}
.archive-friends__item {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .archive-friends__item {
    width: calc((100% - 8rem) / 3);
  }
}
@media (any-hover: hover) {
  .archive-friends__item:hover .archive__term {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    text-decoration-color: inherit;
  }
}
.archive-friends__thumbnail {
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}
.archive-friends__thumbnail--picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: auto;
}
