.ce-notfallnummern {

    >span {
        margin-bottom: 2rem;
        display: block;
    }

    .ce-notfallnummern__items {
        display: flex;
        flex-direction: column;
        gap: 1rem;

        @media screen and (min-width: 768px) {
            gap: 2rem;
        }

        .ce-notfallnummern__item {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            align-items: flex-start;

            @media (min-width: 768px) {
                flex-direction: row;
                align-items: center;
            }

            .title {
                font-size: 1rem;
                width: 28ch;
                font-weight: normal;
            }

            .btn-big {
                font-weight: bold;
                position: relative;
                padding-inline: 3.5rem 2.5rem;
                margin-bottom: 0;

                &:before {
                    content: '';
                    position: absolute;
                    left: 1.5rem;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 1.5rem;
                    height: 1.5rem;
                    background-image: url('/typo3conf/ext/km_template/Resources/Public/Images/phone-solid-full-white.svg');
                    background-size: contain;
                    background-repeat: no-repeat;
                }
            }

        }
    }
}