.warranty__subhead {
    column-gap: 4rem;
    row-gap: 1rem;
}

.warranty__subtitle {
    font-weight: 700;
}

.warranty__subtitle span {
    color: var(--color__fill-2);
}

.warranty__desc {
    align-self: flex-end;
    padding-bottom: 0.75rem;
    line-height: 1.75rem !important;
    color: rgba(20, 20, 43, 0.7)
}

/* CARDS */

.warranty__card {
    flex: 0 1 calc(50% - 0.75rem);
}

.warranty-card {
    position: relative;
    background-color: var(--color__fill-4);
    border-radius: .75rem;
    overflow: hidden;
    min-height: 20rem;
}

.warranty-card__title ,
.warranty-card__desc {
    position: relative;
    z-index: 1;
}

.warranty-card__title {
    font-weight: 700;
}

.warranty-card__desc {
    max-width: 21.125rem;
    color: rgba(20, 20, 43, 0.7);
}

.warranty-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.warranty-card__bg-img {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    aspect-ratio: 744 / 320;
}

/* LIST */

.warranty .warranty__list {
    max-width: 61.6rem !important;
    margin-left: unset !important;
}

li.warranty__item {
    color: rgba(20, 20, 43, 0.7) !important;
}

@media (max-width: 991px) {
    .warranty__cards {
        flex-direction: column;
    }

    .warranty__card {
        width: 100%;
    }

    .warranty-card__bg-img {
        width: unset !important;
        height: 100% !important;
    }
}

@media (max-width: 640px) {

    .warranty-card__bg {
        position: relative;
        height: 15rem;
    }

    .warranty-card__bg-img {
        right: -2.5rem;
        bottom: -2.5rem;
        max-width: unset;
    }
}