/*
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.
*/
/* Identifies old buttons */
.logged-in .wp-block-buttons .wp-block-button__link {
	background-color: rebeccapurple;
}

/* border-left for blockquote */
blockquote.wp-block-quote {
	border-left: .25em solid #000;
	padding-left: 1em;
}

/* homepage first paragraph */
.homepage-p p {
	padding: 0 3rem;
	font-size: 1.25rem;
}

/*make text crimson */
.crimson {
	color: #A60F2D;
}

/*make text gray */
.gray {
	color: #808080;
}

/* link icon after linked headers */
h1 a::after, h2 a::after, h3 a::after, h4 a::after, h5 a::after, h6 a::after {
	content: '\F126';
	font-family: wsu-icons;
	font-size: .875rem;
	color: #ca1237;
	margin-left: .6875rem;
	display: inline-block;
	text-decoration: none;
}

/* footer menu */
.wsu-footer-site__widgets .widget_text.wsu-widget h2 {
	font-size: .75rem;
	text-transform: uppercase;
	font-weight: 600;
}

.transcript {
	text-align: right;
	font-size: .75rem;
	text-transform: uppercase;
}

.hidden {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

/* summer session off-season note */
.summer-offseason {
	background-color: #4D4D4D;
	margin: 0 3rem 2rem;
	padding: 2rem 2rem .5rem;
	text-align: center;
	color: #fff;
}

/* add border to screenshots with class on page */
.screenshot-border img {
	margin: 20px 20px 20px 0;
	padding: 20px;
	border: solid 1px #e5e5e5;
}

/* bottom border for image on Tuition and Fees web page */
.wp-image-2036 {
	border-bottom: 8px solid #A6A6A6;
}

/* center buttons in column */
.button-column {
	text-align: center;
}

/* ------------------------ flex  for top accordion ---------------------------------  */
/* flex bottom align */
.flex-to-bottom {
	align-self: flex-end;
}

/* flex for two column layout */
.flextwocol {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.flextwocol-half {
	width: 48%;
	text-align: center;
}

/* flex for two column layout in top accordion -- doesn't wrap on mobile */
.flextwocol-nowrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

.flextwocol-nowrap-half {
	width: 50%;
}

/* Small screens */
@media all and (max-width: 500px) {
	.flextwocol {
	/* On small screens, we are no longer using row direction but column */
		flex-direction: column;
	}
	
	.flextwocol-half {
		width: 100%;
		text-align: center;
	}
	
	/* smaller font size so it fits on phone */
	.flextwocol-nowrap p {
		font-size: .86rem;
	}
}

/* ----------- news feed on homepage --------------- */
.homefeed ul {
	list-style-type: none;
	padding: 0 1rem 0 0;
}

.news .wsuwp-content-syndicate-item {
	display: grid;
	grid-auto-flow: row;
	grid-template-columns: 166px auto;
	margin-bottom: 1rem;
}

.news .content-item-thumbnail {
	grid-column: 1;
	grid-row: 1 / 4;
	margin-right: 1rem;
}

.news .content-item-title {
	font-size: 1.2rem;
	line-height: 1.4rem;
	grid-column: 2;
}

.content-item-title {
	display: block;
	padding: 0;
	margin-bottom: .5rem;
}

.content-item-byline {
	color: #666666;
	font-style: italic;
}

.content-item-byline {
	display: none;
}

.news .content-item-excerpt {
	grid-column: 2;
}

.news a.content-item-read-story {
	DISPLAY: none;
}

@media screen and (max-width: 768px) {
	.news .wsuwp-content-syndicate-item {
		display: block;
	}
	
	.content-item-thumbnail img {
		margin-bottom: 1rem;
	}
}

/* ---------------------- tablepress ------------------------ */
table#tablepress-41, table#tablepress-41-no-2 {
	width: 100%;
}

table#tablepress-41 td.column-2, table#tablepress-41-no-2 td.column-2 {
	width: 30%;
}