/* Hero Section */
.awards-hero {
  position: relative;
  width: 100%;
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f9ebc6;
}
.awards-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}
.awards-hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.awards-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.awards-hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
}

/* Awards Section */
.awards-section {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 0 20px 60px 20px;
}
.awards-section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.awards-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}
.awards-card:hover {
  transform: translateY(-6px) scale(1.03);
}
.awards-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 1px solid #f0e6c6;
  background: #f9ebc6;
}
.awards-card-content {
  padding: 24px 18px 18px 18px;
  text-align: center;
}
.awards-card-content h3 {
  font-size: 1.2rem;
  color: #b48a2f;
  font-weight: 700;
  margin-bottom: 10px;
}
.awards-card-content p {
  color: #444;
  font-size: 1rem;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .awards-hero {
    height: 180px;
  }
  .awards-hero-title {
    font-size: 1.3rem;
  }
  .awards-section-title {
    font-size: 1.2rem;
  }
  .awards-card img {
    height: 120px;
  }
}

