.game-catalog {
    padding-top: 14px;
}

.game-catalog .block-game {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.game-catalog .block-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.game-catalog .block-title .fl {
    position: relative;
    padding-left: 14px;
    font-size: 20px;
    font-weight: 700;
    color: #21484b;
}

.game-catalog .block-title .fl::before {
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 4px;
    border-radius: 4px;
    background: #d76b49;
    content: "";
}

.game-catalog .frm-search input {
    width: 320px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #ceded7;
    padding: 0 18px;
    background: #fffefa;
    font-size: 15px;
    color: #21484b;
    box-shadow: 0 2px 8px rgba(33, 72, 75, 0.04);
}

.game-catalog .frm-search input:focus {
    border-color: #4f8076;
    box-shadow: 0 0 0 3px rgba(79, 128, 118, 0.16);
}

.game-catalog .game-list.game-list--promo {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 15px -6px;
}

.game-catalog .game-list.game-list--promo .game {
    max-width: 20%;
    flex: 0 0 100%;
    margin: 6px 0;
}

.game-catalog .game-list--promo .game .game-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    padding: 8px 8px 10px;
    margin: 0 4px;
    background: #fffefa;
    border: 1px solid #d9e5df;
    box-shadow: 0 4px 12px rgba(33, 72, 75, 0.08);
    border-radius: 12px;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.game-catalog .game-list--promo .game .game-inner:hover {
    border-color: #9bbcb1;
    box-shadow: 0 9px 18px rgba(33, 72, 75, 0.13);
    transform: translateY(-3px);
}

.game-catalog .game-badge {
    display: none;
}

.game-catalog .game-list--promo .game .game-inner .game-thumb {
    border-radius: 8px;
    overflow: hidden;
    margin-top: 0;
    text-align: center;
}

.game-catalog .game-list--promo .game .game-inner .game-thumb a {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f7f3;
}

.game-catalog .game-list--promo .game .game-inner .game-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-catalog .game-list--promo .game .game-inner .game-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    margin: 8px 0 6px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    text-align: center;
}

.game-catalog .game-list--promo .game .game-inner .game-name a {
    display: -webkit-box;
    overflow: hidden;
    color: #21484b;
    text-decoration: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.game-catalog .game-list--promo .game .game-inner .game-action {
    display: block;
    height: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.game-catalog .game-list--promo .game .game-inner .game-action .btn-game-action {
    width: 100%;
    display: block;
    border: 1px solid #c85d3d;
    background: #fff1eb;
    color: #ad4d31;
    border-radius: 8px;
    height: 30px;
    line-height: 28px;
    font-size: 13px;
    font-weight: 700;
    padding: 0;
    box-shadow: none;
    outline: 0;
}

.game-catalog .game-list--promo .game .game-inner .game-action .btn-game-action:hover {
    background: #c85d3d;
    color: #fff;
}

@media (max-width: 1199px) {
    .game-catalog .game-list.game-list--promo .game {
        max-width: 25%;
    }
}

@media (max-width: 767px) {
    .game-catalog .block-title {
        align-items: stretch;
        flex-direction: column;
    }

    .game-catalog .block-title .fl {
        font-size: 18px;
    }

    .game-catalog .frm-search,
    .game-catalog .frm-search input {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .game-catalog .game-list.game-list--promo .game {
        max-width: 33.3333%;
    }

    .game-catalog .game-list--promo .game .game-inner {
        padding: 8px;
    }

    .game-catalog .game-list--promo .game .game-inner .game-name {
        height: 52px;
        margin: 8px 0 8px;
        font-size: 12px;
        line-height: 1.35;
    }

    .game-catalog .game-list--promo .game .game-inner .game-name a {
        -webkit-line-clamp: 3;
    }

    .game-catalog .game-list--promo .game .game-inner .game-action .btn-game-action {
        height: 30px;
        line-height: 28px;
        font-size: 13px;
    }
}
