.support_section>h3 {
    min-width: 100%;
}

.support_content {
    display: inherit;
    flex-wrap: inherit;
    justify-content: space-between;
    gap: 30px;
    max-width: 100%;
}

.support_content>* {
    max-width: inherit;
    min-width: inherit;
}

ul.support_usp_list {
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

li.support_usp {
    display: flex;
    padding: 24px;
    gap: 16px;
    width: 100%;
    align-items: center;
    border-radius: var(--border-radius-m);
}

li.support_usp .support_usp_text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support_usp_text h4,
.support_usp_text p {
    margin: 0;
}

.support_usp_text p>a {
    text-decoration: none;
    color: initial;
}

.support_icon {
    height: 48px;
    width: 48px;
}

.support_icon svg {
    display: inline-block;
    height: 100%;
    width: 100%;
}

.support_section .media {
    max-height: 260px;
    height: 260px;
    width: 100%;
}

.support_section .media img {
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;
}

.support_section_content>p>strong {
    color: var(--minuba-primary-regular);
}

@media screen and (min-width: 768px) {
    .support_section {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .support_content {
        flex-wrap: nowrap;
    }

    .support_section .media {
        max-width: 720px;
        height: 100%;
        max-height: 100%;
    }

    .support_section .media img {
        width: auto;
    }

    .support_section.half_split>.support_content>.text {
        max-width: 344px;
    }
}