.recent-news-wrapper {
    display: grid;
    gap: var(--wp--preset--spacing--40);
    @media(min-width: 782px) {
        grid-template-columns: repeat(3, 1fr);
    }
    .news-linked-card {
        margin-top: 0;
        position: relative;
        border: solid 2px transparent;
        border-radius: var(--wp--custom--border--radius-10);
        &::before, 
        &::after {
            font-family: 'Font Awesome 6 Pro';
            position: absolute;
            z-index: 2;
            transition: all 0.3s ease-in;
        }
        &::before {
            content: '\f312';
            font-weight: 800;
            color: var(--wp--preset--color--white);
            font-size: 31px;
            top: 1.5rem;
            right: 1.5rem;
            transition: all 0.3s ease-in-out;
        }
        &::after {
            content: '\f061';
            transform: rotate(-45deg);
            color: var(--wp--preset--color--admare-blue);
            top: 1.86rem;
            right: 1.86rem;
            
            @media(max-width: 767px) {
                top: 1.95rem;
                right: 1.95rem;
            }
            @media(min-width: 768px) and (max-width: 1024px) {
                top: 1.9rem;
                right: 1.9rem;
            }
        }
        .wp-block-heading {
            transition: all 0.3s ease-in;
        }
        &:is(:hover, :focus) {
            opacity: 1;
            border-color: var(--wp--preset--color--chartreuse);
            .wp-block-heading {
                color: var(--wp--preset--color--glacier) !important;
            }
            &::before {
                color: var(--wp--preset--color--chartreuse);
            }
        }
        
    }
    .news {
        border-radius: 10px;
        background-color: var(--wp--preset--color--admare-blue);
        color: var(--wp--preset--color--white);
        padding: var(--wp--preset--spacing--30);
        margin-top: 0;
        height: 100%;
        box-sizing: border-box;
        min-height: 335px;
        overflow: hidden;
        position: relative;
        .news-info-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 100%;
            z-index: 3;
        }
    }
    .news-linked-card .news::before {
        mix-blend-mode: multiply;
        opacity: 1;
    }
    .news-linked-card:first-of-type .news::before {
        top: 15%;
        left: 10%;
    }
    .news-linked-card:nth-of-type(2) .news::before {
        transform: none;
        bottom: -10%;
        top: unset;
        left: unset;
        right: -95px;
    }
    .news-linked-card:last-of-type .news::before {
        top: -15%;
        left: unset;
        right: -175px;
    }
}
