/* =========================================================
   Awards — Yearly Awards (Template scoped)
   FINAL: one system (applies to EVERYTHING)
========================================================= */

/* =========================================================
   Scope + tokens
========================================================= */

body.page-template-page-award-yearly-awards,
body.page-template-page-award-yearly-awards-php {
    /* spacing */
    --ya-gap: 18px;

    /* radii */
    --ya-radius-sm: 14px;
    --ya-radius-md: 18px;
    --ya-shell-radius: 34px;

    /* shadows */
    --ya-shadow: var(--theme-shadow-md);
    --ya-shadow-lg: var(--theme-shadow-lg);

    /* colors */
    --ya-gold: var(--yellow);
    --ya-rule: var(--theme-border);
    --ya-rule-soft: rgba(255, 255, 255, .10);
    --ya-rule-gold-strong: var(--theme-yellow-soft);

    --shr-maroon: var(--maroon);
    --shr-maroon-deep: var(--maroon-strong);

    /* shell */
    --ya-shell-pad: 32px;

    /* maroon tuning (global, consistent) */
    --ya-maroon-a: .10;
    --ya-maroon-b: .15;

    /* feather tuning (global) */
    --ya-feather-opacity: .70;

    /* typography rhythm */
    --ya-row-pad: 14px;
    --ya-col-pad-x: 18px;
    --ya-col-pad-l: 18px;

    /* underline tuning */
    --ya-underline-opacity: .75;
}

/* HERO */
body.page-template-page-award-yearly-awards-php .hero {
    width: 100%;
    min-height: calc(var(--heroMinH) + var(--headerH));
    margin-top: calc(var(--headerH) * -1);
    background-size: cover;
    background-position: center top;
    background-color: var(--theme-maroon-strong);
    border-radius: 0;
    position: relative;
}

body.page-template-page-award-yearly-awards-php .hero .hero-inner {
    width: 100%;
    padding-top: calc(var(--heroPadY, 60px) + var(--headerH));
}

body.page-template-page-award-yearly-awards-php .hero .hero-content {
    max-width: 720px;
}

/* =========================================================
   Base spacing
========================================================= */

body.page-template-page-award-yearly-awards .award-yearly,
body.page-template-page-award-yearly-awards-php .award-yearly {
    position: relative;
    isolation: isolate;
    padding: 0 0 96px;
}

body.page-template-page-award-yearly-awards .award-yearly::after,
body.page-template-page-award-yearly-awards-php .award-yearly::after {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: clamp(140px, 16vw, 240px);
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(180deg,
            rgba(90, 0, 17, .16) 0%,
            rgba(90, 0, 17, .08) 42%,
            rgba(90, 0, 17, .02) 78%,
            rgba(90, 0, 17, 0) 100%);
}

body.page-template-page-award-yearly-awards .award-yearly > .container,
body.page-template-page-award-yearly-awards-php .award-yearly > .container {
    position: relative;
    z-index: 1;
}

/* Keep any .glass on this template reasonable by default */
body.page-template-page-award-yearly-awards .glass,
body.page-template-page-award-yearly-awards-php .glass {
    border-radius: var(--ya-radius-md);
    padding: 18px;
    background: var(--theme-card);
    border: 1px solid var(--theme-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--ya-shadow);
}

/* =========================================================
   Top: intro + year select
========================================================= */

body.page-template-page-award-yearly-awards .award-yearly-top,
body.page-template-page-award-yearly-awards-php .award-yearly-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--ya-gap);
    margin-bottom: 18px;
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
}

body.page-template-page-award-yearly-awards .award-prose,
body.page-template-page-award-yearly-awards-php .award-prose {
    display: none;
}

body.page-template-page-award-yearly-awards .award-yearly-controls,
body.page-template-page-award-yearly-awards-php .award-yearly-controls {
    width: min(100%, 320px);
    margin-left: auto;
}

body.page-template-page-award-yearly-awards .award-yearly-intro-body,
body.page-template-page-award-yearly-awards-php .award-yearly-intro-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 18px;
    align-items: start;
}

body.page-template-page-award-yearly-awards .award-yearly-intro .page-intro-head,
body.page-template-page-award-yearly-awards .award-yearly-intro .intro-panel,
body.page-template-page-award-yearly-awards-php .award-yearly-intro .page-intro-head,
body.page-template-page-award-yearly-awards-php .award-yearly-intro .intro-panel {
    max-width: var(--max);
}

body.page-template-page-award-yearly-awards .award-yearly-intro-stats,
body.page-template-page-award-yearly-awards-php .award-yearly-intro-stats {
    max-width: 360px;
}

body.page-template-page-award-yearly-awards .controls-row,
body.page-template-page-award-yearly-awards-php .controls-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body.page-template-page-award-yearly-awards .controls-label,
body.page-template-page-award-yearly-awards-php .controls-label {
    font-size: 12px;
    letter-spacing: .10em;
    text-transform: uppercase;
    opacity: .78;
}

