/*******************************************************************************
 * WSU TEACHING                        ▒▓▒▒▓▒▒▓▒▒▓▒▒▓▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒║
 * ▄▀▀▄ ▄▀▀▀ ▄▀▀▄ █▀▀▄ █▀▀▀ ▐▀▄▀▌█  █  ▓▒▒▓▒▒▓▒▒▓▒▒▓▒▒▓▓▓▒▒▒▒▓▓▒▓▓▓▓▓▓▒▓▓▒▒▒▓▓▒║
 * █▄▄█ █    █▄▄█ █  █ █▀▀  █ ▀ ▌▀▄▄█  ▒▒▓▒▒▓▒▒▓▒▒▓▒▒▓▒▓▓▒▒▒▒▓▓▒▓▓▒▒▒▒▒▓▓▒▒▒▓▓▒║
 * █  ▀  ▀▀▀ █  ▀ ▀▀▀  ▀▀▀▀ █   ▀▄▄▄▀  ▒▓▒▒▓▒▒▓▒▒▓▒▒▓▒▒▓▓▒▓▓▒▓▓▒▓▓▓▓▓▓▒▓▓▒▒▒▓▓▒║
 * ║ WSUWP CSS Stylsheet Editor Source Code ▒▓▒▒▓▒▒▓▒▒▓▓▓▒▓▓▒▓▓▒▒▒▒▒▓▓▒▓▓▒▒▒▓▓▒║
 * ║ Last Updated: 20241014164816           ▓▒▒▓▒▒▓▒▒▓▒▒▓▓▒▒▓▓▒▒▓▓▓▓▓▓▒▒▓▓▓▓▓▒▒║
 * ╚═══════════════════════════════════════════════════════════════════════════╝
 * The following section of this stylesheet contains CSS code written directly
 *  and/or built from Less modules written for use on the WSU Teaching Academy
 *  website to customize the layout and presentation of WDS elements, compo-
 *  nents, modules, and assemblies. This stylesheet is designed, built, and
 *  maintained by the Division of Academic Engagement and Student Achievement
 *  (DAESA) in the Office of the Provost at Washington State University (WSU).
 *
 * Specifically, the CSS code in the following section was either directly
 *  written or generated from precompiled CSS written in the Less language
 *  extension of CSS. All code is designed to be applied via the WSUWP CSS
 *  Stylesheet Editor functioning in add-on mode. It was prepared for use with
 *  Web Design System themes.
 *
 * @link https://github.com/invokeImmediately/teachingacademy.wsu.edu/blob/main/
 *  CSS/wsuwp-wds_css-ss-ed-src.css
 * @link https://github.com/invokeImmediately/WSU-DAESA-CSS-WDS
 * @link https://github.com/wsuwebteam/wsuwp-theme-wds
 *
 * @author Daniel Rieck
 *  [daniel.rieck@wsu.edu]
 *  (https://github.com/invokeImmediately)
 *
 * @license MIT Copyright (c) 2024 Washington State University
 *   Permission is hereby granted, free of charge, to any person obtaining a
 *    copy of this software and associated documentation files
 *    (the "Software"), to deal in the Software without restriction, including
 *    without limitation the rights to use, copy, modify, merge, publish,
 *    distribute, sublicense, and/or sell copies of the Software, and to permit
 *    persons to whom the Software is furnished to do so, subject to the
 *    following conditions:
 *   The above copyright notice and this permission notice shall be included in
 *    all copies or substantial portions of the Software.
 *   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 *    IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 *    FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
 *    THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 *    LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 *    FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 *    DEALINGS IN THE SOFTWARE.
 ******************************************************************************/
/** Atomic CSS: Responsive Design => FIX
 *  ==========  -----------------
 *  Correct issues with small desktop breakpoints.
 *  (Author: daniel.rieck@wsu.edu)
 */
@media screen and (min-width:1260px) {
	.wsu-breakpoint-hide-above--small-desktop {
		display: none !important;
	}
}

