[data-widget_type="numbered_list_widget.default"] .numbered-list-widget {
    padding: 0 clamp(16px, 3vw, 32px);
    position: relative;
    display: block;

    .container.container-fluid-xxl {
        max-width: 1350px;

        @media (max-width: 1023px) {
            br {
                display: none;
            }
        }
    }

    .row-item {
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: clamp(24px, 4vw, 48px) 0;

        @media (min-width: 1024px) {
            padding-left: 4.25rem;
        }

        .row-number {
            display: block;
            position: relative;
            width: 2.75rem;
            height: 2.75rem;
            min-width: 2.75rem;
            min-height: 2.75rem;
            border-radius: 50%;
            background-color: #0369A1;
            color: var(--cdl_white);
            text-align: center;
            line-height: 2.75rem;
            font-weight: 500;
            font-size: 1.375rem;
            font-family: Poppins, sans-serif;

            @media (min-width: 1024px) {
                position: absolute;
                left: 0;
                top: clamp(26px, 4.5vw, 54px);
            }
        }

        .row-title {
            padding: 0;
            margin: 0;
            font-weight: 400;
            line-height: 1.5em;
            color: #000;
            font-family: Poppins, sans-serif;
            font-size: clamp(32px, 4vw, 40px);
        }

        .row-content {
            position: relative;
            display: block;
            max-width: 40rem;

            ul {
                display: flex;
                flex-direction: column;
                position: relative;

                li {
                    display: block;
                    position: relative;
                    padding-left: 1.25rem;
                    margin-bottom: .5rem;

                    &:last-child {
                        margin-bottom: 0;
                    }

                    &::before {
                        content: '•';
                        position: absolute;
                        left: 0;
                        top: 0;
                        color: #0369A1;
                    }

                    br {
                        display: none;
                    }
                }
            }

            p , li {
                font-size: clamp(20px, 2.5vw, 24px);
                font-weight: 500;
                line-height: 1.5em;
                font-family: Poppins, sans-serif;
                color: #0369A1;

                &:first-child,
                &:only-child{
                    margin-top: 0;
                }
            }
        }
    }
}
