.highlights-center {
    grid-area: highlights;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 40px
}

.highlight {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    cursor: pointer
}

.highlight .deal-name::after {
    content: '';
    position: absolute;
    inset: 0
}

.highlight .hl-img-link {
    line-height: 0;
    align-self: center
}

.highlight .hl-capsule {
    height: 70px;
    width: auto;
    border-radius: 4px;
    display: block
}

.highlight .hl-label {
    font-size: 0.8125rem;
    color: #c5a336;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif
}

.highlight .hl-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 70px;
    min-width: 0
}

.highlight .deal-name {
    color: #fff;
    white-space: nowrap;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700
}

.highlight .deal-name-inner {
    white-space: nowrap
}

.highlight .deal-name.is-marquee .deal-name-inner {
    animation: hl-marquee 6s linear infinite;
    position: absolute
}

.highlight .deal-name:hover {
    color: #66c0f4
}

.highlight .hl-price-row {
    display: flex;
    align-items: center;
    gap: 8px
}

.highlight .disc {
    font-size: 1rem;
    padding: 2px 6px;
    font-family: 'Rajdhani', sans-serif
}

.highlight .hl-price {
    color: #a4d007;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Rajdhani', sans-serif
}

.highlight .hl-genres {
    color: #8f98a0;
    font-size: 0.7rem;
    white-space: nowrap
}

.hb-icon {
    vertical-align: middle;
    margin-right: 0.25em
}

.hb-games {
    color: #8f98a0;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Rajdhani', sans-serif
}

.hb-timer {
    color: #c9424d;
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Rajdhani', sans-serif
}

@keyframes hl-marquee {
    0% { transform: translateX(0) }
    8% { transform: translateX(0) }
    80% { transform: translateX(var(--marquee-dist)) }
    100% { transform: translateX(var(--marquee-dist)) }
}

@media (max-width: 1100px) {
    .highlights-center { display: none }
}
