.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;
}

.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: 70%;
}

.wide .benefits__card__left-aligned .benefits__card__title {
    width: 50%;
}

.benefits__card__subtitle {
    position: relative;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    z-index: 2;
    max-width: 60%;
}
.wide .benefits__card__subtitle {
    max-width: 40%;
}
.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;
}

@media (max-width: 991px) {
    .benefits__card__left-aligned__image-container {
        opacity: 0.3;
    }
    .benefits__card {
        height: 300px;
        padding: 32px 24px 0 38px;
    }
    .benefits__card__subtitle {
        max-width: 100%;
    }
    .wide .benefits__card__subtitle {
        max-width: 60%;
    }
    .wide .benefits__card__left-aligned__image-container {
        right: auto;
        left: 55%;
    }
}

@media (max-width: 575px) {
    .benefits__card__title {
        font-size: 24px;
        font-weight: 500;
        line-height: 32px;
    }
    .benefits__card__title,
    .wide .benefits__card__title {
        width: 100%;
    }
    .benefits__card__subtitle,
    .wide .benefits__card__subtitle {
        max-width: 75%;
    }
}

@media (max-width: 515px) {
    .benefits__card__subtitle,
    .wide .benefits__card__subtitle {
        max-width: 100%;
    }
}