/* Award Highlight Section */
.award-highlight {
  margin-bottom: 3rem;
}

.award-highlight-image {
  width: 100%;
  max-height: 450px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 49, 53, 0.15);
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-highlight-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 49, 53, 0.25);
}

.award-highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.award-highlight-image:hover img {
  transform: scale(1.05);
}

.award-highlight-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: white;
  padding: 2rem;
  transition: padding 0.3s ease;
}

.award-highlight-image:hover .award-highlight-caption {
  padding: 2.5rem 2rem;
}

.award-highlight-caption h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.award-highlight-caption p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

.award-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.award-icon i {
  font-size: 1.5rem;
  color: #003135;
}

/* Update Photo Grid untuk ukuran lebih kecil */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.photo-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0, 49, 53, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  aspect-ratio: 4/3;
}

@media (max-width: 768px) {
  .award-highlight-caption h3 {
    font-size: 1.3rem;
  }

  .award-highlight-caption p {
    font-size: 0.9rem;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
}
