/*
Welcome to Custom CSS!

CSS (Cascading Style Sheets) is a kind of code that tells the browser how
to render a web page. You may delete these comments and get started with
your customizations.

By default, your stylesheet will be loaded after the theme stylesheets,
which means that your rules can take precedence and override the theme CSS
rules. Just write here what you want to change, you don't need to copy all
your theme's stylesheet content.
*/
/* Shadow for images - JHH */
.shadow {
	-webkit-box-shadow: 5px 5px 5px 0 rgba(136,136,136,0.67);
	-moz-box-shadow: 5px 5px 5px 0 rgba(136,136,136,0.67);
	box-shadow: 5px 5px 5px 0 rgba(136,136,136,0.67);
}

.wsu-color-background--gray-85 a {
	color: #FFFFFF;
	text-decoration-color: white;
}

.rcorners {
	border-radius: 25px 0 25px 0;
	border: 2px solid #d7dadb;
	padding: 1rem;
	padding-top: 2rem;
	width: auto;
	height: auto;
	margin-bottom: 2rem;
}

h3.gform_title {
	display: none;
}

/*=======================
 * 
 * Individual Profile
 * 
 * ========================*/
.wsu-people-list__view-profile {
	font-size: .75rem;
	font-weight: 500;
	font-style: normal;
	margin: .4rem 0 .4rem 1.5rem;
	position: relative;
}

.wsu-people-list__view-profile::before {
	content: "\F13C";
	font-family: wsu-icons;
	color: inherit;
	font-size: 1.2em;
	display: inline-block;
	vertical-align: middle;
	margin-right: .2em;
	position: absolute;
	right: calc(100% + 0.2rem);
	top: -.1rem;
}

.wsuwp-person-profile span.website {
	display: none;
}

a.wsu-button--style-arrow {
	font-size: small;
}

.wsu-people-list__view-profile a.wsu-button--style-arrow {
	font-size: .75rem;
}

@media (min-width: 668px) {
	.wsuwp-people-wrapper {
		display: block;
	}
	
	.card.wsuwp-person-profile {
		display: flex;
	}
}

.wsu-image-frame img {
	object-fit: contain;
}

p {
	max-width: 1200px;
}

.divTable {
	display: table;
	width: 100%;
}

.divTableRow {
	display: table-row;
}

.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
}

.divTableCell, .divTableHead {
	border: 1px solid #999999;
	display: table-cell;
	padding: 3px 10px;
}

.divTableHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}

.divTableFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}

.divTableBody {
	display: table-row-group;
}

.wsu-news-list a {
	font-weight: normal;
}

.announcement {
	display: inline-block;
	height: 100%;
	text-align: center;
	width: 100%;
	background: #002D61;
	color: white;
	font-family: Arial, sans;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}

.announcement a {
	color: #ccc;
}

.announcement a:hover {
	color: red;
}

.thleft th {
	text-align: left;
}

.hoverop a:hover {
	opacity: .5;
}

.touchofgrey {
	background-color: #333333;
}

/*=======================
 * 
 * Extras from JHH for test formatting from other sites
 * 
 * ========================*/
.wsu-custom-about--cards .wsu-title {
	background-color: #4D4D4D;
	padding: 1em;
	text-align: center;
	color: #fff;
}

.ulcenter {
	text-align: center;
	list-style: inside;
}

.smaller-font {
	font-size: .6rem;
}

.tablefitcontent {
	width: auto !important;
}

/* Grid layout for the three cards */
.as-card-grid {
	display: grid;
	grid-template-columns: repeat(3,minmax(0,1fr));
	column-gap: 20px;
}

@media (max-width: 900px) {
	.as-card-grid {
		grid-template-columns: 1fr;
	}
}

/* Card link (entire card is clickable) */
.as-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 2px solid #e5e5e5;
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.as-card:hover,
.as-card:focus {
	border-color: #981e32;
/* WSU Crimson */
	box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.as-card:focus-visible {
	outline: 3px solid #981e32;
	outline-offset: 2px;
}

/* Image sizing */
.as-card__img {
	width: 100%;
/* keeps equal heights */
	object-fit: cover;
	display: block;
}

/* Body and text */
.as-card__body {
	padding: 16px 18px 18px;
}

.as-card__title {
	margin: 0 0 6px;
	font-size: 1.15rem;
	font-weight: 700;
}

.as-card__text {
	margin: 0;
	color: #333;
	line-height: 1.45;
}