.game-thumb-link {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
}

.home-game-thumb {
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}

.game-thumb-link .game-thumb-title {
    position: absolute;
    left: 5px;
    right: 5px;
    bottom: 5px;
    z-index: 2;
    padding: 8px 10px;
    border-radius: 0 0 16px 16px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, .82) 42%, rgba(0, 0, 0, .92));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .85);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease;
    pointer-events: none;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.game-thumb-link:hover .game-thumb-title,
.game-thumb-link:focus-visible .game-thumb-title {
    opacity: 1;
    transform: translateY(0);
}

.game-thumb-link:hover img,
.game-thumb-link:focus-visible img {
    filter: brightness(.78);
}

.home-game-thumb .game-thumb-title {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
}

@media (hover: none), (max-width: 767px) {
    .game-thumb-link .game-thumb-title {
        opacity: 1;
        transform: translateY(0);
    }
}
