/*** List ***/
.casinos {
    position: relative;
    margin-bottom: 20px;
}

.casinos__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    gap: 24px;
    margin-bottom: 12px;
    border-style: solid;
    border-width: 2px;
}

.casinos__item:last-child {
    margin: 0;
}

.casinos__num {
    font-weight: 700;
    font-size: 20px;
}

.casinos__logo {
    width: 120px;
    height: 120px;
    flex: 0 0 120px;
    overflow: hidden;
}

.casinos__logo img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.casinos__title-div {
    font-size: 18px;
    font-weight: 700;
}

.casinos__rating {
    display: flex;
    align-items: center;
    gap: 20px;
}

.casinos__rating span:first-child {
    font-weight: 700;
    font-size: 20px;
}

.casinos__bonus {
    cursor: pointer;
    width: 25%;
    flex: 0 0 25%;
    display: block;
    padding: 12px;
    text-align: center;
    font-weight: 700;
    transition: .3s;
}

.casinos__bonus button:hover {
    transform: scale(1);
}

.casinos__buttons {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.casinos__buttons a {
    white-space: nowrap;
}

@media screen and (max-width: 992px) {
    .casinos__item {
        flex-direction: column;
        padding: 12px;
        gap: 12px;
    }

    .casinos__title {
        width: 100%;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .casinos__bonus {
        width: 100%;
    }
}
