  /* css for auto-rotating RD stories on research homepage */

/* do not display these elements (they need to remain part of the story include file, but not displayed here) */
.cms-note,
.hide-on-rd,
.research-home-story,
tr.archive-story,
.rd-home-story .story-meta
 {
	display: none !important;
}
section#section1 {
	padding-top: 6rem !important;
	padding-bottom: 6rem !important;
	margin-bottom: 3rem !important;
}
.page-wide main .content section#section1 .section {
	max-width: 1440px;
	padding: 0 2rem;
}
.rd-news {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 5rem;
	row-gap: 7rem;
}
.rd-news .news {
	display: grid;
	grid-template-rows: 250px auto auto 1fr;
	row-gap: 1rem;

}
.rd-home-story .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.rd-home-story .news-title,
.rd-home-story .story-title,
.rd-home-story .story-title a {
	font-family: var(--dark-font);
	font-size: 27px;
	line-height: 1.2;
	margin: 1rem 0;
}
.rd-home-story .story-title a {
	color: #036  !important;
}
.rd-home-story .fau-button {
	font-family: inherit;
	font-size: 16px;
	font-weight: normal;
	border: none; /*reset the border */
	border-bottom: 1px solid;
	line-height: 1.2;
	text-decoration: none;
	text-transform: lowercase; /* reset the all caps */
	text-transform: capitalize;
	padding: 0;
	
}
.rd-home-story .fau-button {
	background-color: #fff !important;
	color: #036 !important;
}
@media screen and (max-width: 991px) {
	.rd-news {
		grid-template-columns: repeat(2, 1fr);
	}
	.rd-news .news {
		grid-template-rows: 400px auto auto 1fr;
		row-gap: 1rem;
	}
}
@media screen and (max-width:640px) {
	.rd-news {
		grid-template-columns: 1fr;
	}
	.rd-news .news {
		grid-template-rows: minmax(auto, 550px) auto;
	}
}