/* ─────────────────────────────────────────────────────────
   JWH AWARD — press feature strip
   ───────────────────────────────────────────────────────── */
.jwh-award{
    padding:64px 0;
    background:#fff;
    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.jwh-head{text-align:center;max-width:760px;margin:0 auto 36px}

.jwh-eyebrow{
    display:inline-block;
    font-size:.72rem;
    font-weight:700;
    letter-spacing:1.6px;
    text-transform:uppercase;
    color:var(--accent);
    margin-bottom:12px;
}

.jwh-title{
    font-size:1.75rem;
    font-weight:700;
    line-height:1.25;
    color:var(--txt-dark);
    margin:0 0 16px;
}

.jwh-quote-line{
    font-size:1rem;
    line-height:1.6;
    color:var(--txt-body);
    font-style:italic;
    margin:0;
}
.jwh-quote-line .jwh-cite{
    display:inline-block;
    margin-left:6px;
    font-style:normal;
    font-weight:600;
    color:var(--txt-muted);
    font-size:.88rem;
}

.jwh-badges{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:24px;
    align-items:center;
    max-width:880px;
    margin:0 auto 32px;
}

.jwh-badge-link{
    display:block;
    padding:8px;
    border-radius:12px;
    transition:transform .25s ease,filter .25s ease;
}
.jwh-badge-link:hover{
    transform:translateY(-4px);
    filter:drop-shadow(0 10px 24px rgba(15,23,42,.12));
}
.jwh-badge-link img{width:100%;height:auto;display:block}

.jwh-foot{text-align:center}

.jwh-cta{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-size:.9rem;
    font-weight:600;
    color:var(--accent);
    text-decoration:none;
    padding:10px 6px;
    border-bottom:1px solid transparent;
    transition:gap .2s,border-color .2s,color .2s;
}
.jwh-cta:hover{
    gap:12px;
    color:var(--accent-dark,#178e91);
    border-bottom-color:currentColor;
}
.jwh-cta i{font-size:.78rem}

@media(max-width:768px){
    .jwh-award{padding:48px 0}
    .jwh-title{font-size:1.4rem}
    .jwh-quote-line{font-size:.92rem}
    .jwh-quote-line .jwh-cite{display:block;margin:6px 0 0}
    .jwh-badges{grid-template-columns:repeat(3,1fr);gap:18px;max-width:420px}
    .jwh-badge-link:nth-child(4){grid-column:1 / span 1;justify-self:end}
    .jwh-badge-link:nth-child(4){grid-column:auto}
}
@media(max-width:480px){
    .jwh-badges{grid-template-columns:repeat(2,1fr);max-width:300px}
}
