/* -------------------------------------------
Awards blocks (works for 3 or 4 items + responsive)
------------------------------------------- */

section.awards-blocks{
  padding: 30px 8%;
}

/* Use grid so items auto-size nicely:
   - 4 items will appear as 4 across when there’s room
   - 3 items will appear as 3 across when there’s room
   - collapses to 2 / 1 on smaller screens automatically
*/
.awards-list{
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.award-item{
  border: 1px solid #6F46B7;
  padding: 20px;
  border-radius: 12px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
}

.award-item p{
  color: var(--white);
  margin-bottom: 0;
}

.award-item p strong{
  font-weight: 600;
}

/* Tablet / mobile spacing */
@media screen and (max-width: 768px){
  section.awards-blocks{
    padding: 30px 5%;
  }

  .award-item{
    padding: 15px;
  }
}

/* Optional: force 1 column on very small screens (usually auto-fit already does this) */
@media screen and (max-width: 460px){
  .awards-list{
    grid-template-columns: 1fr;
  }
}