.loco1-games {
    color: var(--text-main)
}

.loco1-games .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 20px
}

.loco1-games__list {
    display: grid;
    gap: 20px 73px;
    grid-template-columns: repeat(3,1fr)
}

.loco1-games__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    color: var(--text-main);
    gap: 20px;
    justify-content: space-between;
    width: 100%
}

.loco1-games__card-img {
    border-radius: 16px;
    overflow: hidden;
    width: 100%
}

.loco1-games__card-img__content {
    display: block;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    width: 100%
}

.loco1-games__card-info {
    margin-bottom: auto
}

.loco1-games__card-info__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 130%;
    margin-bottom: 8px
}

.loco1-games__card-info__description {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 16px
}

.loco1-games__card-info__description p {
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 400;
    line-height: 150%
}

.loco1-games__card-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    gap: 10px
}

@media (min-width: 1000px) {
    .loco1-games__card:not(:nth-child(3n),:last-child) {
        position:relative
    }

    .loco1-games__card:not(:nth-child(3n),:last-child):after {
        background-color: var(--line-secondary);
        bottom: 0;
        content: "";
        height: 100%;
        position: absolute;
        right: -36px;
        width: 1px
    }
}

@media (max-width: 1000px) {
    .loco1-games__list {
        grid-template-columns:repeat(2,1fr)
    }
}

@media (max-width: 1000px)and (min-width:600px) {
    .loco1-games__card:nth-child(odd):not(:last-child) {
        position:relative
    }

    .loco1-games__card:nth-child(odd):not(:last-child):after {
        background-color: var(--line-secondary);
        bottom: 0;
        content: "";
        height: 100%;
        position: absolute;
        right: -36px;
        width: 1px
    }
}

@media (max-width: 768px) {
    .loco1-games .container {
        gap:16px
    }
}

@media (max-width: 708px) {
    .loco1-games__card-info__title {
        font-size:20px;
        font-weight: 600;
        line-height: 140%
    }
}

@media (max-width: 600px) {
    .loco1-games__list {
        grid-template-columns:repeat(1,1fr);
        padding: 20px 0;
        row-gap: 40px
    }

    .loco1-games__card:first-child {
        position: relative
    }

    .loco1-games__card:first-child:before {
        background-color: var(--line-secondary);
        content: "";
        height: 1px;
        position: absolute;
        right: 0;
        top: -20px;
        width: 100%
    }

    .loco1-games__card:not(:last-child) {
        position: relative
    }

    .loco1-games__card:not(:last-child):after {
        background-color: var(--line-secondary);
        bottom: -20px;
        content: "";
        height: 1px;
        position: absolute;
        right: 0;
        width: 100%
    }
}

@media not all and (pointer: coarse) {
    .loco1-games__card:hover .loco1-games__card-img__content {
        -webkit-transform:scale(1.05);
        transform: scale(1.05)
    }
}
