div.collaborations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media screen and (max-width: 767px) {
  div.collaborations {
    grid-template-columns: repeat(1, 1fr);
  }
}
div.collaborations div.collaboration {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  div.collaborations div.collaboration:nth-child(odd):after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    height: 70%;
    width: 2px;
    border-right: 2px dotted rgba(104, 142, 152, 0.5);
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  div.collaborations div.collaboration:nth-child(odd):after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    height: 2px;
    width: 70%;
    border-bottom: 2px dotted rgba(104, 142, 152, 0.5);
    transform: translateX(-50%);
  }
}
div.collaborations div.collaboration div.img-sizer {
  flex: none;
  width: 96px;
  height: 96px;
  background-color: white;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
div.collaborations div.collaboration div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
div.collaborations div.collaboration span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
}
