.generic-three-column-with-images {
    margin-inline: 2.5px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 50px;
}

.generic-three-column-with-images__content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.generic-three-column-with-images__col {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    justify-content: center;
}

.generic-three-column-with-images__col img {
    height: 60px;
    width: auto;
}

.generic-three-column-with-images__title {
    color: #2E2D31;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.69px;
    margin: 0 0 5px;
    max-width: 165px;
}

.generic-three-column-with-images__text {
    color: #2E2D31;
    text-align: center;
    font-family: "Nunito Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
    padding: 20px 0;
    position: relative;
}

.generic-three-column-with-images__text::before,
.generic-three-column-with-images__text::after {
    content: "";
    stroke-width: 2px;
    stroke: rgba(142, 139, 151, 0.00);
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;

    background: linear-gradient(to right,
        rgba(142, 139, 151, 0) 0%,
        rgba(142, 139, 151, 1) 25%,
        rgba(46, 45, 49, 1) 50%,
        rgba(120, 117, 128, 1) 75%,
        rgba(120, 117, 128, 0) 100%
    );
}

.generic-three-column-with-images__text::before {
    top: 0;
}

.generic-three-column-with-images__text::after {
    bottom: 0;
}

.generic-three-column-with-images__button {
    display: flex;
    padding: 16px 32px;
    background: #2E2D31;
    align-items: center;
    justify-content: center;
}

.generic-three-column-with-images__button a {
    color: #FFF;
    text-align: right;
    font-family: "Nunito Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 150% */
}

@media (min-width: 1200px) {
    .generic-three-column-with-images {
        margin-inline: auto;
        gap: 95px;
        margin-bottom: 150px;
        max-width: 1094px;
    }

    .generic-three-column-with-images__content {
        flex-direction: row;
        gap: 40px;
    }

    .generic-three-column-with-images__button {
        padding: 16px 57.5px;
        width: fit-content;
        margin-inline: auto;
    }
}