body.page-template-page-award-yearly-awards .controls-form,
body.page-template-page-award-yearly-awards-php .controls-form {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* =========================================================
   Group headings + section wash (behind content)
========================================================= */

body.page-template-page-award-yearly-awards .award-group,
body.page-template-page-award-yearly-awards-php .award-group {
    margin-top: 72px;
    position: relative;
    isolation: isolate;
}

body.page-template-page-award-yearly-awards .award-group::before,
body.page-template-page-award-yearly-awards-php .award-group::before {
    content: "";
    position: absolute;
    inset: -20px -14px auto -14px;
    height: 100%;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(900px 420px at 18% 15%, rgba(246, 199, 76, .12), rgba(246, 199, 76, 0) 60%),
        radial-gradient(900px 420px at 85% 10%, rgba(90, 0, 17, .12), rgba(90, 0, 17, 0) 62%);
    opacity: .95;

    border-radius: 52px;
    clip-path: inset(0 round 52px);
}

body.page-template-page-award-yearly-awards .award-group>*,
body.page-template-page-award-yearly-awards-php .award-group>* {
    position: relative;
    z-index: 1;
}

body.page-template-page-award-yearly-awards .award-group-head,
body.page-template-page-award-yearly-awards-php .award-group-head {
    text-align: center;
    margin: 0 auto 24px;
    max-width: 860px;
    padding-bottom: 20px;
    position: relative;
}

/* Centered gold rule under each section heading */
body.page-template-page-award-yearly-awards .award-group-head::after,
body.page-template-page-award-yearly-awards-php .award-group-head::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg,
            rgba(246, 199, 76, 0),
            rgba(246, 199, 76, .90),
            rgba(246, 199, 76, 0));
}

body.page-template-page-award-yearly-awards .award-group-title,
body.page-template-page-award-yearly-awards-php .award-group-title {
    margin: 0;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
}

body.page-template-page-award-yearly-awards .award-group-sub,
body.page-template-page-award-yearly-awards-php .award-group-sub {
    margin: 8px auto 0;
    max-width: 72ch;
    opacity: .78;
    text-align: center;
}

/* =========================================================
   OUTER SHELLS — one premium panel per section (GLOBAL)
========================================================= */

body.page-template-page-award-yearly-awards :is(.award-panel.glass, .award-feature-stack.glass, .award-unitclub.glass),
body.page-template-page-award-yearly-awards-php :is(.award-panel.glass, .award-feature-stack.glass, .award-unitclub.glass) {
    position: relative;
    overflow: hidden;
    border-radius: var(--ya-shell-radius) !important;
    border: 1px solid var(--theme-border);
    box-shadow: var(--ya-shadow-lg);
    padding: var(--ya-shell-pad);
    isolation: isolate;
    background: var(--theme-card);
}

/*
   Maroon wash — corner-anchored gradients on an oversized element.
*/
body.page-template-page-award-yearly-awards :is(.award-panel.glass, .award-feature-stack.glass, .award-unitclub.glass)::before,
body.page-template-page-award-yearly-awards-php :is(.award-panel.glass, .award-feature-stack.glass, .award-unitclub.glass)::before {
    content: "";
    position: absolute;
    inset: -100% -150%;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(ellipse 60% 50% at 85% 10%,
            var(--theme-maroon-soft), transparent 100%),
        radial-gradient(ellipse 60% 50% at 15% 90%,
            var(--theme-maroon-strong-soft), transparent 100%);
    opacity: 0.8;
}

/* Feather — edge-only */
body.page-template-page-award-yearly-awards :is(.award-panel.glass, .award-feature-stack.glass, .award-unitclub.glass)::after,
body.page-template-page-award-yearly-awards-php :is(.award-panel.glass, .award-feature-stack.glass, .award-unitclub.glass)::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(320px 320px at 0% 0%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 74%),
        radial-gradient(320px 320px at 100% 0%, rgba(255, 255, 255, .45), rgba(255, 255, 255, 0) 74%),
        radial-gradient(520px 520px at 0% 100%, rgba(255, 255, 255, .28), rgba(255, 255, 255, 0) 80%),
        radial-gradient(520px 520px at 100% 100%, rgba(255, 255, 255, .24), rgba(255, 255, 255, 0) 80%);
    opacity: var(--ya-feather-opacity);

    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 17px));
    mask: radial-gradient(farthest-side, transparent calc(100% - 18px), #000 calc(100% - 17px));
}

body.page-template-page-award-yearly-awards :is(.award-panel.glass, .award-feature-stack.glass, .award-unitclub.glass)>*,
body.page-template-page-award-yearly-awards-php :is(.award-panel.glass, .award-feature-stack.glass, .award-unitclub.glass)>* {
    position: relative;
    z-index: 1;
}

/* =========================================================
   Inner layout — editorial (no card wall)
========================================================= */

body.page-template-page-award-yearly-awards :is(.award-cols, .award-yearly-grid),
body.page-template-page-award-yearly-awards-php :is(.award-cols, .award-yearly-grid) {
    display: grid;
    gap: var(--ya-gap);
}

/* columns become editorial blocks */
body.page-template-page-award-yearly-awards :is(.award-col, .award-cat.glass),
body.page-template-page-award-yearly-awards-php :is(.award-col, .award-cat.glass) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    overflow: visible !important;

    padding: 12px var(--ya-col-pad-x) 12px var(--ya-col-pad-l) !important;
    position: relative;
}

/* subtle gold rule on left */
body.page-template-page-award-yearly-awards :is(.award-col, .award-cat.glass)::before,
body.page-template-page-award-yearly-awards-php :is(.award-col, .award-cat.glass)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    bottom: 12px;
    width: 1px;
    background: linear-gradient(180deg,
            rgba(246, 199, 76, 0),
            rgba(246, 199, 76, .22),
            rgba(246, 199, 76, .08),
            rgba(246, 199, 76, 0));
    opacity: .75;
}

/* headers */
body.page-template-page-award-yearly-awards .award-col-head,
body.page-template-page-award-yearly-awards-php .award-col-head {
    position: relative;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--ya-rule);
}

