.aws.v1 {
    /* Badge row: large gap between accolades (artifact 128px -> 7.111rem),
       wraps + centers. Badge image sizing is token-driven via
       /styles/common/panels/awards-tools.css; constrain the desktop max
       width to the artifact badge width (213px -> 11.833rem) so badges
       are not unconstrained / oversized. */
    --aws-row-gap: 1.111rem;
    --awd-mx-wd: 213;

    /* Surface: artifact band is the cream inner-surface (var(--lt-bg)) and the
       bordered accolades card is the lighter main-bg (var(--lt-bg)). The default
       primary-light section paints --background (var(--lt-bg)) and the .bdr-bg card
       is transparent, so band + card would read as one flat tone. Paint the
       band inner-surface and give the card an explicit main-bg fill so the
       card reads slightly lighter than the band (matches the artifact). */
    background-color: var(--background);

    .aws-bx {
        background-color: var(--main-bg);
    }

    /* Header block: left-aligned flair + display heading + subheader, with the
       "See all" button below (artifact gap 32px -> 1.778rem). */
    .aws-v1-head {
        --grd-sp-dyn: 1.778rem;
        text-align: left;

        .fnt_t-2 {
            text-transform: none;
        }
    }

    /* Display heading — artifact: Archivo Black 88px, near-black var(--lt-txt),
       tracking -1.76px, leading 0.9, uppercase, max-width 1321px.
       Mobile rides the fnt_t-big ramp; the artifact's exact 88px is a
       deliberate desktop-only override (see @media 1280 block below). */
    .aws-v1-ttl {
        color: var(--text-color);     /* var(--lt-txt) on primary-light */
        max-width: 73.389rem;         /* artifact heading width 1321px / 18 */
    }

    /* Subheader — rendered in the h2 font via the fnt_t-2 class (matches the
       "second child" header convention used by subtitles on other panels), so
       font + color come from the theme's Title 2 ramp. No local overrides. */

    .aws-row {
        flex-wrap: wrap;
        gap: var(--aws-row-gap);

        @media screen and (min-width:1280px) {
            & {
                --aws-row-gap: 7.111rem;
            }
        }
    }

    /* Mobile: move the "See all" button below the awards feed. .mn_wd becomes a
       flex column so the button (order:1) reflows past the order:0 feed. */
    @media (max-width: 699px) {
        .mn_wd {
            display: flex;
            flex-direction: column;
        }

        .aws-v1-cta {
            order: 1;
        }
    }
}

