.section-savings .title {
    font-weight: 500;
    text-transform: uppercase;
    color: var(--color-dark-green);
    margin-bottom: 32px;
    letter-spacing: 0.05em;
}

.section-savings .content {
    background-color: #fff;
    border-radius: 32px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.section-savings .content .item {
    border-left: 1px solid var(--color-vibrant-green);
    border-collapse: collapse;
    padding: 40px 32px 24px 32px;
    flex: 0 0 33.3333%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.2s;
    text-decoration: none;
}

.section-savings .content .item:nth-child(n+4) {
    border-top: 1px solid var(--color-vibrant-green);
}

.section-savings .content .item em {
    transition: 0.2s;
}

.section-savings .content .item p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 500;
    color: var(--color-black);
    transition: 0.2s linear;
    margin-bottom: 0;
}

.section-savings .content .item:hover {
    background-color: var(--color-blue);
}

.section-savings .content .item:hover em {
    transform: translateY(-10px);
    background-color: var(--color-white);
}

.section-savings .content .item:hover p {
    color: var(--color-white);
}

@media (max-width: 900px) {
    .section-savings .content .item {
        flex: 0 0 50%;
    }

    .section-savings .content .item:nth-child(n+3) {
        border-top: 1px solid var(--color-vibrant-green);
    }
}

@media (max-width: 670px) {
    .section-savings .content .item {
        flex: 0 0 100%;
        flex-direction: row;
        padding: 20px;
    }

    .section-savings .content .item:nth-child(n+2) {
        border-top: 1px solid var(--color-vibrant-green);
    }

    .section-savings .content .item:hover em {
        transform: translateY(0);
    }
}
