/* enhance: awards (owned by its section agent). Also applies to /recognition,
   which shares the exact same .awards-head markup.
   Row entrance stagger stays with the global .reveal engine; this file only
   dresses the row (accent tick) and polishes interaction timing. */

/* the name span hosts the accent tick and the row's label, aligned on one line */
.awards-head .acc-btn > span{display:inline-flex;align-items:center}

/* hairline gold tick: hidden by default, draws in on hover or while this
   row's panel is open. Pure cue, no invented text. */
.awards-head .acc-tick{
  display:inline-block;flex:none;width:0;height:2px;margin-right:0;
  background:var(--gold);vertical-align:middle;
  transition:width .4s cubic-bezier(.65,0,.35,1),margin-right .4s cubic-bezier(.65,0,.35,1);
}
.awards-head .acc-btn:hover .acc-tick,
.awards-head .acc-item.open .acc-tick{
  width:22px;margin-right:12px;
}

/* the row leans in on hover (JS drives the transform via GSAP quickTo);
   will-change keeps the shift on the GPU, not the layout thread */
.awards-head .acc-btn{will-change:transform}

/* a smoother, more considered chevron turn than the default linear ease */
.awards-head .acc-btn .chev{transition:transform .5s cubic-bezier(.65,0,.35,1)}
