/* =========================
START INFO BOX
========================= */

.newsInfoBox{

position:absolute;

left:0;

bottom:0;



width:255px;

height:100px;



background:

rgba(255,0,0,.95);



backdrop-filter:

blur(12px);



-webkit-backdrop-filter:

blur(12px);



clip-path:

polygon(

0 0,
92% 0,
100% 100%,
0 100%

);



z-index:100;

}




.newsInfoBox::after{

content:"";



position:absolute;

top:0;
left:0;



width:100%;
height:100%;



clip-path:

polygon(

92% 0,
100% 0,
100% 100%,
96% 100%

);



background:

rgba(255,255,255,.55);



filter:

blur(8px);



z-index:-1;

}




.newsLocation{

height:50px;



color:white;



font-size:28px;

font-weight:900;



text-shadow:

2px 2px 4px rgba(180,180,180,.85);



display:flex;

align-items:center;

justify-content:center;

}




.newsReporter{

height:50px;



color:white;



font-size:18px;

font-weight:bold;



display:flex;

align-items:center;

justify-content:center;

}

/* =========================
END INFO BOX
========================= */