/*
 * Vorteils Icons
 */
.benefit-icons,
.contact-box {
    gap: 1rem;

    @media (min-width: 1330px) {
        gap: 1.5rem;
    }

    .icon-wrapper {
        display: flex;
        align-items: center;
        gap: 1rem;
        position: relative;
        margin-bottom: 20px;

        @media (min-width: 1330px) {
            gap: 1.5rem;
        }

        img {
            min-width: 60px;
            flex-shrink: 0;
            object-fit: contain;
            object-position: center;
        }

        /* ausgleichen, dass das Bild mit Spiegelung eine falsche Höhe vortäuscht */
        .title {
            line-height: 1.2;
            padding-right: 1rem;
        }

        &:not(:last-child)::after {
            content: "";
            display: block;
            position: absolute;
            width: 24rem;
            max-width: 100%;
            background-color: #d7d7d7;
            bottom: -10px;
            left: 0;
            height: 1px;
        }
    }

    &.shadowless .icon-wrapper .title {
        padding-bottom: 0;
    }

    /* Linie rechts als Trenner */
    @media (min-width: 1330px) {
        .icon-wrapper.inline {
            &::after {
                content: "";
                display: block;
                position: absolute;
                height: 55px;
                width: 1px;
                background-color: #d7d7d7;
                top: 0;
                right: 0;
                left: auto;
                max-height: 100%;
            }

            &:last-child::after {
                content: none;
            }
        }
    }
}

.contact-box {
    .icon-wrapper {
        padding-bottom: 25px;

        @media (min-width: 1330px) {
            padding-top: 5px;
            padding-bottom: 5px;
        }
    }
}
