/* ================= AWARDS / CERTIFICATIONS ================= */

.aw-section{
  max-width:1180px;
  margin:64px auto;
  padding:0 16px;
}

.section-heading{
  display:flex;
  align-items:center;
  gap:14px;
  font-size:34px;
  font-weight:800;
  color:#ff6a00;
  margin-bottom:12px;
}

.heading-bar{
  width:5px;
  height:28px;
  background:#0a2f5a;
  border-radius:3px;
}

.aw-desc{
  max-width:760px;
  color:#475569;
  line-height:1.6;
  margin-bottom:32px;
}

/* Grid: 3 per row */
.aw-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

/* Card */
.aw-card{
  background:#fff;
  border-radius:16px;
  border:1px solid #e6ecf5;
  box-shadow:0 14px 30px rgba(0,0,0,.08);
  transition:.25s ease;
}

.aw-card:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 46px rgba(0,0,0,.14);
}

/* Make entire card clickable */
.aw-link{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* Image area */
.aw-img-wrap{
  height:220px;
  background:#f7f9fc;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.aw-img-wrap img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
}

/* Caption */
.aw-card figcaption{
  padding:14px 12px 16px;
  font-weight:600;
  font-size:14px;
  text-align:center;
  color:#0b2647;
}

/* Responsive */
@media (max-width:1024px){
  .aw-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px){
  .aw-grid{ grid-template-columns:1fr; }
}

/* ================= LIGHTBOX ================= */

.aw-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.75);
  display:grid;
  place-items:center;
  z-index:9999;
  padding:24px;
}

.aw-lightbox[hidden]{ display:none; }

.aw-lightbox img{
  max-width:min(96vw,1200px);
  max-height:90vh;
  background:#fff;
  border-radius:10px;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
}

.aw-close{
  position:absolute;
  top:18px;
  right:18px;
  background:#fff;
  border:0;
  border-radius:10px;
  padding:10px 14px;
  font-size:18px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}