/* gold rule — LEFT ANCHORED (global) */
body.page-template-page-award-yearly-awards .award-col-head::after,
body.page-template-page-award-yearly-awards-php .award-col-head::after {
    content: "";
    position: absolute;
    left: 0;
    right: 40%;
    bottom: 0;
    height: 2px;
    border-radius: 999px;

    background: linear-gradient(90deg,
            rgba(246, 199, 76, .92) 0%,
            rgba(242, 182, 31, .86) 35%,
            rgba(246, 199, 76, .35) 60%,
            rgba(246, 199, 76, 0) 100%);
    opacity: var(--ya-underline-opacity);
}

body.page-template-page-award-yearly-awards .award-col-title,
body.page-template-page-award-yearly-awards-php .award-col-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* rows */
body.page-template-page-award-yearly-awards .award-col-list,
body.page-template-page-award-yearly-awards-php .award-col-list {
    display: grid;
    gap: 0;
}

body.page-template-page-award-yearly-awards :is(.award-row, .award-line),
body.page-template-page-award-yearly-awards-php :is(.award-row, .award-line) {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: var(--ya-row-pad) 0 !important;
    position: relative;
}

body.page-template-page-award-yearly-awards .award-row+.award-row,
body.page-template-page-award-yearly-awards-php .award-row+.award-row,
body.page-template-page-award-yearly-awards .award-line+.award-line,
body.page-template-page-award-yearly-awards-php .award-line+.award-line {
    border-top: 1px solid var(--ya-rule);
}

/* medal dot */
body.page-template-page-award-yearly-awards .award-row::before,
body.page-template-page-award-yearly-awards-php .award-row::before {
    content: "";
    width: 10px;
    height: 7px;
    border-radius: 999px;
    position: absolute;
    left: 0;
    top: 16px;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(246, 199, 76, .95), rgba(246, 199, 76, .55));
    box-shadow:
        0 0 0 3px rgba(246, 199, 76, .14),
        0 1px 2px rgba(0, 0, 0, .18);
}

body.page-template-page-award-yearly-awards .award-row-name,
body.page-template-page-award-yearly-awards-php .award-row-name {
    padding-left: 18px;
    font-weight: 650;
    letter-spacing: -0.005em;
    line-height: 1.2;
}

body.page-template-page-award-yearly-awards .award-row-detail,
body.page-template-page-award-yearly-awards-php .award-row-detail {
    padding-left: 18px;
    margin-top: 6px;
    opacity: .82;
    line-height: 1.45;
}

/* =========================================================
   FEATURED AWARDS — structure + winner underlines (GLOBAL)
========================================================= */

body.page-template-page-award-yearly-awards .award-feature-stack,
body.page-template-page-award-yearly-awards-php .award-feature-stack {
    text-align: center;
}

/* inset surface so it doesn't "double panel" */
body.page-template-page-award-yearly-awards .award-feature-stack .award-feature-row,
body.page-template-page-award-yearly-awards-php .award-feature-stack .award-feature-row {
    border-radius: 24px;
    padding: 18px 18px 16px;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .30);
}

/* keep separators subtle (because row itself is now inset) */
body.page-template-page-award-yearly-awards .award-feature-row+.award-feature-row,
body.page-template-page-award-yearly-awards-php .award-feature-row+.award-feature-row {
    margin-top: 12px;
}

/* winner title underline — centered, fades symmetrically outward */
body.page-template-page-award-yearly-awards .award-feature-title,
body.page-template-page-award-yearly-awards-php .award-feature-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 8px;
    font-weight: 850;
    letter-spacing: -0.01em;
}

body.page-template-page-award-yearly-awards .award-feature-title::after,
body.page-template-page-award-yearly-awards-php .award-feature-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    opacity: .65;
    background: linear-gradient(90deg,
            rgba(246, 199, 76, 0) 0%,
            rgba(242, 182, 31, .86) 30%,
            rgba(246, 199, 76, .95) 50%,
            rgba(242, 182, 31, .86) 70%,
            rgba(246, 199, 76, 0) 100%);
}

body.page-template-page-award-yearly-awards .award-feature-name,
body.page-template-page-award-yearly-awards-php .award-feature-name {
    margin-top: 4px;
    opacity: .82;
}

/* =========================================================
   HONORS — column dividers (structure only)
========================================================= */

body.page-template-page-award-yearly-awards .award-group-honors .award-col--bars .award-row::before,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-col--bars .award-row::before {
    width: 12px;
    height: 7px;
    top: 18px;
    background: linear-gradient(90deg, rgba(246, 199, 76, .95), rgba(246, 199, 76, .55));
    box-shadow:
        0 0 0 3px rgba(246, 199, 76, .14),
        0 2px 4px rgba(0, 0, 0, .22);
}

/* =========================================================
   UNIT & CLUB SHRINERS OF THE YEAR — FIXED spacing & layout
========================================================= */

body.page-template-page-award-yearly-awards .award-unitclub-list,
body.page-template-page-award-yearly-awards-php .award-unitclub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

body.page-template-page-award-yearly-awards .uc-item,
body.page-template-page-award-yearly-awards-php .uc-item {
    margin: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 16px 0 !important;
    line-height: 1.25;
}

body.page-template-page-award-yearly-awards .uc-item+.uc-item,
body.page-template-page-award-yearly-awards-php .uc-item+.uc-item {
    border-top: 1px solid var(--ya-rule) !important;
}

