
.gameCard
{
    position: relative;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}
.gameCard .gameImg
{
    position: relative;
    width: 100%;
    height: 250px;
}
.gameCard img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gameCard_fullwidth {
    position: relative;
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: 0;
    padding: 20px 30px 20px 15px;
    border-radius: 10px;
    background-blend-mode: multiply;
    margin-bottom: 20px;
    z-index: 1;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    border: 1px solid #fff2;
    display: flex;
    align-items: center;
}
.card_overlay {
    background: linear-gradient(to right, transparent 0%, #0008 90%, #000 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    border-radius: 10px;
}
.game_content {
    position: absolute;
    right: 8rem;
}
.nav-link {
    transition: all 0.3s ease;
    color: #fff;
}
.nav-link:hover {
    color:#F7C91B !important;
}
.game_content a
{
    text-decoration: none;
}
.game_content h2
{
    font-size: clamp(1.6rem,5vw,2.5rem);
    color: #fff;
}

@media (max-width: 768px) {

    .carousel-item img
    {
        height: 150px !important;
        object-fit: cover;
    }
    .gameCard_fullwidth {
        height: 180px;
    }
    .card_overlay {
        background: linear-gradient(to left, transparent 0%, #0008 90%, #0008 100%);
    }
    .game_content {
        position: absolute;
        left: 1.5rem;
    }
}


