.awards_wrap {
  background-color: #f2f6fd;
  padding-top: 40px;
  padding-bottom: 40px;
}

.awards {
  --gap: 28px;
  padding: 8px 0;
}
.awards-section {
  margin: 40px 0 40px;
  &:nth-child(1) {
    margin-top: 0;
  }
}
.awards-section__title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #1b2b45;
  margin-bottom: 40px;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--gap);
}
@media (max-width: 1200px) {
  .awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 780px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}
.awards-card {
  display: flex;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  align-content: center;
  justify-content: center;
}
.awards-card img {
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.awards-card:hover img {
  transform: scale(1.02);
}
.awards-debug {
  background: #111;
  color: #0f0;
  padding: 8px;
  font: 12px/1.4 monospace;
  white-space: pre-wrap;
}
/* Lightbox */
.awards-lightbox[hidden] {
  display: none;
}
.awards-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.awards-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.awards-lightbox__dialog {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}
.awards-lightbox__img {
  max-width: 96vw;
  max-height: 92vh;
  border-radius: 12px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.awards-lightbox__close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 22px;
  border: 0;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}