@media screen and (max-width:1260px) {
	.wsu-breakpoint-hide-below--small-desktop {
		display: none !important;
	}
}

/** TablePress: Membership Directory Columns => FIX
 *  ==========  ----------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.tablepress-id-3,
.tablepress-id-3 ol,
.tablepress-id-3 ul {
	font-size: .925rem;
}

.tablepress-id-3 .column-4 {
	width: 267px;
}

.tablepress-id-3 .column-5 {
	width: 223px;
}

/** Headings: Add Anchor Indicators => ENHANCEMENT
 *  ========  ---------------------
 *  Add a hash mark symbol for visually indicating an anchor location within a web page.
 *  (Author: daniel.rieck@wsu.edu)
 */
h1:target,
h2:target,
h3:target,
h4:target,
h5:target,
h6:target {
	position: relative;
}

h1:target:not(.wsu-heading--mark-top):before,
h1.wsu-heading--mark-top:target:after,
h2:target:not(.wsu-heading--mark-top):before,
h2.wsu-heading--mark-top:target:after,
h3:target:not(.wsu-heading--mark-top):before,
h3.wsu-heading--mark-top:target:after,
h4:target:not(.wsu-heading--mark-top):before,
h4.wsu-heading--mark-top:target:after,
h5:target:not(.wsu-heading--mark-top):before,
h5.wsu-heading--mark-top:target:after,
h6:target:not(.wsu-heading--mark-top):before,
h6.wsu-heading--mark-top:target:after {
	content: "# –";
	color: #767676;
	display: block;
	font-size: 1.25rem;
	font-weight: 600;
	left: -2.2rem;
	position: absolute;
	top: .5rem;
	width: auto;
}

h1.wsu-heading--mark-top:target:after,
h2.wsu-heading--mark-top:target:after,
h3.wsu-heading--mark-top:target:after,
h4.wsu-heading--mark-top:target:after,
h5.wsu-heading--mark-top:target:after,
h6.wsu-heading--mark-top:target:after {
	top: .75rem;
	transform: none;
}

h1.wsu-heading--style-marked:target:not(.wsu-heading--mark-top):before,
h1.wsu-heading--style-marked.wsu-heading--mark-top:target:after,
h2.wsu-heading--style-marked:target:not(.wsu-heading--mark-top):before,
h2.wsu-heading--style-marked.wsu-heading--mark-top:target:after,
h3.wsu-heading--style-marked:target:not(.wsu-heading--mark-top):before,
h3.wsu-heading--style-marked.wsu-heading--mark-top:target:after,
h4.wsu-heading--style-marked:target:not(.wsu-heading--mark-top):before,
h4.wsu-heading--style-marked.wsu-heading--mark-top:target:after,
h5.wsu-heading--style-marked:target:not(.wsu-heading--mark-top):before,
h5.wsu-heading--style-marked.wsu-heading--mark-top:target:after,
h6.wsu-heading--style-marked:target:not(.wsu-heading--mark-top):before,
h6.wsu-heading--style-marked.wsu-heading--mark-top:target:after {
	border: 0;
	margin-left: 0;
}

