

    :where(.news-item) {
        position: relative;
        border: 2px solid var(--color-brand-grey);
        width: 100%;
        max-width: 35rem;
        border-radius: var(--border-radius-common);
        padding: 1rem;
        margin: 0;
        background-color: var(--local-background-color);
        :where(.news-item-content){
            margin-inline: 2rem;
            & h3{
                color: var(--local-text-color);
                margin-bottom: 0;
            }

            & p{
                color: var(--local-text-color);
                margin-top: 0;
                margin-bottom: 5rem;
            }
        }

        :where(.news-item-image){
            border-radius: calc(var(--border-radius-common) / 2);
            width: 100%;
            height: 23rem;
            overflow: hidden;

            & img{
                object-fit: cover;
                width: 100%;
                height: 100%;
                object-position: center center;
                display: block;
            }
        }

        :where(.news-link){
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            height: 3.5rem;
            width: 3.5rem;
            border-radius: 50%;
            background-color: var(--color-brand-sky-blue);
            display: flex;
            justify-content: center;
            align-items: center;
            & svg{
                height: 1rem;
                width: 2rem;
                fill: var(--color-primary-white);
            }
            transition: all .2s ease-in-out;
            &:hover{
                transform: scale(1.1);
                background-color: var(--color-brand-corporate-blue);
            }

        }
    }

