@charset "utf-8";
/* CSS Document */

/* Author: Mitch Savard
   Date: 07/27/2022
   Description: banner-news class is used to display news items in a well, with a background image. Used on NEBC Connector project page. 
   Where Used: /en/applications-hearings/view-applications-projects/nebc-connector/index.html
*/

.banner-news {
  background-size: cover; 
  padding: 4rem;
  display: flex; 
  flex-direction: row-reverse; 
  background-position: 50% 50%;	
}

.banner-news>.well {
	max-width: 42rem;
	background-color: rgb(255,255,255);
}


