/* scholarship award grid */
.awards{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:clamp(1.1rem,1.8vw,1.5rem);}
/* No featured card. The first award card used to span the whole row with a
   split layout and a red-to-black gradient, built for the invented "$10,000
   Legacy Scholarship". The six real opportunity types (Part III 3.10) carry no
   hierarchy, so none is featured - and the gradient broke the two-colour rule. */
@media (max-width:1024px){
  .awards{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width:700px){
  .awards{grid-template-columns:minmax(0,1fr);}
}

/* the hanging-banner trio */
.bannerwrap{padding-top:clamp(1.5rem,3vw,2.5rem);}
/* ---- the six opportunity types ----------------------------------------- */
.award .award__num{
  font-family:var(--pf);font-size:clamp(1.6rem,2.4vw,2.1rem);line-height:1;
  color:var(--gold-lt);font-variant-numeric:tabular-nums;
}
.awards__note{margin-top:clamp(1.4rem,3vh,2rem);font-size:.86rem;color:var(--stone);max-width:74ch;}
