.awards {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    max-width: none;
    overflow: hidden;
    background: var(--color-white);
    --awards-gap: 120px;
}

.awards__track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--awards-gap);
    width: max-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.awards__group {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: var(--awards-gap);
    flex-shrink: 0;
}

.awards__item {
    flex-shrink: 0;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 224px;
}

.awards__item img {
    display: block;
    height: 64px;
    width: auto;
    max-height: 64px;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.2s ease;
}

.awards__item:hover img {
    filter: grayscale(0);
}

.awards .awards__toggle.gk-hero__btn {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border-radius: 40px;
    border: 1.25px solid currentColor;
    color: var(--color-forge);
    background: transparent;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1;
    transition:
        opacity 0.25s ease,
        color 0.3s ease,
        background-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .awards .awards__toggle.gk-hero__btn {
        opacity: 0;
    }

    .awards:hover .awards__toggle.gk-hero__btn,
    .awards:focus-within .awards__toggle.gk-hero__btn {
        opacity: 1;
    }
}

.awards .awards__toggle.gk-hero__btn:hover,
.awards .awards__toggle.gk-hero__btn:focus-visible {
    color: var(--color-flare);
}

.awards .awards__toggle.gk-hero__btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px;
}

.awards .awards__toggle.gk-hero__btn:hover:not(.is-active),
.awards .awards__toggle.gk-hero__btn:focus-visible:not(.is-active) {
    background: rgba(var(--color-flare-rgb), 0.08);
}

.awards .awards__toggle.gk-hero__btn.is-active {
    color: var(--color-flare);
}

.awards .awards__toggle.gk-hero__btn.is-active:hover,
.awards .awards__toggle.gk-hero__btn.is-active:focus-visible {
    background: rgba(var(--color-flare-rgb), 0.12);
}

.awards .gk-hero__icon-window {
    width: 24px;
    height: 24px;
    overflow: hidden;
    flex-shrink: 0;
    pointer-events: none;
}

.awards .gk-hero__icon-row {
    display: flex;
    flex-direction: row;
    width: 48px;
    height: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.awards .gk-hero__icon-row > svg {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: block;
}

.awards .gk-btn-play:not(.is-active) .gk-hero__icon-row {
    transform: translateX(0);
}

.awards .gk-btn-play:not(.is-active):hover .gk-hero__icon-row,
.awards .gk-btn-play:not(.is-active):focus-visible .gk-hero__icon-row {
    transform: translateX(-50%);
}

.awards .gk-btn-play.is-active .gk-hero__icon-row {
    transform: translateX(-50%);
}

@media (prefers-reduced-motion: reduce) {
    .awards .gk-hero__icon-row {
        transition: none !important;
    }

    .awards .gk-btn-play:not(.is-active):hover .gk-hero__icon-row,
    .awards .gk-btn-play:not(.is-active):focus-visible .gk-hero__icon-row {
        transform: translateX(0) !important;
    }
}

@media (min-width: 769px) {
    .awards .awards__toggle.gk-hero__btn {
        right: var(--padding-x);
        bottom: 24px;
    }
}
