.gs-home-awards {
    position: relative;
    overflow: hidden;
    padding: clamp(64px, 7vw, 104px) 24px;
    color: #fff;
    background:
        radial-gradient(circle at 92% 12%, rgba(217, 173, 67, .22), transparent 31%),
        radial-gradient(circle at 8% 90%, rgba(44, 110, 142, .28), transparent 34%),
        linear-gradient(135deg, #061f36 0%, #0b3855 58%, #09283f 100%);
}

.gs-home-awards::before,
.gs-home-awards::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    pointer-events: none;
}

.gs-home-awards::before {
    width: 420px;
    height: 420px;
    right: -180px;
    top: -230px;
}

.gs-home-awards::after {
    width: 250px;
    height: 250px;
    right: -76px;
    top: -115px;
}

.gs-home-awards-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
    gap: clamp(36px, 6vw, 78px);
    align-items: center;
}

.gs-home-awards-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: #e1b84f;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.gs-home-awards h2 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.45rem, 5vw, 4.7rem);
    line-height: .98;
    letter-spacing: -.035em;
}

.gs-home-awards-lead {
    max-width: 690px;
    margin: 26px 0 0;
    color: #fff;
    font-size: clamp(1.08rem, 1.7vw, 1.35rem);
    line-height: 1.55;
}

.gs-home-awards-note {
    max-width: 670px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, .76);
    font-size: .98rem;
    line-height: 1.65;
}

.gs-home-awards-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding: 14px 20px;
    border: 1px solid rgba(225, 184, 79, .55);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, .04);
    font-weight: 800;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.gs-home-awards-link:hover,
.gs-home-awards-link:focus-visible {
    color: #071f34;
    background: #e1b84f;
    transform: translateY(-2px);
}

.gs-home-awards-list {
    display: grid;
    gap: 16px;
}

.gs-home-award-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 24px;
    background: rgba(255, 255, 255, .085);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .15);
    backdrop-filter: blur(8px);
}

.gs-home-award-mark {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid rgba(225, 184, 79, .65);
    border-radius: 50%;
    color: #e1b84f;
    background: rgba(225, 184, 79, .1);
    font-size: 1.35rem;
}

.gs-home-award-card p {
    margin: 1px 0 5px;
    color: #e1b84f;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.gs-home-award-card h3 {
    margin: 0;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    line-height: 1.12;
}

.gs-home-award-card span:not(.gs-home-award-mark) {
    display: block;
    margin-top: 9px;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    line-height: 1.5;
}

@media (max-width: 820px) {
    .gs-home-awards {
        padding: 62px 20px;
    }

    .gs-home-awards-shell {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .gs-home-awards h2 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
}

@media (max-width: 520px) {
    .gs-home-award-card {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
        padding: 20px;
        border-radius: 20px;
    }

    .gs-home-award-mark {
        width: 46px;
        height: 46px;
        font-size: 1.05rem;
    }

    .gs-home-awards-link {
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gs-home-awards-link { transition: none; }
}
