.awards-section {
  background-color: #f1f0f0c7;
  padding: 2.5rem 1.5rem;
}

.awards-container {
  margin: 0 auto;
  text-align: center;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 4rem;
  justify-items: center;
  margin-top: 2rem;
}


.award-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  max-width: 175px;
  height: auto;
  flex: 1 1 150px;
}

.award-item img {
  width: 100%;
  height: 125px;
  object-fit: contain;
}

@media (max-width: 1050px) {
  .awards-container {
    max-width: 900px;
  }
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
