#section__support .cmp-text,
#section__support--SecondaryColor .cmp-text {
    padding: 0;
}

#section__support .cmp-image__image,
#section__support--SecondaryColor .cmp-image__image {
    width: auto;
}

#section__support {
    background-color: var(--color-tertiary-light);
    border-radius: 32px;
    padding: 40px 16px;
    margin: 20px 0;
}

#section__support--SecondaryColor {
    background: var(--color-secondary-ultralight);
    border-radius: 32px;
    padding: 40px 16px;
    margin: 20px 0;
}

#section__supportTitle {
    margin-bottom: 24px;
}

#section__supportCards > .aem-Grid {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    row-gap: 30px;
    margin-top: 28px;
}

#section__supportCards > .aem-Grid::before {
    content: none;
}

#section__supportCard {
    background-color: var(--color-neutral);
    border-radius: 32px;
    padding: 30px;
    height: 100%;
}

#section__supportCard > .aem-Grid {
    display: flex;
    flex-direction: column;
    text-align: center;
}

#section__supportCard .image {
    margin: 0;
}

#section__supportImage {
    margin-bottom: 30px;
}

#section__supportSubtitle {
    margin-bottom: 16px;
}

@media (min-width: 1024px) {
    #section__support,
    #section__support--SecondaryColor  {
        margin: 40px 0;
        padding: 60px 40px;
    }

    #section__supportCards > .aem-Grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: none;
        column-gap: 16px;
        row-gap: 0;
    }
}