body.page-template-page-award-yearly-awards .uc-unit,
body.page-template-page-award-yearly-awards-php .uc-unit {
    font-weight: 800;
    opacity: .88;
    margin-right: 6px;
    white-space: normal;
}

body.page-template-page-award-yearly-awards .uc-winner,
body.page-template-page-award-yearly-awards-php .uc-winner {
    font-weight: 650;
    overflow-wrap: anywhere;
}

body.page-template-page-award-yearly-awards .uc-detail,
body.page-template-page-award-yearly-awards-php .uc-detail {
    margin-top: 6px;
    opacity: .86;
    line-height: 1.35;
}

/* Optional: keep ultrawide from feeling stretched */
body.page-template-page-award-yearly-awards .award-group-unitclub .award-unitclub.glass,
body.page-template-page-award-yearly-awards-php .award-group-unitclub .award-unitclub.glass {
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================================
   Empty state
========================================================= */

body.page-template-page-award-yearly-awards .award-empty,
body.page-template-page-award-yearly-awards-php .award-empty {
    margin-top: 18px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .10);
}

/* =========================================================
   Responsive / Media Queries (ALL at bottom)
========================================================= */

@media (max-width: 980px) {

    body.page-template-page-award-yearly-awards .award-yearly-top,
    body.page-template-page-award-yearly-awards-php .award-yearly-top {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 860px) {

    body.page-template-page-award-yearly-awards .award-cols--major,
    body.page-template-page-award-yearly-awards-php .award-cols--major {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-template-page-award-yearly-awards .award-cols--honors,
    body.page-template-page-award-yearly-awards-php .award-cols--honors {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.page-template-page-award-yearly-awards .award-cols--bars,
    body.page-template-page-award-yearly-awards-php .award-cols--bars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    body.page-template-page-award-yearly-awards .award-cols--honors-all,
    body.page-template-page-award-yearly-awards-php .award-cols--honors-all {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    /* subtle column dividers for ALL grids */
    body.page-template-page-award-yearly-awards :is(.award-cols, .award-yearly-grid),
    body.page-template-page-award-yearly-awards-php :is(.award-cols, .award-yearly-grid) {
        column-gap: 26px;
    }

    body.page-template-page-award-yearly-awards .award-col:not(:last-child),
    body.page-template-page-award-yearly-awards-php .award-col:not(:last-child) {
        border-right: 1px solid rgba(246, 199, 76, .18);
        padding-right: 22px;
        margin-right: 6px;
    }

    /* HONORS: stronger dividers only there */
    body.page-template-page-award-yearly-awards .award-group-honors .award-col:not(:last-child),
    body.page-template-page-award-yearly-awards-php .award-group-honors .award-col:not(:last-child) {
        border-right: 2px solid var(--ya-rule-gold-strong);
    }

    body.page-template-page-award-yearly-awards .award-group-honors .award-col:not(:last-child)::after,
    body.page-template-page-award-yearly-awards-php .award-group-honors .award-col:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 18px;
        bottom: 18px;
        right: -2px;
        width: 2px;
        pointer-events: none;
        background: linear-gradient(to bottom,
                rgba(246, 199, 76, .12),
                rgba(246, 199, 76, .34),
                rgba(246, 199, 76, .12));
        opacity: .98;
    }

    /* FIXED: Unit & Club — flexbox so unit name hugs its content */
    body.page-template-page-award-yearly-awards .award-group-unitclub .award-unitclub-list>li.uc-item,
    body.page-template-page-award-yearly-awards-php .award-group-unitclub .award-unitclub-list>li.uc-item {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: baseline !important;
        gap: 6px 12px !important;
        padding: 14px 0 !important;
    }

    body.page-template-page-award-yearly-awards .award-group-unitclub .uc-unit,
    body.page-template-page-award-yearly-awards-php .award-group-unitclub .uc-unit {
        flex: 0 0 auto !important;
    }

    body.page-template-page-award-yearly-awards .award-group-unitclub .uc-winner,
    body.page-template-page-award-yearly-awards-php .award-group-unitclub .uc-winner {
        flex: 1 1 auto !important;
    }

    body.page-template-page-award-yearly-awards .award-group-unitclub .uc-detail,
    body.page-template-page-award-yearly-awards-php .award-group-unitclub .uc-detail {
        flex: 0 0 100%;
        margin-top: 4px;
    }
}

@media (min-width: 1120px) {

    body.page-template-page-award-yearly-awards .award-cols--honors-all,
    body.page-template-page-award-yearly-awards-php .award-cols--honors-all {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {

    /* on mobile, give columns breathing room instead of dividers */
    body.page-template-page-award-yearly-awards .award-col+.award-col,
    body.page-template-page-award-yearly-awards-php .award-col+.award-col {
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    /* honors: stack separators */
    body.page-template-page-award-yearly-awards .award-group-honors .award-col:not(:last-child),
    body.page-template-page-award-yearly-awards-php .award-group-honors .award-col:not(:last-child) {
        border-right: none !important;
        border-bottom: 2px solid rgba(246, 199, 76, .34);
        padding-bottom: 18px !important;
        margin-bottom: 18px !important;
    }

    body.page-template-page-award-yearly-awards .award-group-honors .award-col:not(:last-child)::after,
    body.page-template-page-award-yearly-awards-php .award-group-honors .award-col:not(:last-child)::after {
        content: none !important;
    }

    /* unit/club list stacks on mobile */
    body.page-template-page-award-yearly-awards .award-group-unitclub .award-unitclub-list>li.uc-item,
    body.page-template-page-award-yearly-awards-php .award-group-unitclub .award-unitclub-list>li.uc-item {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
    }

    body.page-template-page-award-yearly-awards .award-group-unitclub .uc-detail,
    body.page-template-page-award-yearly-awards-php .award-group-unitclub .uc-detail {
        margin-top: 4px;
    }
}

/* =========================================================
   FINAL POLISH — maroon typography + featured blend
========================================================= */

body.page-template-page-award-yearly-awards,
body.page-template-page-award-yearly-awards-php {
    --ya-ink-maroon: var(--shr-maroon, #5a0011);
    --ya-ink-maroon-deep: var(--shr-maroon-deep, #2b0008);
    --ya-maroon-a: .10;
    --ya-maroon-b: .07;
}

/* Make section/group headers maroon */
body.page-template-page-award-yearly-awards .award-group-title,
body.page-template-page-award-yearly-awards-php .award-group-title {
    color: var(--ya-ink-maroon);
    text-shadow: 0 1px 0 rgba(255, 255, 255, .35);
}

/* Column headings */
body.page-template-page-award-yearly-awards .award-col-title,
body.page-template-page-award-yearly-awards-php .award-col-title {
    color: var(--ya-ink-maroon);
}

/* Winner/item text inside the columns */
body.page-template-page-award-yearly-awards .award-row-name,
body.page-template-page-award-yearly-awards-php .award-row-name {
    color: var(--ya-ink-maroon-deep);
}

/* Unit & Club list */
body.page-template-page-award-yearly-awards .uc-unit,
body.page-template-page-award-yearly-awards-php .uc-unit {
    color: var(--ya-ink-maroon);
}

body.page-template-page-award-yearly-awards .uc-winner,
body.page-template-page-award-yearly-awards-php .uc-winner {
    color: var(--ya-ink-maroon-deep);
}

/* =========================================================
   FEATURED AWARDS — elevated, premium treatment
========================================================= */

/* Outer shell: richer gold wash + stronger shadow */
body.page-template-page-award-yearly-awards .award-feature-stack.glass,
body.page-template-page-award-yearly-awards-php .award-feature-stack.glass {
    padding: 36px 32px 40px !important;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, .22),
        0 0 0 1px rgba(246, 199, 76, .22),
        inset 0 1px 0 rgba(255, 255, 255, .70) !important;
    background:
        radial-gradient(1400px 600px at 30% 0%, rgba(246, 199, 76, .13), rgba(246, 199, 76, 0) 65%),
        radial-gradient(800px 400px at 75% 100%, rgba(246, 199, 76, .07), rgba(246, 199, 76, 0) 70%),
        linear-gradient(160deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, .58)) !important;
}

/* Each featured row: elegant inset card with gold top border */
body.page-template-page-award-yearly-awards .award-feature-stack .award-feature-row,
body.page-template-page-award-yearly-awards-php .award-feature-stack .award-feature-row {
    background: linear-gradient(160deg, rgba(255, 255, 255, .55), rgba(255, 255, 255, .30));
    border: 1px solid rgba(255, 255, 255, .40);
    border-top: 3px solid rgba(246, 199, 76, .75);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .70),
        0 12px 32px rgba(0, 0, 0, .08),
        0 2px 8px rgba(246, 199, 76, .10);
    border-radius: 20px;
    padding: 28px 32px;
}

body.page-template-page-award-yearly-awards .award-feature-row+.award-feature-row,
body.page-template-page-award-yearly-awards-php .award-feature-row+.award-feature-row {
    margin-top: 16px;
    padding-top: 28px;
    border-top: 2px solid rgba(246, 199, 76, .55);
}

/* Award title: slightly larger */
body.page-template-page-award-yearly-awards .award-feature-title,
body.page-template-page-award-yearly-awards-php .award-feature-title {
    color: var(--ya-ink-maroon);
    font-size: 1.15rem;
    letter-spacing: -0.02em;
}

/* Winner name: larger and bolder — these are the top honors */
body.page-template-page-award-yearly-awards .award-feature-name,
body.page-template-page-award-yearly-awards-php .award-feature-name {
    font-size: 1.35rem !important;
    font-weight: 600 !important;
    opacity: 1 !important;
    color: var(--ya-ink-maroon-deep) !important;
    margin-top: 8px !important;
    letter-spacing: -0.01em !important;
}

/* Section heading: larger for Featured Awards only */
body.page-template-page-award-yearly-awards .award-group-featured .award-group-title,
body.page-template-page-award-yearly-awards-php .award-group-featured .award-group-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    letter-spacing: -0.04em;
}

body.page-template-page-award-yearly-awards .award-group-featured .award-group-sub,
body.page-template-page-award-yearly-awards-php .award-group-featured .award-group-sub {
    font-size: 1.05rem;
    opacity: .65;
}

/* =========================================================
   SMALL GOLD MARKER — Crown of Honor + Bars + Unit/Club titles
========================================================= */

body.page-template-page-award-yearly-awards .award-group-honors .award-row::before,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-row::before {
    content: "";
    width: 10px !important;
    height: 7px !important;
    border-radius: 999px !important;
    position: absolute !important;
    left: 0 !important;
    top: 16px !important;
    background: linear-gradient(180deg, var(--yellow), var(--yellow2)) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .18) !important;
}

body.page-template-page-award-yearly-awards .award-group-honors .award-col--bars .award-row::before,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-col--bars .award-row::before {
    content: "" !important;
    width: 10px !important;
    height: 7px !important;
    border-radius: 999px !important;
    top: 16px !important;
    background: linear-gradient(180deg, var(--yellow), var(--yellow2)) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .18) !important;
}

body.page-template-page-award-yearly-awards .award-group-honors .award-col--bars .award-row-name,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-col--bars .award-row-name {
    padding-left: 18px !important;
}

body.page-template-page-award-yearly-awards .award-group-unitclub .uc-unit,
body.page-template-page-award-yearly-awards-php .award-group-unitclub .uc-unit {
    position: relative;
    padding-left: 18px;
    display: inline-block;
}

body.page-template-page-award-yearly-awards .award-group-unitclub .uc-unit::before,
body.page-template-page-award-yearly-awards-php .award-group-unitclub .uc-unit::before {
    content: "";
    width: 10px;
    height: 7px;
    border-radius: 999px;
    position: absolute;
    left: 0;
    top: 0.35em;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(246, 199, 76, .95), rgba(246, 199, 76, .55));
    box-shadow:
        0 0 0 3px rgba(246, 199, 76, .14),
        0 1px 2px rgba(0, 0, 0, .18);
}

/* =========================================================
   INNER CARDS — premium inset surface
========================================================= */

body.page-template-page-award-yearly-awards,
body.page-template-page-award-yearly-awards-php {
    --ya-inset-radius: 30px;
    --ya-inset-pad: 30px;
    --ya-inset-border: var(--theme-border);
    --ya-inset-glow: rgba(255, 255, 255, .55);
    --ya-inset-shadow: var(--theme-shadow-md);
    --ya-inset-gold: var(--theme-yellow-soft);
    --ya-inset-maroon: var(--theme-maroon-soft);
    --ya-inset-hairline: var(--theme-yellow-soft);
    --ya-inset-feather: 22px;
}

body.page-template-page-award-yearly-awards :is(.award-panel.glass, .award-unitclub.glass, .award-feature-stack.glass)> :is(.glass, .award-panel-inner, .award-inner),
body.page-template-page-award-yearly-awards-php :is(.award-panel.glass, .award-unitclub.glass, .award-feature-stack.glass)> :is(.glass, .award-panel-inner, .award-inner) {
    border-radius: var(--ya-inset-radius) !important;
    padding: var(--ya-inset-pad) !important;
    border: 1px solid var(--ya-inset-border) !important;

    background: var(--theme-card-strong) !important;

    box-shadow:
        inset 0 1px 0 var(--ya-inset-glow),
        inset 0 -18px 34px rgba(0, 0, 0, .06),
        0 18px 46px var(--ya-inset-shadow) !important;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;

    -webkit-mask-image: radial-gradient(farthest-side,
            #000 calc(100% - var(--ya-inset-feather)),
            transparent 100%);
    mask-image: radial-gradient(farthest-side,
            #000 calc(100% - var(--ya-inset-feather)),
            transparent 100%);
}

body.page-template-page-award-yearly-awards :is(.award-panel.glass, .award-unitclub.glass, .award-feature-stack.glass)> :is(.glass, .award-panel-inner, .award-inner)::before,
body.page-template-page-award-yearly-awards-php :is(.award-panel.glass, .award-unitclub.glass, .award-feature-stack.glass)> :is(.glass, .award-panel-inner, .award-inner)::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 18px;
    bottom: 18px;
    width: 1px;
    background: linear-gradient(180deg,
            rgba(246, 199, 76, 0),
            rgba(246, 199, 76, .22),
            rgba(246, 199, 76, 0));
    opacity: .75;
    pointer-events: none;
}

