section.news {
    div.hero-background {
        height: 45vh;
        width: 100dvw;
        background-position: center center !important;
    }

    h2.no-news {
        text-align: center;
        font-family: 'Roboto', sans-serif;
    }

    section.general-event-info {
        padding: 8rem 2rem;
        max-width: 98rem;
        margin: 0 auto;
        position: relative;

        p:first-child {
            margin: 0;
        }

        h1 {
            text-align: start;
        }

        h1::after {
            left: 0;
            margin-left: 0;
        }

        p {
            margin-bottom: 3rem;
        }

        .whatsapp {
            display: flex;
            gap: 1rem;
            align-items: center;
            svg {
                max-width: 36px;
            }
        }
    }

    section.ul-wrapper {
        background-image: url(https://davinci.edu.ar/images/layout/backgrounds/module-background-gray-big.png);
        background-color: #f3f3f3;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        padding: 8rem 2rem;
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
        display: flex;
        flex-direction: column;
        align-items: center;

        .pink-button {
            padding: 1rem 2.2em;
            font-size: 1.4rem;
            line-height: 2;
        }

        ul {
            max-width: 122rem;
            margin: 0 auto;
            margin-bottom: 6rem;
            padding: 0 2rem;

            li {
                box-shadow: 0 14px 28px 0 rgba(0, 0, 0, .1);
                background-color: #fff;
                transition: all .1s ease-out;
                margin-bottom: 2rem;
                border-radius: 18px;
                display: flex;

                a {
                    display: flex;
                    width: 100%;

                    aside {
                        position: relative;
                        flex: 1 1 50%;
                        overflow: hidden;
                        margin: 0;

                        span {
                            font-size: 1.8rem;
                            font-family: "Montserrat", sans-serif;
                            padding: .6rem .8rem;
                            margin: 1rem;
                            background-color: #fff;
                            position: absolute;
                            top: 0;
                            left: 0;
                            color: #000;
                            line-height: 1.2rem;
                            font-weight: 800;
                            text-transform: uppercase;
                        }

                        img {
                            width: 100%;
                            height: 100%;
                            object-fit: cover;
                            border-top-left-radius: 18px;
                            border-bottom-left-radius: 18px;
                        }

                        p:nth-child(2) {
                            font-family: "Montserrat", sans-serif;
                            padding: .6rem .8rem;
                            margin: 1rem;
                            background-color: #fff;
                            position: absolute;
                            top: 0;
                            left: 0;
                            font-weight: 700;
                            line-height: 1.2rem;
                            color: #000;
                        }
                    }

                    article {
                        padding: 3.5rem 4rem;
                        flex: 1 1 50%;

                        h2 {
                            font-size: 2.6rem;
                            font-family: "Montserrat", sans-serif;
                            font-weight: 800;
                            margin-bottom: 1rem;
                            color: #000;
                        }

                        p:first-of-type {
                            color: #000;
                            font-weight: 700;
                            margin-bottom: 2rem;
                        }

                        p:nth-child(3) {
                            margin: 0;
                        }

                        p {
                            line-height: 1.2em;
                            font-size: 1.6rem;
                            color: #4a5565;
                        }

                        button {
                            margin-top: 2rem;
                            margin-bottom: 0;
                            font-size: 1.4rem;
                            padding: 1rem 2.2em;
                            display: inline-block;
                            border-radius: 3rem;
                            background-color: #db0f80;
                            border: 2px solid #db0f80;
                            font-weight: 700;
                            color: #fff;
                            line-height: 1.15;
                            font-family: "Roboto", sans-serif;
                        }

                        button:hover {
                            background-color: transparent;
                            color: #db0f80;
                        }
                    }
                }
            }
        }

        li:hover {
            box-shadow: 0 5px 36px 0 rgba(0, 0, 0, .3);
            transform: scale(1.04);
            cursor: pointer;
        }
    }

        section.module-paginator {
        margin: 0 auto;
        display: flex;
        ul {
            display: flex;
            text-align: center;
            justify-content: center;
            margin-bottom: 3rem;

            li {
                border-radius: 50%;
                border: .5px solid #929d9e;
                list-style: none;
                line-height: 4.4rem;
                width: 4.4rem;
                height: 4.4rem;
                text-align: center;
                vertical-align: middle;
                font-weight: 700;
                margin: 0 .5rem;
                box-shadow: none;
                background-color: transparent;
                font-family: "Montserrat", sans-serif;
                font-weight: 800;
                font-size: 1.4rem;

                &:hover {
                    box-shadow: none;
                    transform: none;
                }
                a {
                    color: #000;
                    display: inline-block;
                    width: 100%;
                    height: 100%;
                }
            }

            li.active {
                background-color: #0e95f8;
                color: #fff;
                display: flex;
                justify-content: center;
            }

            li.hide {
                display: none;
            }
        }
    }

    .actual-events {
        display: flex;
        justify-content: center;
        a {
            display: block;
        }
    }
}

@media screen and (max-width: 991px) {
    section.news {
        section.ul-wrapper {
            ul {
                padding: 0;

                li {
                    a {
                        flex-direction: column;
                    }

                    aside {
                            img {
                                border-top-right-radius: 18px;
                                border-bottom-left-radius: 0;
                        }
                    }
                }
            }
        }
    }
}

@media screen and (max-width: 767px) {
    section.news {
        div.hero-background {
            height: 250px;
        }

        section {
            padding: 6rem 2rem;
        }
    }
}