.scn-awards { margin-top: 0; padding-top: 0; }
.scn-awards__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.scn-award-card {
    background: #fff; border: 1px solid #e5e5e5; border-radius: 20px;
    padding: 32px 28px; display: flex; flex-direction: column; align-items: center;
    text-align: center; height: max-content;
}
.scn-award-card__icon { color: #574a76; font-size: 34px; width: 34px; height: 34px; margin-bottom: 12px; }
/* Balance multi-line wrapping so no lonely word lands on the last line */
.scn-award-card :is(.scn-award-card__title, .scn-award__person, .scn-award__company, .scn-award-card__placeholder) {
    text-wrap: balance;
}
.scn-award-card__title { font-size: clamp(18px, 2.2vw, 22px); font-weight: 700; color: #1a1a1a; margin: 0 0 20px; line-height: 1.3; }
.scn-award-card__list { display: flex; flex-direction: column; gap: 3px; width: 100%; }
.scn-award__nominee { display: flex; flex-direction: column; gap: 2px; padding: 8px 12px; border-radius: 12px; line-height: 1.3; }
/* Non-link names: muted grey with a faint purple tint */
.scn-award__person { color: #8a8595; font-weight: 500; line-height: 1.3; }
.scn-award__company { color: #8a8595; line-height: 1.3; }
/* Linked names use the solid brand purple + a tinted hover box (no underline) */
.scn-award__nominee a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #574a76; text-decoration: none;
    padding: 5px 12px; margin: -5px -12px; border-radius: 10px;
    transition: background-color 0.15s ease;
}
.scn-award__nominee a:hover { background-color: rgba(87, 74, 118, 0.10); }
.scn-award__ext { font-size: 15px; width: 15px; height: 15px; line-height: 1; flex-shrink: 0; }
/* Winner: highlighted tinted panel with the WINNER badge straddling the top edge */
.scn-award__nominee--winner {
    position: relative;
    font-weight: 700;
    background: #f3f3f5;
    border: 1px solid #e2e2e6;
    border-radius: 14px;
    padding: 24px 18px 16px;
    margin-top: 14px;
}
/* On a winner keep both parts bold, but let the non-linked part stay grey —
   only the linked name (the <a>, coloured purple above) shows the brand colour. */
.scn-award__nominee--winner .scn-award__person,
.scn-award__nominee--winner .scn-award__company { font-weight: 700; }
.scn-award__badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 3px 12px;
    background: #574a76;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 10px;
    white-space: nowrap;
}
/* Sits directly under the category title, pulled up closer to it */
.scn-award__sponsor { margin-top: -32px; margin-bottom: 16px; }
.scn-award__sponsor-label { display: block; color: #888; font-size: 14px; margin-bottom: 8px; }
.scn-award__sponsor-img { max-height: 70px; max-width: 140px; width: auto; height: auto; }
.scn-award-card__placeholder { color: #888; margin: 0; }
@media (max-width: 900px) { .scn-awards__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .scn-awards__grid { grid-template-columns: 1fr; gap: 20px; } }