/* =========================================================
   WINNER TYPOGRAPHY
========================================================= */

body.page-template-page-award-yearly-awards .award-feature-name,
body.page-template-page-award-yearly-awards-php .award-feature-name,
body.page-template-page-award-yearly-awards .award-row-name,
body.page-template-page-award-yearly-awards-php .award-row-name,
body.page-template-page-award-yearly-awards .uc-winner,
body.page-template-page-award-yearly-awards-php .uc-winner {
    font-size: 1.05rem !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    opacity: .85 !important;
    color: var(--shr-maroon-deep) !important;
}

body.page-template-page-award-yearly-awards .uc-unit,
body.page-template-page-award-yearly-awards-php .uc-unit {
    font-weight: 800 !important;
    opacity: .92 !important;
}

/* =========================================================
   CONTEXTUAL BLURBS — per-section story text
========================================================= */

/* Shared blurb style */
body.page-template-page-award-yearly-awards .award-blurb,
body.page-template-page-award-yearly-awards-php .award-blurb {
    font-size: .93rem;
    line-height: 1.7;
    opacity: .72;
    max-width: 68ch;
    margin: 0 auto;
    text-align: center;
    font-style: italic;
    padding: 0 12px 4px;
}

/* Gold stat callout — used in "Most Money Raised" */
body.page-template-page-award-yearly-awards .award-stat-callout,
body.page-template-page-award-yearly-awards-php .award-stat-callout {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 10px auto 0;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(246, 199, 76, .18), rgba(246, 199, 76, .08));
    border: 1px solid rgba(246, 199, 76, .35);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--shr-maroon);
    text-align: center;
}

