.media-section {
  display: flex;
  justify-content: center;
}

.media-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;

  @media (max-width: 1239px) {
    gap: 24px;
  }
}

.media-title {
  font-size: 40px;
  font-weight: 600;

  @media (max-width: 1239px) {
    font-size: 24px;
  }
}

.media-companies {
  display: flex;
  justify-content: center;
  gap: 32px;
  width: 100%;

  @media (max-width: 1239px) {
    flex-direction: column;
  }
}

.media-companies__card {
  height: 355px;
  background-color: #ededed;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;

  @media (max-width: 1239px) {
    height: 200px;
    min-height: 200px;
  }
}
