.card-casino{
    min-height: 120px;
    width: 100%;
    max-width: 716px;
    margin: 10px 0px 10px 0px;
    background-color: var(--white);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}
.card-casino img{
    width: 100%;
    height: 100%;
    max-height: 60px;
    max-width: 60px;
}
.casino-block-img{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 120px;
}
.casino-block-title,
.casino-block-featured-text,
.casino-block-button{
    margin: auto;
}
.casino-block-featured-text p:before {
    color: var(--red);
    content: "\2022"; /* Unicode character for a bullet point */
    margin-right: 15px;
    
}
.featured-casino-block-headings {
    max-width: 142px !important;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.casino-block-featured-text p {
    font-size: 14px;
}
@media all and (max-width:767px) {
    .card-casino {
        padding: 29px 27px 27px;
    }
    .casino-block-featured-text p {
        margin-left: 10px;
    }
    .casino-block-button {
        margin-top: 20px;
        padding: 0;
    }
}
@media all and (max-width:390px) {
    .casino-block-button .tron-button {
        width: 100%;
    }
}