.jackpot-card {
    background: #143CDB;
    padding: 32px;
    border-radius: 10px;
    position: relative;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    display: flex;
    align-items: flex-end;
    background-size: 80%;
    margin-bottom: 24px;
    
}

.card-has-no-bg-img{
    width: 100%;
    display: grid;
    /* background: red; */
    width: 100%;
    grid-template-columns: 2fr 1fr;
    min-height: unset;
}
.card-has-no-bg-img .jackpot-card__title{
    font-size: 24px;
    line-height: 40px;

}
.card-has-no-bg-img .jackpot-card__link{
    grid-column: 2;
}
.card-has-no-bg-img .jackpot-card__paragraph{
    grid-column: 1;
    overflow: hidden;
    /* white-space: nowrap;
    text-overflow: ellipsis; */
    width: 100%;
    display: block;
    margin-bottom: 0;

}
.jackpot-card:hover {
}

.jackpot-card__title {
    max-width: 320px;
    color:#fff;
    font-size: 32px;
    line-height: 44px;
    font-weight: bold;
}

.jackpot-card__paragraph {
    /* max-width: 320px; */
    color:#F2F2F2;
    font-size: 16px;
    line-height: 22px;
}

.jackpot-card__link {
    color:#fff;
    font-size: 16px;
    font-weight: bold;
    grid-column: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.jackpot-card__link:hover {
}

.jackpot-card__image {
    max-width: 320px;
    position: absolute;
}

.jackpot-card__content {
}

@media (max-width: 768px) {
    .jackpot-card__image {
    }
}

.jackpot-card--large {
}

.jackpot-card--medium {
}

.jackpot-card--small {
    /* background: red; */
    max-width: calc(33% - 1px);
    display: inline-block;
    padding: 12px;
    max-width: calc(33% - 3px);
}

.jackpot-card--small .card-has-no-bg-img{
    display: flex;
    flex-direction: column;

}

.jackpot-card--small .jackpot-card__paragraph{
    overflow: unset;
    white-space: unset;
    margin-bottom: 16px;
}
.jackpot-card--small .jackpot-card__title{
    display: none;
}