body.page-template-page-award-yearly-awards .award-stat-callout::before,
body.page-template-page-award-yearly-awards-php .award-stat-callout::before {
    content: "◆";
    font-size: .6em;
    color: rgba(246, 199, 76, .9);
}

/* "About this award" pure-CSS disclosure — Featured Awards */
body.page-template-page-award-yearly-awards .award-about,
body.page-template-page-award-yearly-awards-php .award-about {
    margin-top: 14px;
    text-align: center;
}

body.page-template-page-award-yearly-awards .award-about-toggle,
body.page-template-page-award-yearly-awards-php .award-about-toggle {
    display: inline-block;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--shr-maroon);
    opacity: .55;
    cursor: pointer;
    user-select: none;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(90, 0, 17, .25);
    transition: opacity .2s;
}

body.page-template-page-award-yearly-awards .award-about-toggle:hover,
body.page-template-page-award-yearly-awards-php .award-about-toggle:hover {
    opacity: .85;
}

/* Hidden checkbox drives the toggle — no JS */
body.page-template-page-award-yearly-awards .award-about-cb,
body.page-template-page-award-yearly-awards-php .award-about-cb {
    display: none;
}

body.page-template-page-award-yearly-awards .award-about-body,
body.page-template-page-award-yearly-awards-php .award-about-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, opacity .3s ease;
    opacity: 0;
}

