/**
 * File: leistungen-style.css
 * Created At: 27.06.25 | 10:20
 * Author: niklasmeyer
 * Description: [Kurze Beschreibung der Datei]
 * Version: [Version]
 * Last Updated: [Datum]
 * Project: goit.dev
 */

#leistungen {
    &.leistungen-wrapper {
        ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 40px;

            li {
                display: flex;
                gap: 40px;

                @media screen and (max-width: 768px) {
                    flex-direction: column;
                    gap: 24px;
                }

                .content-wrapper {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;

                }
            }
        }
    }
}