/** Headings: Headings with offset marks => ENHANCEMENT
 *  ========  --------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wsu-heading--style-marked.wsu-heading--offset-mark::after, .wsu-heading--style-marked.wsu-heading--offset-mark::before {
	border-right: 0;
	border-left: 6px solid transparent;
	border-top: 0;
	border-bottom: 6px solid #a60f2d;
	margin-left: 50px;
}

.wsu-heading--offset-mark.wsu-heading--mark-color-crimson-light::after,
.wsu-heading--offset-mark.wsu-heading--mark-color-crimson-light::before {
	border-bottom-color: #ca1237;
}

.wsu-heading--offset-mark.wsu-heading--mark-color-gray::after,
.wsu-heading--offset-mark.wsu-heading--mark-color-gray::before {
	border-bottom-color: #b3b3b3;
}

.wsu-heading--offset-mark.wsu-heading--mark-color-autumn::after,
.wsu-heading--offset-mark.wsu-heading--mark-color-autumn::before {
	border-bottom-color: #ff6727;
}

.wsu-heading--offset-mark.wsu-heading--mark-color-goldfinch::after,
.wsu-heading--offset-mark.wsu-heading--mark-color-goldfinch::before {
	border-bottom-color: #f3e700;
}

.wsu-heading--offset-mark.wsu-heading--mark-color-vineyard::after,
.wsu-heading--offset-mark.wsu-heading--mark-color-vineyard::before {
	border-bottom-color: #aadc24;
}

.wsu-heading--offset-mark.wsu-heading--mark-color-pacificsky::after,
.wsu-heading--offset-mark.wsu-heading--mark-color-pacificsky::before {
	border-bottom-color: #5bc3f5;
}

.wsu-heading--offset-mark.wsu-heading--mark-color-midnight::after,
.wsu-heading--offset-mark.wsu-heading--mark-color-midnight::before {
	border-bottom-color: #002d61;
}

/** WP Block Tables: TEACHxWSU Schedule => CUSTOMIZATION
 *  ===============  ------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wp-block-table--teachxwsu-schedule table {
	font-size: .875rem !important;
}

.wp-block-table--teachxwsu-schedule tr:first-child td:first-child {
	background-image: repeating-linear-gradient(135deg,#999,#999 2px,transparent 2px,transparent 10px);
	background-repeat: no-repeat;
}

.wp-block-table--teachxwsu-schedule td:empty {
	background-image: repeating-linear-gradient(135deg,#f2f2f2,#f2f2f2 2px,transparent 2px,transparent 10px);
	background-repeat: no-repeat;
}

.wp-block-table--teachxwsu-schedule tr:first-child td:first-child {
	background-image: repeating-linear-gradient(135deg,#999,#999 2px,transparent 2px,transparent 10px);
	background-repeat: no-repeat;
}

/** Card Blocks: TEACHxWSU Keynote Address and Sessions => CUSTOMIZATION
 *  ===========  --------------------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wsu-card--teachxwsu-keynote a .wsu-icon, .wsu-card--teachxwsu-session a .wsu-icon {
	color: #ff6727;
	display: inline;
	margin-right: 0;
}

.wsu-card--teachxwsu-keynote a .wsu-icon:before, .wsu-card--teachxwsu-session a .wsu-icon:before {
	display: inline-block;
	font-size: .85em;
	margin-right: .125rem;
}

.wsu-card--teachxwsu-keynote a.presenter-info:not(:hover):not(:focus), .wsu-card--teachxwsu-session a.presenter-info:not(:hover):not(:focus) {
	text-decoration-color: #ff6727;
}

.wsu-card--teachxwsu-keynote .wsu-image-frame {
	background: linear-gradient(to top,white,transparent 4rem,transparent), repeating-linear-gradient(135deg,#ca1237,#ca1237 2px,transparent 2px,transparent 10px);
}

.wsu-card--teachxwsu-session .wsu-image-frame {
	background: linear-gradient(to top,white,transparent 4rem,transparent), repeating-linear-gradient(135deg,#b3b3b3,#b3b3b3 2px,transparent 2px,transparent 10px);
}

.wsu-card--teachxwsu-session.wsu-border-top--color-default {
	border-top: 4px solid #b3b3b3;
}

.wsu-card--teachxwsu-presenter .wsu-cta {
	margin-bottom: 0;
}

.wsu-card--teachxwsu-presenter .wsu-cta .wsu-button {
	padding: .5rem 1rem;
}

.wsu-card.wsu-card--teachxwsu-presenter .wsu-card__content {
	padding-bottom: 0;
}

.wsu-card.wsu-card--teachxwsu-presenter .wsu-image-frame, .wsu-card.wsu-card--teachxwsu-presenter .wsu-card__content {
	padding-top: 0;
}

@media screen and (min-width: 768px) {
	.wsu-card--teachxwsu-keynote .wsu-image-frame img, .wsu-card--teachxwsu-session .wsu-image-frame img {
		margin-bottom: 2.25rem;
	}
	
	.wsu-card--teachxwsu-keynote, .wsu-card--teachxwsu-session {
		margin-left: auto;
		margin-right: auto;
		width: calc(100% - 2rem);
	}
	
	.wsu-card--teachxwsu-keynote.wsu-card .wsu-card__content, .wsu-card--teachxwsu-session.wsu-card .wsu-card__content {
		padding-bottom: 2rem;
		padding-left: 1.5rem;
		padding-right: 2rem;
	}
	
	.wsu-card--teachxwsu-keynote.wsu-card .wsu-card__content, .wsu-card--teachxwsu-session.wsu-card .wsu-card__content {
		padding-bottom: 2rem;
		padding-left: 2rem;
		padding-right: 1.5rem;
	}
	
	.wsu-card--teachxwsu-keynote.wsu-card.wsu-card--layout-reversed .wsu-card__content, .wsu-card--teachxwsu-session.wsu-card.wsu-card--layout-reversed .wsu-card__content {
		padding-left: 1.5rem;
		padding-right: 2rem;
	}
	
	.wsu-card--teachxwsu-keynote:is(.wsu-card--style-horizontal-25, .wsu-card--style-horizontal-33) .wsu-title, .wsu-card--teachxwsu-session:is(.wsu-card--style-horizontal-25, .wsu-card--style-horizontal-33) .wsu-title, {
		font-size: 1.5rem;
	}
	
	.wsu-card--teachxwsu-keynote:is(.wsu-card--style-horizontal-25, .wsu-card--style-horizontal-33) .wsu-card__content, .wsu-card--teachxwsu-session:is(.wsu-card--style-horizontal-25, .wsu-card--style-horizontal-33) .wsu-card__content {
		justify-content: flex-start;
	}
	
	.wsu-card--teachxwsu-presenter.wsu-card--style-horizontal-25 .wsu-image-frame img {
		max-width: 165px;
		margin-left: auto;
	}
}

@media screen and (max-width: 767px) {
	.wsu-card--teachxwsu-keynote ~ .wsu-decorator, .wsu-card--teachxwsu-session ~ .wsu-decorator {
		display: none;
	}
	
	.wp-block-table.wp-block-table--teachxwsu-schedule {
		overflow-x: auto !important;
	}
	
	.wp-block-table--teachxwsu-schedule th:first-child, .wp-block-table--teachxwsu-schedule td:first-child {
		min-width: 198px;
	}
	
	.wsu-card--teachxwsu-presenter {
		padding-left: 1rem;
	}
	
	.wsu-card--teachxwsu-presenter.wsu-card--style-horizontal-25 .wsu-image-frame img {
		max-width: 215px;
	}
	
	.wsu-card--teachxwsu-presenter .wsu-image-frame {
		background: repeating-linear-gradient(135deg,#b3b3b3,#b3b3b3 2px,transparent 2px,transparent 10px);
	}
	
	.wsu-card--teachxwsu-keynote-presenter .wsu-image-frame {
		background: repeating-linear-gradient(135deg,#a60f2d,#a60f2d 2px,transparent 2px,transparent 10px);
	}
}

/** Card Blocks: Event times for WSU titles => CUSTOMIZATION
 *  ===========  --------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wsu-title__event-time {
	background-color: #f0f0f0;
	border-bottom: 3px solid #b0b0b0;
	border-top-left-radius: .33rem;
	border-top-right-radius: .33rem;
	display: inline-block;
	font-size: 1.2rem;
	padding: .5rem .4rem .4rem;
	margin-bottom: .5rem;
}

/** Decorator WDS Components: Additional Style Options => CUSTOMIZATION
 *  ========================  ------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wsu-decorator--style-block-gray-darkish {
	background-color: #b3b3b3;
}

/** WP Block Spacers: Anchors => CUSTOMIZATION
 *  ================  -------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wp-block-spacer.wp-block-spacer--anchor {
	border-top-color: transparent !important;
	height: 0 !important;
}

/** Utility Classes: Typography—Line Heights => CUSTOMIZATION
 *  ===============  -----------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.lh-exp4d-1x {
	line-height: 1.75;
}

/** Paragraphs and Lists: Default Font Sizing for Body Text => CUSTOMIZATION
 *  ====================  ---------------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
:is(ol, p, ul):not([class*="wsu-font-size--"]) {
	font-size: 1.0625rem;
	line-height: 1.5;
}

/** Paragraphs and Lists: Default Spacing between Paragraphs and Lists => CUSTOMIZATION
 *  ====================  --------------------------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
@media screen and (min-width: 769px) {
	:is(p:not([class*="wsu-spacing-after--"]) + ul:not([class*="wsu-spacing-before--"]), p:not([class*="wsu-spacing-after--"]) + ol:not([class*="wsu-spacing-before--"])) {
		margin-top: -1.375rem;
	}
}

/** Decorators: Design for Additional Block Styles => ENHANCEMENT
 *  ==========  ----------------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wsu-decorator--style-block-autumn {
	background-color: #ff6727;
}

/** Decorators: TEACHxWSU Design => CUSTOMIZATION
 *  ==========  ----------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wsu-decorator--style-teachxwsu {
	background: url('https://wpcdn.web.wsu.edu/wp-provost/uploads/sites/56/2024/09/banner_teachxwsu-logo_950w320h288ppi.jpg') no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
}

.wsu-decorator--style-teachxwsu-discussion {
	background: url('https://wpcdn.web.wsu.edu/wp-provost/uploads/sites/56/2024/09/decorator_image-from-teachxwsu-2023_DSC_8823_960w994h288ppi6q.jpg') no-repeat;
	background-position: 40% center;
	background-size: cover;
	display: block;
	position: absolute;
}

.wsu-decorator--style-teachxwsu-discussion-option-2 {
	background: url('https://wpcdn.web.wsu.edu/wp-provost/uploads/sites/56/2025/09/decorator_image-from-teachxwsu-2022_DSC_4346_960w994h288ppi6q.jpg') no-repeat;
	background-position: 40% center;
	background-size: cover;
	display: block;
	position: absolute;
}

/** Gravity Forms: DAESA Styled Forms => CUSTOMIZATION
 *  =============  ------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.gform_heading + form {
	margin-top: 1.125rem;
}

.gform_wrapper.gravity-theme .gf_page_steps {
	background-color: #f7f7f7;
	margin-bottom: 0;
	padding: .5rem 1rem .25rem;
}

.gform_wrapper.gravity-theme .gform_body {
	background-color: #f7f7f7;
	border-radius: 5px;
	box-shadow: 0 0 3px rgb(0 0 0 / 15%) inset, 2px 2px 6px rgb(0 0 0 / 5%) inset, -2px 2px 6px rgb(0 0 0 / 5%) inset;
	padding: 2rem;
}

@media screen and (max-width: 576px) {
	.gform_wrapper.gravity-theme .gform_body {
		padding: 1rem;
	}
}

.gform_wrapper.gravity-theme .gf_page_steps + .gform_body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.gform_wrapper.gravity-theme .gfield_html:not(.gfield_html--for-indicator) {
	background: #fff;
	border: 1px solid #d7d7d7;
	border-radius: .3125rem;
	padding: 2rem;
}

.gform_wrapper.gravity-theme .gfield_html--for-indicator hr {
	background-color: #fff;
	border-color: #d7d7d7;
}

.gform_wrapper.gravity-theme .gsection_title {
	font-weight: 700;
}

.gform_wrapper.gravity-theme .gfield_label {
	font-weight: 600;
	margin-bottom: .25rem;
}

.gform_wrapper.gravity-theme .ginput_complex label {
	font-weight: 500;
	margin-bottom: .25rem;
	padding-top: 0;
}

.gform_wrapper.gravity-theme .field_sublabel_above .description, .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description, .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description {
	margin-top: 0;
	padding-bottom: .5rem;
}

.gform_wrapper.gravity-theme .field_sublabel_above .description:empty, .gform_wrapper.gravity-theme .field_sublabel_above .gfield_description:empty, .gform_wrapper.gravity-theme .field_sublabel_above .gsection_description:empty {
	padding-bottom: 0;
}

.gform_wrapper.gravity-theme .gpnf-nested-entries {
	background-color: #fff;
}

.gform_wrapper.gravity-theme .field_description_above .gfield_description.gfield_consent_description {
	background-color: white;
	padding: .5rem;
	margin-bottom: .5rem;
}

.gform_confirmation_wrapper table table {
	border-top: 0;
	margin-bottom: 0;
}

.gform_confirmation_wrapper table table {
	border-top: 0;
	margin-bottom: 0;
}

.gform_confirmation_wrapper table table tr:first-child td {
	background-color: #fff !important;
}

.gform_confirmation_wrapper table table td:not([colspan]):first-child {
	border-right: 0;
}

.gform_confirmation_wrapper table table td:not([colspan]):last-child {
	border-left: 0;
}

.gform_confirmation_wrapper table table td:not([colspan]) ul {
	margin: .875em 0 0;
}

.gform_wrapper.gravity-theme .gfield_contains_required .gfield_checkbox:not(.gf-value-entered),.gform_wrapper.gravity-theme .gfield_contains_required .gfield_radio:not(:has(.gf-value-entered)),.gform_wrapper.gravity-theme .gfield_contains_required input:not(.gf-value-entered),.gform_wrapper.gravity-theme .gfield_contains_required select:not(.gf-value-entered),.gform_wrapper.gravity-theme .gfield_contains_required textarea:not(.gf-value-entered) {
	border-left: 2px solid #a60f2d;
}

.gform_wrapper.gravity-theme .gfield_contains_required .gfield_checkbox:not(.gf-value-entered):focus,
.gform_wrapper.gravity-theme .gfield_contains_required .gfield_radio:not(.gf-value-entered):focus,
.gform_wrapper.gravity-theme .gfield_contains_required input:not(.gf-value-entered):focus,
.gform_wrapper.gravity-theme .gfield_contains_required select:not(.gf-value-entered):focus,
.gform_wrapper.gravity-theme .gfield_contains_required textarea:not(.gf-value-entered):focus {
	border-left-color: #002D61;
}

.gform_wrapper.gravity-theme .gfield_contains_required input.gf-value-entered,.gform_wrapper.gravity-theme .gfield_contains_required select.gf-value-entered,.gform_wrapper.gravity-theme .gfield_contains_required textarea.gf-value-entered {
	padding-left: calc(.5rem + 1px);
}

.gform_wrapper.gravity-theme .gfield_contains_required .gfield_checkbox.gf-value-entered,.gform_wrapper.gravity-theme .gfield_contains_required .gfield_radio.gf-value-entered {
	padding-left: 1px;
}

/** Gravity Forms: DAESA Styled Progress Indicators
 *  =============  --------------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.progress-indicator {
	align-items: center;
	border-top: 1px dotted #ccc;
	display: flex;
	font-size: .925em;
	justify-content: center;
	margin-bottom: 0;
	list-style-type: none;
	position: relative;
}

@media screen and (max-width: 1500px) {
	.progress-indicator {
		flex-wrap: wrap;
	}
}

.progress-indicator::before {
	color: #5e5e5e;
	content: "Application Progress:";
	position: absolute;
	left: 0;
	text-transform: uppercase;
	top: .3em;
}

ol.progress-indicator li {
	list-style-type: none;
}

.gform_wrapper.gravity-theme .progress-indicator {
	max-width: none;
	padding-top: 3rem;
}

body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol.progress-indicator,
body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol.progress-indicator {
	list-style-type: none !important;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 2.3em;
}

body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol.progress-indicator li,
body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol.progress-indicator li {
	list-style-type: none !important;
}

.progress-indicator__l-connector,
.progress-indicator__r-connector {
	background-color: #e5e6e8;
	position: absolute;
	height: .3125rem;
	top: 50%;
	width: 1rem;
}

.progress-indicator__section-complete .progress-indicator__l-connector,
.progress-indicator__section-complete .progress-indicator__r-connector {
	background-color: #981e32;
}

.progress-indicator__l-connector {
	left: 0;
	transform: translate(-100%,-50%);
}

.progress-indicator__section-active .progress-indicator__l-connector {
	background-color: #981e32;
}

.progress-indicator__r-connector {
	right: 0;
	transform: translate(100%,-50%);
}

.progress-indicator__section {
	background-color: #e5e6e8;
	border-radius: .25em;
	color: black;
	padding: .5em 1em;
	position: relative;
	text-align: center;
}

.gform_wrapper.gravity-theme .progress-indicator__section {
	margin-right: 2rem;
	margin-bottom: 1.5rem;
}

body .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol .progress-indicator__section,
body .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol .progress-indicator__section {
	margin-right: 18px;
	padding: .5em 1em;
}

.progress-indicator__section-active {
	background-color: #58111d;
	color: white;
}

.progress-indicator__section-complete {
	background-color: #981e32;
	color: white;
}

/** Atomic CSS: Breakpoints => UTILITY
 *  ==========  -----------
 *  Corrected “show at …” breakpoints.
 *  (Author: daniel.rieck@wsu.edu)
 */