body.page-template-page-award-yearly-awards .award-about-cb:checked~.award-about-body,
body.page-template-page-award-yearly-awards-php .award-about-cb:checked~.award-about-body {
    max-height: 400px;
    opacity: 1;
}

body.page-template-page-award-yearly-awards .award-about-cb:checked~label.award-about-toggle,
body.page-template-page-award-yearly-awards-php .award-about-cb:checked~label.award-about-toggle {
    opacity: .8;
}

body.page-template-page-award-yearly-awards .award-about-inner,
body.page-template-page-award-yearly-awards-php .award-about-inner {
    padding: 16px 24px 4px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    text-align: left;
}

body.page-template-page-award-yearly-awards .award-about-item,
body.page-template-page-award-yearly-awards-php .award-about-item {
    font-size: .88rem;
    line-height: 1.65;
    opacity: .72;
    border-left: 2px solid rgba(246, 199, 76, .4);
    padding-left: 12px;
}

body.page-template-page-award-yearly-awards .award-about-item strong,
body.page-template-page-award-yearly-awards-php .award-about-item strong {
    display: block;
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--shr-maroon);
    opacity: .8;
    margin-bottom: 4px;
}

/* Honors note callout */
body.page-template-page-award-yearly-awards .award-honors-note,
body.page-template-page-award-yearly-awards-php .award-honors-note {
    margin-bottom: 22px;
    padding: 14px 20px;
    border-radius: 14px;
    background: var(--theme-card-strong);
    border: 1px solid var(--theme-yellow-soft);
    font-size: .88rem;
    line-height: 1.6;
    opacity: .82;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

body.page-template-page-award-yearly-awards .award-honors-note p,
body.page-template-page-award-yearly-awards-php .award-honors-note p {
    margin: 0;
}

body.page-template-page-award-yearly-awards .award-honors-note strong,
body.page-template-page-award-yearly-awards-php .award-honors-note strong {
    color: var(--shr-maroon);
}

/* Intro area: transparent glass for intro, keep controls styled */
body.page-template-page-award-yearly-awards .award-yearly-intro.glass,
body.page-template-page-award-yearly-awards-php .award-yearly-intro.glass {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    padding: 40px 0 4px !important;
}

@media (max-width: 860px) {

    body.page-template-page-award-yearly-awards .award-about-inner,
    body.page-template-page-award-yearly-awards-php .award-about-inner {
        grid-template-columns: 1fr;
    }

    body.page-template-page-award-yearly-awards .award-honors-note,
    body.page-template-page-award-yearly-awards-php .award-honors-note {
        grid-template-columns: 1fr;
    }

    body.page-template-page-award-yearly-awards .award-yearly-top,
    body.page-template-page-award-yearly-awards-php .award-yearly-top {
        grid-template-columns: 1fr;
    }

    body.page-template-page-award-yearly-awards .award-yearly-controls,
    body.page-template-page-award-yearly-awards-php .award-yearly-controls {
        max-width: 100%;
        width: 100%;
        margin-left: 0;
    }

    body.page-template-page-award-yearly-awards .award-yearly-intro-body,
    body.page-template-page-award-yearly-awards-php .award-yearly-intro-body {
        grid-template-columns: 1fr;
    }

    body.page-template-page-award-yearly-awards .award-yearly-intro-stats,
    body.page-template-page-award-yearly-awards-php .award-yearly-intro-stats {
        max-width: 100%;
        justify-self: stretch;
    }
}

/* =========================================================
   FIX — restore column padding and row gaps broken by stat callout
========================================================= */

/* Ensure major grid has row gap between the two rows of categories */
body.page-template-page-award-yearly-awards .award-cols--major,
body.page-template-page-award-yearly-awards-php .award-cols--major {
    row-gap: 8px;
}

/* Stat callout wrapper — needs explicit z-index to not disrupt panel stacking */
body.page-template-page-award-yearly-awards .award-stat-wrap,
body.page-template-page-award-yearly-awards-php .award-stat-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 22px;
    margin-top: 4px;
}

/* Restore col padding explicitly (overrides any cascade issue) */
body.page-template-page-award-yearly-awards .award-group-major .award-col,
body.page-template-page-award-yearly-awards-php .award-group-major .award-col,
body.page-template-page-award-yearly-awards .award-group-honors .award-col,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-col {
    padding: 16px 18px 16px 20px !important;
}

