/* ==========================
   About Award Section
========================== */
.home-award {
  background-color: #fff;
  padding: 5rem 0;
  text-align: center;
}

/* ======= Headings ======= */
.home-award h2 {
  line-height: 1.3;
  color: #222;
}

.home-award .fw-light {
  font-weight: 300;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.home-award .fw-bold.text-title-orange {
  color: #f4801e;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-top: 0.3rem;
}

/* ======= Award Images Grid ======= */
.awards-section {
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.home-award-img {
  display: block;
  margin: 0 auto;
  max-width: 80%;
  height: auto;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border-radius: 10px;
}


/* ======= Desktop (≥1200px) ======= */
@media (min-width: 1200px) {
  .home-award-img {
    max-width: 75%;
  }
}

/* ======= Tablet (≤992px) ======= */
@media (max-width: 992px) {
  .home-award {
    padding:30px;
  }

  .home-award h2 {
    line-height: 1.4;
  }

  .home-award .fw-light {
    font-size: 1.4rem;
  }

  .home-award .text-title-orange {
    font-size: 1.6rem;
  }

  .awards-section {
    row-gap: 2rem;
  }

  .home-award-img {
    max-width: 85%;
  }
}

/* ======= Mobile (≤576px) ======= */
@media (max-width: 576px) {
  .home-award {
    padding: 20px;
  }

  .home-award h2 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .home-award .text-title-orange {
    font-size: 1.3rem;
  }

  .home-award-img {
    max-width: 100%;
  }
}
