.cards__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
}

.cards__wrapper-card {
    position: sticky !important;
    padding: 96px 80px;
    top: 6rem;
    overflow: hidden;
    border-radius: 16px;
    transition: 0.3s ease-out;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 96px;
}

.cards__wrapper-card:before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-image: url("/wp-content/uploads/2025/02/CardBg.png");
    background-position: right bottom;
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.card__image {
    border-radius: 16px;
    width: 48%;
    min-width: 48%;
    max-width: 48%;
    min-height: 420px;
    object-fit: cover;
}

.card__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card__content .card__title {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}



/* Card content */
.card__content p:last-child {
    margin: 0;
}

.card__content .card__content-description,
.card__content .card__content-description * {
    font-size: 20px;
}




/* Media queries */
@media only screen and (max-width:1199px) {
    .cards__wrapper-card {
        padding: 64px;
        gap: 64px;
    }
}

@media only screen and (max-width:992px) {
    .cards__wrapper-card {
        flex-direction: column;
        padding: 48px;
        gap: 32px;
    }

    .cards__wrapper-card .card__image {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        height: 250px;
        min-height: 250px;
        max-height: 250px;
    }

    .cards__wrapper-card:before {
        opacity: .25;
    }
}


@media only screen and (max-width:992px) {
    .cards__wrapper-card {
        padding: 24px;
        gap: 16px;
        justify-content: start;
        top: 4rem;
    }

    .cards__wrapper-card .card__image {
        height: 200px;
        min-height: 200px;
        max-height: 200px;
    }

    .card__content {
        gap: 16px;
    }

    .card__content .card__content-description, .card__content .card__content-description * {
        font-size: 16px;
    }

    .card__title svg {
        width: 24px;
        height: 24px;
    }
}