.athletes-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 2.5rem;
  align-items: start;
}

.athletes-showcase__item {
  overflow: hidden;
  background: rgb(18 18 22);
  display: flex;
  align-items: center;
  justify-content: center;
}

.athletes-showcase__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

@media (width >= 768px) {
  .athletes-showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 4px;
  }
}

.athletes__body {
  max-width: 34rem;
  color: rgb(242 242 244 / 0.65);
  font-size: 1rem;
  line-height: 1.65;
}

@media (width >= 768px) {
  .athletes__body {
    font-size: 1.05rem;
  }
}
