.at-lpfs__sectionsContainer {
    display: flex;
    flex-wrap: wrap;
    gap: var(--columnGutter);
}

.at-lpfs__sectionTitle,
.at-lpfs__sectionIntro {
    text-align: center;
}

.at-lpfs__sectionTitle {
    margin: 0 0 1rem 0 ;
}

.at-lpfs__sectionIntro {
    margin: 0 auto 2rem;
}

.at-lpfs__article {
    position: relative;
    flex: 0 1 100%;
    background: var(--baseLight200);
}

.at-lpfs__article--hasShadow {
    box-shadow: 0 0 1rem rgba(78, 78, 78, .10);
}

.at-lpfs__contentContainer {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.at-lpfs__article--hasBackground .at-lpfs__contentContainer,
.at-lpfs__article--hasShadow .at-lpfs__contentContainer {
    padding: 1rem 0;
}

.at-lpfs__titleContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    text-align: center;
    color: var(--baseLight100);
    background: var(--primaryColor500);
}

.at-lpfs__titleContainer .icon {
    padding-bottom: .7rem;
    font-size: 2.5rem;
    text-align: center;
}

.at-lpfs__title {
    margin: 0;
    font-family: var(--siteFontCondensed);
    font-size: 1.3rem;
    line-height: 25px;
    font-weight: 700;
    text-transform: uppercase;
    hyphens: auto;
}

.at-lpfs__title--noMargin {
    margin-top: 0;
}

.at-lpfs__textContainer {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1rem 1rem 1.7rem 1rem;
}

.at-lpfs__image {
    display: block;
    width: 100%;
}

.at-lpfs__textContainer p {
    margin-bottom: calc(var(--horizontalSpace) / 2);
    flex-grow: 1;
}

.at-lpfs__buttonWrapper {
    padding-top: 1rem;
    text-align: center;
}

.at-lpfs__button {
    display: block;
    margin: 0;
}

.at-lpfs__button::after {
    content: '\e802';
    float: right;
    font-family: var(--iconFont);
    color: var(--baseLight100);
}

@media (min-width: 568px) {
    .at-lpfs__article {
        flex-basis: calc(50% - var(--columnGutter) / 2);
    }
}

@media (min-width: 768px) {
    .at-lpfs--3 .at-lpfs__article {
        flex-basis: calc(33.33% - var(--columnGutter) / 1.5);
    }
}
