.award-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.award-item {
  position: relative;
  display: block;
  overflow: hidden;
}

.award-item .award-img-wrap {
  position: relative;
  display: block;
  line-height: 0;
}

.award-item .award-img-wrap img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.award-item .award-zoom-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.award-item .award-zoom-overlay a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.award-item .award-zoom-overlay .zoom-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: #123648;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.award-item .award-zoom-overlay .zoom-icon svg {
  flex-shrink: 0;
}

.award-item .award-zoom-overlay .zoom-icon:hover {
  transform: scale(1.12);
  background: #fff;
}

.award-item:hover .award-zoom-overlay {
  opacity: 1;
}

@media (max-width: 767px) {
  .award-item .award-zoom-overlay .zoom-icon {
    width: 48px;
    height: 48px;
  }

  .award-item .award-zoom-overlay .zoom-icon svg {
    width: 20px;
    height: 20px;
  }
}

