/*
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.
*/
/* adjust vertical gradient - screen on cards */
.wsu-card--style-framed .wsu-image-frame:before {
	background: linear-gradient(to bottom,rgba(0,0,0,0) 0,rgba(0,0,0,.5) 70%,rgba(0,0,0,.9) 100%);
}

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

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

/* 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;
}

/* homepage buttons */
.homepage-buttons .wsu-button {
	border-radius: 0;
	border-left: 1px solid transparent;
	border-right: 1px solid #4D4D4D;
}

.homepage-buttons-section {
	background-color: transparent;
	margin-top: -5rem !important;
}

.homepage-buttons-section hr.wp-block-separator {
	margin-top: -2.3rem;
}

/* homepage headers */
.homepage-header {
	background: #fff;
	font-size: 3rem;
}

/* homepage subhead */
.homepage-subheader {
	background: #fff;
	font-size: 1.4rem;
}

/* homepage big cards */
.wsu-card--style-framed .wsu-image-frame:before {
	padding-top: 0 !important;
}

.wsu-card-wrapper {
	justify-content: center;
}

/* homepage contact section  */
.homepage-contact-section {
	margin-top: -3.2rem;
}

/* accordion icons */
.wsu-accordion__title::before {
	content: "\F103";
}

.wsu-accordion.wsu-accordion--open .wsu-accordion__title::before {
	content: "\F109";
}