.topCard__container {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
}
.topCard {
    flex: 0 1 32.5%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--bradMed);
    overflow: hidden;
    gap: 20px;
    background-color: var(--ultraDark30);
    padding-bottom: 24px;
}
.topCard > div:last-child {
    padding: 0 24px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.topCard > div:first-child {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 132px;
}
.topCard_casino_logo {
    object-fit: contain;
    width: 40%;
    height: 30%;
}
.topCard:nth-child(2) .topCard_casino_logo {
    height: 50%;
    width: 50%;
}

.topCard_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05 !important;
}
.topCard_rating {
    position: absolute;
    z-index: 10;
    right: 12px;
    top: 12px;
    background-color: white;
    border-radius: var(--brad);

    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
}
.topCard_rating p {
    color: #ff8f1f !important;
    font-weight: 500;
}
.topCard_rating img {
    transform: translateY(-1px);
    object-fit: contain;
}
.topCard_casinoName {
    position: absolute;
    top: 12px;
    left: 12px;
    text-transform: uppercase;
    font-weight: 700 !important;
}

.topCard_name_adds {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 21px;
}
.topCard_name_adds > div {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 4px;
}
.topCard_name_adds > div p {
    min-width: max-content;
    font-weight: 600 !important;
    color: white !important;
}
.topCard_name_adds > div img {
    object-fit: contain;
    max-height: 20px;
}
.topCard_name {
    text-align: center;
    margin-bottom: 20px;
}
.topCard .btn {
    margin-top: auto;
    display: inline-block;
}
@media (max-width: 768px) {
    .topCard {
        flex: 1 1 50%;
    }
}
