.grid {
	margin-top: 25px;
	margin-bottom: 25px;
}

.grid-item {
	opacity: 0;
	-webkit-transition: all 400ms ease;
	-moz-transition: all 400ms ease;
	-o-transition: all 400ms ease;
	transition: all 400ms ease;
}

.grid-item:focus {
	outline: none;
}

.grid-item.show {
	opacity: 1;
}

.grid-content {
	position: relative;
}

.grid-image-container {
	min-height: 100px;
	width: 100%;
	padding-bottom: 13px;
}
/* STC-6181: set the width to 100% */
.grid-image-container img {
	line-height: 2;  
	text-align: center;
	width: 100%;
	max-width: 100%;
	margin: auto;
	min-height: 100px;
	display: block;
	position: relative;
	object-fit: cover;
}

.grid-image-container img:before { 
	content: " ";
	display: block;
	position: absolute;
	left: 0;
	height: calc(100%);
	width: 100%;
	background-color: rgb(230, 230, 230);
}

.grid-image-container img:after { 
	content: "Image Unavailable";
	display: block;
	color: rgb(165, 158, 158);
	width: 100%;
	font-style: italic;
	font-size: 30px;
	/** align vertically **/
	margin: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.no-image-div {
	border-left: solid 5px #F2F2F3;
	padding-left: 13px;
}

.grid-info {
	position: relative;
}
/* STC-6181: updated radius and increased font size  */
.grid-info-token {
	float: right;
	background: #F2F2F3;
	border-radius: 8px;
    font-size: 14px;
	line-height: 13px;
	padding: 8px;
	text-transform: uppercase;
}

/* STC-6170: [Object Grid & Carousel Objects] Update font size and style */
/* STC-6181: set font style */
.grid-info-name {
	font-weight: 700;	
	word-break: break-word;
	font-size: 20px;
	font-family: "Brut Bold";
}

/* STC-6147: Set the font size of title */
/* STC-6170: [Object Grid & Carousel Objects] Update font size and style */
/* STC-6181: set font style, remove duplicate font-weight & style */
.grid-info-title {
	font-size: 20px;
	font-family: "Brut Bold Italic";
	
	/* STC-6330: Fix the issue where italicized texts not displayed correctly in Safari */
	font-style: italic;
}

/* STC-6114 & 6115: Set the styles for carousels in 'Art & ideas' block */
.grid-info-page-type {
	font-size: 16px;
	font-family: "Brut Bold";
}

.art-and-ideas-container .grid-info-name {
	font-size: 22px;
	font-family: "Brut Bold";
}

/* Remove styles from API data */
.art-and-ideas-container .grid-info-title {
	all: unset;
}

.art-and-ideas-container .grid-info-title * {
	font-size: 18px;
	font-family: "Brut Regular";
}

/* STC-6147 & 6148: Change CSS styling for date */
/* STC-6170: [Object Grid & Carousel Objects] Update font size */
/* STC-6181: set font style, remove duplicate font-weight & style */
.grid-info-date, .grid-info-title3 {
	font-size: 20px;
	color: #000000;
	font-family: "Brut Regular";
}
/* STC-6186: replaced text-align: center with display & justify-content  */
/* Rename as VIEW MORE container*/
.grid .view-more-container {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 200px;
	margin: 0px auto;
	display: flex;
	justify-content: space-around;
	line-height: 18px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}

/* VIEW MORE button (in the middle of grid block) */
/* Move over from app.css - Change load-more-btn > view-more-btn */
/* STC-6245: Reset "VIEW MORE" button (at bottom in the middle of Grid section) */
.view-more-btn {
	cursor: pointer;
	font-family: "Brut Regular";
	font-size: 1.6rem;
 	font-weight: normal;
	text-transform: uppercase;
	position: absolute;
    bottom: -50px;
}