#how-savings-add-up .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.clo-cards-container {
    display: flex;
    gap: 30px;
}

.clo-card {
    display: flex;
    flex-direction: column;
    padding: 30px 30px 60px;
    border-radius: 8px;
    flex: 1;
    gap: 16px;
}

.clo-card p,
.clo-card h5 {
    margin-bottom: 0 !important;
}

.clo-card.bg-grey {
    background-color: #f5f8f9 !important;
}

.clo-card.bg-light-blue {
    background-color: #e4eeff !important;
}

.clo-card-img {
    max-width: 162px;
    max-height: 97px;
}

.clo-card-blank-card {
    max-width: 150px;
    max-height: 97px;
}

.clo-card .caption {
    border-radius: 2.5rem;
    padding: 5px 10px;
    background-color: #FFBA00;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 2.6rem;
}

@media screen and (max-width: 640px) {
    .clo-cards-container {
        flex-direction: column;
    }
}