@media screen and (min-width:2401px) {
	.wsu-show--xxultrawide {
		display: none !important;
	}
}

@media screen and (min-width:1901px) {
	.wsu-show--xultrawide {
		display: none !important;
	}
}

@media screen and (max-width:1600px) {
	.wsu-show--ultrawide {
		display: none !important;
	}
}

@media screen and (min-width:1261px) {
	.wsu-show--desktop {
		display: none !important;
	}
}

@media screen and (min-width:993px) {
	.wsu-show--tablet-large {
		display: none !important;
	}
}

@media screen and (min-width:861px) {
	.wsu-show--tablet-medium {
		display: none !important;
	}
}

@media screen and (min-width:769px) {
	.wsu-show--tablet {
		display: none !important;
	}
}

@media screen and (min-width:577px) {
	.wsu-show--phone {
		display: none !important;
	}
}

@media screen and (min-width:451px) {
	.wsu-show--phone-small {
		display: none !important;
	}
}

/*******
 * Quick Links Menu: Improved Use of Negative Space => ENHANCEMENT
 * ================  ------------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.wsu-quicklinks__panel-content {
	padding: 0 1.75rem;
}

#menu-quicklinks {
	column-gap: 1.75rem;
	margin-left: .125rem;
}

/* NEWS CARDS: TA Induction Featured Image Adjustment (Enhancement)
 * --------------------------------------------------
 *  (Author: daniel.rieck@wsu.edu)
 */
.home .wsu-card--id-1880 .wsu-image-frame[class*=wsu-image-frame--fixed-ratio] img {
	object-position: 75% 0;
}

/* NARRATIVE: Emphasized Introduciton (Customization)
 * ----------------------------------
 *  (author: daniel.rieck@wsu.edu)
 */
#wsu-content .emphasized-introduction > em:first-child {
	color: #4D4D4D;
	font-style: normal;
	font-weight: 500;
	position: relative;
}

#wsu-content .emphasized-introduction > em > strong {
	color: #3A3A3A;
}

#wsu-content .emphasized-introduction > em:first-child:before {
	background-color: #CCC9C8;
	bottom: 0;
	content: "";
	left: -.875rem;
	position: absolute;
	top: 0;
	width: 3px;
}

#wsu-content .emphasized-introduction--wheat-field  > em:first-child:before {
	background-color: #E9C576;
}