/* Restore row padding inside cols */
body.page-template-page-award-yearly-awards .award-group-major .award-row,
body.page-template-page-award-yearly-awards-php .award-group-major .award-row,
body.page-template-page-award-yearly-awards .award-group-honors .award-row,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-row {
    padding: var(--ya-row-pad) 0 !important;
}

/* Honors note needs z-index too */
body.page-template-page-award-yearly-awards .award-honors-note,
body.page-template-page-award-yearly-awards-php .award-honors-note {
    position: relative;
    z-index: 1;
}

/* =========================================================
   FIX — gold marker vertically centered on name text
   Switch from absolute positioning to flex alignment
========================================================= */

/* Row becomes flex so marker + name sit on the same baseline */
body.page-template-page-award-yearly-awards .award-row,
body.page-template-page-award-yearly-awards-php .award-row {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
}

/* Kill the absolute-positioned ::before dot */
body.page-template-page-award-yearly-awards .award-row::before,
body.page-template-page-award-yearly-awards-php .award-row::before {
    content: "" !important;
    display: block !important;
    flex: 0 0 10px !important;
    width: 10px !important;
    height: 7px !important;
    border-radius: 999px !important;
    margin-top: 0.42em !important;
    /* nudge to optical center of first text line */
    position: static !important;
    top: auto !important;
    left: auto !important;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(246, 199, 76, .95), rgba(246, 199, 76, .55)) !important;
    box-shadow:
        0 0 0 3px rgba(246, 199, 76, .14),
        0 1px 2px rgba(0, 0, 0, .18) !important;
}

/* Name no longer needs padding-left since marker is in flow */
body.page-template-page-award-yearly-awards .award-row-name,
body.page-template-page-award-yearly-awards-php .award-row-name {
    padding-left: 0 !important;
    flex: 1 1 auto !important;
}

/* Detail also loses its indent — inherits from row flex */
body.page-template-page-award-yearly-awards .award-row-detail,
body.page-template-page-award-yearly-awards-php .award-row-detail {
    padding-left: 0 !important;
    /* push detail under the name, not the dot */
    width: 100% !important;
    margin-left: 20px !important;
}

/* Keep Honors markers consistent */
body.page-template-page-award-yearly-awards .award-group-honors .award-row::before,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-row::before {
    margin-top: 0.42em !important;
}

/* =========================================================
   FIX — Honors section markers + Special Awards detail
========================================================= */

/* Merit Jewels + Crown of Honor have NO ::before dot by default
   because they are not .award-col--bars. Force them on. */
body.page-template-page-award-yearly-awards .award-group-honors .award-col:not(.award-col--bars) .award-row::before,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-col:not(.award-col--bars) .award-row::before {
    content: "" !important;
    display: block !important;
    flex: 0 0 10px !important;
    width: 10px !important;
    height: 7px !important;
    border-radius: 999px !important;
    margin-top: 0.42em !important;
    position: static !important;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(246, 199, 76, .95), rgba(246, 199, 76, .55)) !important;
    box-shadow:
        0 0 0 3px rgba(246, 199, 76, .14),
        0 1px 2px rgba(0, 0, 0, .18) !important;
}

/* Special Awards — detail lines styled as a mini-list with dots */
body.page-template-page-award-yearly-awards .award-group-honors .award-row-detail,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-row-detail {
    margin-left: 0 !important;
    margin-top: 8px !important;
    padding-left: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

/* Each line in winner_detail gets rendered via nl2br —
   we can't add elements, but we can style the block nicely */
body.page-template-page-award-yearly-awards .award-group-honors .award-col .award-row-name,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-col .award-row-name {
    flex: 1 1 auto !important;
}

/* =========================================================
   SPECIAL AWARDS — title as award label, name as recipient
========================================================= */

body.page-template-page-award-yearly-awards .award-special-label,
body.page-template-page-award-yearly-awards-php .award-special-label {
    display: block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--shr-maroon);
    opacity: .65;
    margin-bottom: 2px;
}

body.page-template-page-award-yearly-awards .award-special-winner,
body.page-template-page-award-yearly-awards-php .award-special-winner {
    display: block;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--shr-maroon-deep);
    opacity: .85;
}

/* =========================================================
   FIX — Crown of Honor Bars dot alignment
   Remove conflicting overrides, unify with global flex row
========================================================= */

/* Kill the old bars-specific marker override that conflicts with flex */
body.page-template-page-award-yearly-awards .award-group-honors .award-col--bars .award-row::before,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-col--bars .award-row::before {
    content: "" !important;
    display: block !important;
    flex: 0 0 10px !important;
    width: 10px !important;
    height: 7px !important;
    border-radius: 999px !important;
    margin-top: 0.42em !important;
    position: static !important;
    top: auto !important;
    left: auto !important;
    background:
        radial-gradient(circle at 35% 35%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 55%),
        linear-gradient(180deg, rgba(246, 199, 76, .95), rgba(246, 199, 76, .55)) !important;
    box-shadow:
        0 0 0 3px rgba(246, 199, 76, .14),
        0 1px 2px rgba(0, 0, 0, .18) !important;
}

/* Remove the orphan extra dot from HONORS bars section override */
body.page-template-page-award-yearly-awards .award-group-honors .award-col--bars .award-row-name,
body.page-template-page-award-yearly-awards-php .award-group-honors .award-col--bars .award-row-name {
    padding-left: 0 !important;
}

/* =========================================================
   Styled Year Selector
========================================================= */

body.page-template-page-award-yearly-awards-php .award-feature-row {
    padding: 12px 0;
}
