.benefits__card {
    position: relative;
    height: 320px;
    margin-bottom: 20px;
    padding: 48px 38px 0 38px;
    overflow: hidden;
    border-radius: 32px;
    color: #333;
}

a.benefits__card {
    cursor: pointer;
}

@media (max-width: 768px) {
    .benefits__card {
        height: 300px;
        padding: 32px 24px 0 38px;
    }
}
.benefits__card__title {
    position: relative;
    margin-bottom: 12px;
    z-index: 2;
    font-size: 26px;
    font-weight: 500;
    line-height: 31px;
}
.benefits__card__left-aligned .benefits__card__title {
    width: 50%;
}
@media (max-width: 576px) {
    .benefits__card__title {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
    }
}
.benefits__card__subtitle {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    z-index: 2;
}
.benefits__card__left-aligned__image-container {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: end;
    *z-index: 1;
}
.benefits__card__center-aligned {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    *background-color: #f2f2f2;
}
.benefits__card__center-aligned__title {
    text-align: center;
}
.benefits__card__center-aligned__subtitle {
    width: 70%;
    text-align: center;
}

.card-light-gray {
    background-color: #fcfcfc;
}

.card-dark-gray {
    background-color: #eeeeee;
}