aside {
    section#rosita_asaid_nineTeen {
        & .ros_continer {
            & .box:nth-child(1) {
                & * {
                    color: #fff;
                }
            }
        }
    }
}

section#rosita_asaid_nineTeen {

    & * {
        font-family: "Inria Sans";
    }


    & .ros_continer {
        display: flex;
        gap: 1rem;
        flex-direction: column;

        & .box:nth-child(1) {
            height: 10rem;
            border-radius: 8px;
            overflow: hidden;
            position: relative;

            & .info {
                position: absolute;
                bottom: 0;
                background: linear-gradient(to top, black, transparent);
                padding: 1rem;
                display: flex;
                flex-direction: column;
                gap: 8px;

                p {
                    font-size: 13px;
                }
            }
        }

        & .box:nth-child(2),
        & .box:nth-child(3) {
            height: 6rem;
            overflow: hidden;
            display: flex;
            gap: 1rem;

            & img {
                border-radius: 8px;
                min-width: 40%;
                width: 40%;
            }

            & h3 {}

            & .info {
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 1rem;

                & h3 {
                    font-size: 15px;
                }

                p {
                    font-size: 13px;
                }
            }
        }
    }
}