/* Compact ANT Top Games heading rail: fills wide desktop space without changing card styling. */
.top-games-heading.top-games-heading--active {
    grid-template-columns: minmax(460px, 1fr) auto auto;
    align-items: end;
    column-gap: clamp(18px, 2.2vw, 38px);
    row-gap: 16px;
    margin-bottom: 18px;
}

.top-games-heading--active .top-games-heading-copy {
    min-width: 0;
}

.top-games-heading--active .top-games-heading-copy > p:last-child {
    max-width: 62ch;
    margin-top: 10px;
}

.top-games-status {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(78px, 1fr));
    align-items: stretch;
    min-width: clamp(288px, 21vw, 390px);
    overflow: hidden;
    border-block: 1px solid rgba(117, 148, 157, .34);
    background: rgba(255, 255, 255, .32);
}

.top-games-status::before,
.top-games-status::after {
    position: absolute;
    top: 0;
    width: 20px;
    height: 2px;
    content: "";
}

.top-games-status::before {
    left: 0;
    background: #ef7d3b;
}

.top-games-status::after {
    right: 0;
    background: #39bfd4;
}

.top-games-status > span {
    display: grid;
    align-content: center;
    min-height: 58px;
    padding: 9px 14px 8px;
    border-right: 1px solid rgba(117, 148, 157, .22);
}

.top-games-status > span:last-of-type {
    border-right: 0;
}

.top-games-status strong {
    color: #132128;
    font-family: var(--font-display, inherit);
    font-size: clamp(1.02rem, 1.35vw, 1.28rem);
    font-weight: 700;
    letter-spacing: -.035em;
    line-height: 1;
}

.top-games-status small {
    margin-top: 5px;
    color: #6e8188;
    font-family: var(--font-mono);
    font-size: .56rem;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1;
}

.top-games-status > i {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    opacity: .32;
    background: linear-gradient(90deg, #ef7d3b, #d7e0e3 32%, #d7e0e3 70%, #39bfd4);
}

.top-games-heading--active .top-games-all {
    align-self: end;
    margin: 0;
}

@media (max-width: 1180px) {
    .top-games-heading.top-games-heading--active {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .top-games-status {
        grid-column: 1 / -1;
        grid-row: 2;
        width: min(100%, 520px);
        min-width: 0;
    }
}

@media (max-width: 720px) {
    .top-games-heading.top-games-heading--active {
        grid-template-columns: 1fr;
        gap: 13px;
        margin-bottom: 14px;
    }

    .top-games-status {
        grid-column: auto;
        grid-row: auto;
        width: 100%;
    }

    .top-games-status > span {
        min-height: 52px;
        padding-inline: 10px;
    }

    .top-games-heading--active .top-games-all {
        width: 100%;
        min-width: 0;
    }
}
