.awards {
  padding: 6rem 8vw 4rem;
}

.awards-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  border-radius: 24px;
  background: #111;
  color: #fff;
  margin-bottom: 4rem;
}

.awards-hero-inner h1 {
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.awards-hero-inner p {
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 0.98rem;
}


.awards-banner {
  width: 100%;
  height: 70vh;        /* Banner height */
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Background Image */
  background-image: url("/images/awards/banner.jpg");  /* CHANGE PATH */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);   /* Light dark cover */
}

.banner-content {
  position: relative;
  color: white;
  z-index: 2;
}

.banner-content h1 {
  font-size: 60px;
  letter-spacing: 2px;
}

.banner-quote {
  margin-top: 12px;
  font-size: 24px;
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.9);
}


/* Awards grid */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* ALWAYS 3 IMAGES */
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
}


.award-card {
  background: #fafafa;
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

.award-image {
  width: 100%;
  aspect-ratio: 4 / 3;        /* fixed shape for all images */
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.award-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
background: #111;         /* crops edges but keeps center */
  display: block;
}


.award-card h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.award-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #444;
}

/* Responsive */

@media (max-width: 1024px) {
  .awards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .awards {
    padding: 5rem 6vw 3rem;
  }

  .awards-hero {
    padding: 3rem 1.5rem;
  }

  .awards-hero-inner h1 {
    font-size: 2rem;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .awards-grid {
    grid-template-columns: repeat(2, 1fr);   /* 2 per row in tablet */
  }
}

@media (max-width: 500px) {
  .awards-grid {
    grid-template-columns: 1fr;              /* 1 per row in mobile */
  }
}
