*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.clearfix:before,
.clearfix:after {
  content: '';
  display: table;
}

.clearfix:after {
  clear: both;
}

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

#skip a:focus {
    position:static;
    width:auto;
    height:auto;
}

@media(min-width: 75em) {
    #skip a:focus {
        margin-left: 300px;
    }
}

.display-inline * {
  display: inline-block;
}

.aria-hide {
  display: none;
}

.mt0 {
	margin-top: 0;
}

.mb0 {
	margin-bottom: 0;
}

.auto-margin {
    margin: auto;
}

.text-center {
    text-align: center;
}
main {
    position: relative;
}

/* Variables */
:root {
	--primary-brand: #2667AE;
	--accent-1: #E0631B;
	--accent-2: #3795FA;
	--dark-font-color: #4E4E4E;
	--light-font-color: #fff;
    --athletics: #2B7BA7;
    --staff: #58c4fe;

	--dark-grey: #4E4E4E;
	--medium-grey: #a8a8a8;
	--light-grey: #f6f6f6; 
	--light-orange: #FA8E50;

	--header-font: 'Neuton', serif;
	--body-font: 'Montserrat', sans-serif;
	--body-font-2: 'Roboto', sans-serif;
	
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
}

/* background-colors */
.light-grey-bg {
	background: var(--light-grey);
}

.dark-grey-bg {
	background: var(--dark-grey);
}

.primary-bg {
	background: var(--primary-brand);
}

.secondary-bg {
	background: var(--secondary-brand);
}

/* TYPOGRAPHY
Using the Perfect Fifth factor from https://www.gridlover.net/try
*/
html {
  font-size: 16px;
  line-height: 21px;
  scroll-behavior: smooth;
}

@media (min-width: 99em){
	html {
	  font-size: calc(12px + 0.390625vw);
	}
}

@media (min-width: 125em){
	html {
	  font-size: calc(15px + 0.390625vw);
	}
}

body {
  max-width: 2560px;
  padding: 0;
  margin: 0 auto;  
  font-family: var(--body-font);
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--dark-font-color);
}

h1, .h1 {
  font-weight: var(--font-bold);
  font-style: normal; 
  font-size: 3.25rem;
  margin-top: 1.3125rem;
  margin-bottom: 2.625rem;
}

h2, .h2, h3, .h3, h4, 
.h4, h5, .h5, h6, .h6 {
  font-weight: var(--font-semibold);
  font-style: normal;
}

h2, .h2 {
  font-size: 2rem;
  margin-top: 1.3125rem;
  margin-bottom: 1.3125rem;
}

h3, .h3 {
  font-size: 1.375rem;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

h4, .h4 {
  font-size: 1rem;
  margin-top: 1.3125rem;
  margin-bottom: 0rem;
}

h5, .h5 {
  font-size: 1rem;
  margin-top: 1.3125rem;
  margin-bottom: 0rem;
}

@media all and (max-width: 62em){
	h1, .h1 {
		font-size: 2rem;
	}
	
	h2, .h2 {
		font-size: 1.5rem;
		margin: 1rem 0;
	}
}

p, ul, ol, pre, blockquote {
  margin-top: 0rem;
  margin-bottom: 1rem;
}

ul ul, ol ol, ul ol, ol ul {
  margin-top: 0rem;
  margin-bottom: 0rem;
}

h1 + h2 {
  margin-top: 0;
}

p {
	line-height: 1.5;
}

hr {
	border: 0;
    height: 1px;
    background-color: #e6e6e6;
	margin: 2rem 0;	
	clear: both;
}

.lead {
  font-size: 120%;
}

.font-bold {
	font-weight: var(--font-bold);
}

img {
	max-width: 100%;	
	object-fit: cover;
}	

.image img {
    margin: auto;
    display: block;
}

a {
  text-decoration: none;
}

blockquote {
    border-left: 5px solid var(--accent-1);
    padding: 1.5rem;
    margin: 0 0 1rem 0;
    position: relative;
	font-style: italic;
    font-weight: 300;
    font-size: 1.1rem;
}

/* blockquote::before {
	font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f10e";
    position: absolute;
    top: 50%;
    left: -1.25rem;
    transform: translateY(-50%);
    font-size: 1.5rem;
	font-style: normal;
    color: var( --accent-1);
    background: white;
    padding: .5rem;
} */

.allow-newlines {
  white-space: pre-wrap;
}

.no-padding {
  padding: 0;
}

.no-margin {
	margin: 0;
}

.mt0 {
	margin-top: 0;
}

.margin-top-bottom {
	margin: 1rem 0;
}

.margin-left-right {
	margin-left: 1rem;
	margin-right: 1rem;
}

.align-right {
	margin-left: auto;
	display: block;
	text-align: right;
}

.flex-row {
	display: flex;
	flex-direction: row;
	align-items: center;
}

.flex-row-between {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.flex-column-between {
	display: flex!important;
    flex-direction: column!important;
	justify-content: space-between!important;
}

ul {
	padding-left: 0;
	list-style: none;
}

.content-inner ul {
	padding-left: 1rem;
	list-style: unset;
}

.page {
	padding: 2rem 0;
}

.content {
	width: 100%;
}

.content-container {
	padding: 0 1rem;
}

.page-template.content-container {
	padding: 0;
}

.wrapper {
	display: block;
	width: 100%;
}

.content-wrapper {
	position: relative;
	width: 100%;
}

section {
	margin: 0 0 2rem;
}

@media (min-width: 62em){
	.page-template.content-container {
		padding: 0 1rem;
	}
}

@media all and (min-width: 75em){
	.wrapper {
		display: flex;
		width: 100%;
	}
	
	.content-wrapper {
		width: 100%;
	}
	.content-wrapper.active {
		width: calc(100% - 240px);
	}
	.content-wrapper .page-template.content-container,
	.content-wrapper .content-container,
    .cm-documents .container {
		padding: 0 7.5%;
	}
	
	.content-wrapper .container.pad-side {
		width: 100%;
		padding: 0 7.5%;
	}
	
	.content-wrapper.active .container.pad-side {
		width: 100%;
		padding: 0 1rem;
	}
	
	.content-wrapper.active .page-template.content-container,
	.content-wrapper.active .content-container,
    .content-wrapper.active .cm-documents .container {
		padding: 0 2rem;
        width: 100%;
	}
}


/* BUTTON & LINKS */
a {
  	transition: all .2s ease-in-out; 
	color: var(--accent-1);
}

a:hover,
a:focus {
	filter: brightness(0.95)
}

.btn {
	color: var(--light-font-color);
    background: var(--primary-brand);
    padding: .5rem 1rem;
    font-weight: var(--font-semibold);
    margin-top: 1rem;
    display: block;
    width: fit-content;
}

.btn-secondary {
	background: var(--accent-1);
}

.btn-secondary-light {
	background: #fff;
	color: var(--accent-1);
	transition: all .3s ease-in-out;
}

.btn-secondary-light:hover,
.btn-secondary-light:focus {
	background: var(--accent-1);
	color: #fff;
}

.btn-link-primary {
	display: block;
    font-weight: var(--font-bold);
	color: var(--primary-brand);
}

.btn-link-secondary {
	display: block;
    font-weight: var(--font-bold);
	color: var(--secondary-brand);
}

.btn-link-accent-1 {
	display: block;
    font-weight: var(--font-bold);
	color: var(--accent-1);
}


/* INPUT FIELDS */
input:-webkit-autofill,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:focus {
  border: none;
  -webkit-text-fill-color: none;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

.input-field input[type="text"], .input-field input[type="password"], 
.input-field input[type="date"], .input-field input[type="tel"], 
.input-field input[type="email"], 
textarea {
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    transition: 0.5s;
	padding: .5rem;
	margin-bottom: 1rem;
}

textarea {
	min-height: 6.25rem;
}

.input-field label {
	margin-bottom: 0.5rem;
    display: block;
}

input[type="submit"] {
    font-weight: var(--font-bold);
    background: var(--accent-1);
    color: white;
    border: 0;
    cursor: pointer;
    margin-top: 1rem;
    padding: .5rem 1.5rem;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.login-form {
	max-width: 600px;
}


/* Table Styles */
.table img, .editor-table img {
    width: auto;
    height: auto;
}
.table {
  margin: 0 0 2rem;
  overflow-x: auto;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 10%);
}

.table.bell-schedule {
	box-shadow: none;
}

.table table {
  border-radius: 5px;
  font-weight: normal;
  border: none;
  border-collapse: collapse;
  width: 100%;
  max-width: 100%;
  white-space: normal;
  background-color: white;
}

.table table td, 
.table table th {
  padding: 10px 15px;
}

.table table td {
  border-right: 1px solid #F7F6F4;
}

.table table td:last-of-type {
  border-right: 0;
}

.table table thead th {
  color: #ffffff;
  background: var(--secondary-brand);
}


.table table thead th:nth-child(even) {
  color: #ffffff;
  background: #506983;
}

.table table tr:nth-child(odd) {
  background: #f5f5f5;
}

.table h3 {
	margin: .5rem 0;
}

.table img {
	width: 100%;
}

table td p:last-of-type,
table th p:last-of-type {
    margin-bottom: 0
}

/* Search Results */
.container.pad-side > .row > h1 {
	width: 100%;
}
.search-results {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	width: 100%;
	margin: 1rem 0;
}

.search-result {
	border: 1px dashed #c3c3c3;
	padding: 1rem 1rem 0;
	flex-basis: 100%;
	max-width: 100%;
}

.search-result a {
	display: flex;
	column-gap: 1rem;	
	color: var(--dark-font-color);
}

.search-description strong {
	color: var(--primary-brand);
}

.error-page-container .input-buttons {
	margin: auto;
}

.banner-alert-wrapper {
	font-size: 16px;
}

#sys-site-search-wrapper-top, #sys-site-search-wrapper-bottom {
    margin-right: 1rem;
}

@media (min-width: 75em){
	.container.pad-side > .row > h1 {
		padding: 4.5rem 1rem 0;
    	font-size: 2.5rem;
	}
	
	.search-results {
		margin: 1rem;
	}
	
	.banner-alert-wrapper {
		text-align: left;
		font-size: 18px;
	}
	
	div[role="tabpanel"]{
		padding-left: 2.5rem;
	}
	
	.banner-alert-wrapper button:first-of-type {
		margin-left: 2rem;
	}
}


/* Header */
.logo {
	display: block;
}

.logo img {
	display: block;
	max-height: 60px;
    object-fit: contain;
    margin: 0.5rem;
}

header.mobile {
	display: block;
}
header.desktop {
	display: none;
    background: white;
    width: 0;
    height: 100%;
}

header.desktop.active {
	width: 240px;
}

.menu-trigger,
.menu-close {
	display: none;
    flex-direction: column;
    justify-content: center;
}

.menu-trigger {
	cursor: pointer;
	position: fixed;
    top: 0;
    left: 0;
	z-index: 200;
	padding: 8px;
	background: var(--primary-brand);
	height: 40px;
}

.menu-close {
	cursor: pointer;
	position: fixed;
    top: 0;
    left: 240px;
	z-index: 300;
	padding: 8px;
	background: var(--primary-brand);
	opacity: 0.8;
	height: 40px;
}

.main-menu-wrapper {
    width: 240px;
    background: white;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	overflow-y: scroll;
}

.main-menu-wrapper .main-menu {
	width: 240px;
	position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
}

.main-menu-wrapper .contact-social {
	position: fixed;
    bottom: 0;
}

.main-menu-wrapper::-webkit-scrollbar { width: 0 !important }

.main-menu-wrapper { overflow: -moz-scrollbars-none; }

.main-menu-wrapper{ -ms-overflow-style: none; }

.nav-app > ul {
	display: flex;
    justify-content: space-between;
	align-items: center;
    background: var(--primary-brand);
	padding: 8px;
	margin-bottom: 0;
}

.nav-app > ul > li > a {
	display: flex;
	align-items: center;
}

.nav-app-icons {
	display: flex;
    gap: 0.25rem;
    align-items: center;
}

.nav-app i,
.nav-app span {
	color: #fff;
}

.nav-app-icons .option-btn a {
	display: flex;
    flex-direction: column;
    justify-content: center;
}
.option-btn[data-type="account"] {
	width: 70%;
}

.option-btn[data-type="account"] span {
	font-size: 11px;
    padding-left: .5rem;
    opacity: 0.6;
}

.main-nav {
	padding: 3rem 0 1.5rem;
}

.main-nav li {
	margin-bottom: 1rem;
	position: relative;
}

.main-nav .main-dropdown,
.main-nav .no-dropdown {
    padding: 0 1.5rem;
}

.main-nav li:last-of-type {
	margin-bottom: 0;
}

.nav-link {
    gap: 0.5rem;
	font-size: .8rem;
	font-weight: var(--font-semibold);
	color: var(--dark-font-color);
	transition: all .3s ease-in-out;
	justify-content: space-between;
}

.nav-link:hover,
.nav-link:focus {
	color: var(--accent-1);
}

.nav-link a {
    color: var(--dark-font-color);
}

.nav-link:hover a,
.nav-link:focus a {
	color: var(--accent-1);
}

.contact-social {
	padding: 0 1.5rem;
}

.contact-social a {
	color: var(--primary-brand);
	font-weight: var(--font-semibold);
	font-size: .875rem;
}

.contact-social > a {
	margin-bottom: 1rem;
}
.social-wrapper svg {
	width: 30px;
	height: 30px;
	fill: var(--primary-brand);
}

.social-wrapper {
	column-gap: .75rem;
	margin-bottom: 1rem;
}

.search-api-form {
    position: relative;
}

#search-button, 
.search-bar-wrapper label {
	display: none;
}

#search-term, #search-term-clone, #search-api-term {
	padding: 0.75rem 0.75rem 0.75rem 40px;
	width: 100%;
	font-size: .8rem;
	margin-bottom: 0;
}

#search-form .input-field label,
#search-form-2 .input-field label {
	display: none;
}

.error-page-container #search-term {
	border: solid 1px #e4e4e4;
	padding: .5rem;
	margin-bottom: 1rem;
}

.error-page-container #search-button {
	display: block;
}

.search-bar-wrapper i {
	color: var(--primary-brand);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: .5rem;
}

.search-bar-wrapper .filter-icon {
    left: auto;
    right: 1rem;
    cursor: pointer;
}

.main-dropdown-menu {
    background: var(--primary-brand);
    padding: 1rem;
	margin-top: 0.5rem;
}

.main-dropdown-menu a {
	color: white;
	font-size: .8rem;
}

.main-nav .main-dropdown-menu li {
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.main-nav .main-dropdown-menu li:last-of-type {
    margin-bottom: 0;
}

.main-dropdown i {
	font-size: 1rem;
}

.main-dropdown-menu a:hover,
.main-dropdown-menu a:focus {
    color: var(--accent-1);
}

/* Search filters */
.search-row {
    display: flex;
    align-items: center;
    flex-grow: 1;
    width: 100%;
}

.search-filters {
    display: none;
    position: absolute;
    background: var(--light-grey);
    left: 0;
    right: 0;
    top: 100%;
    padding: 0.5rem;
    z-index: 100;
}

.filter-group {
    margin: 0 0 .5rem;
    display: flex;
    gap: 0.5rem;
}

.filter-group:last-of-type {
    margin: 0;
}

.search-bar-wrapper .search-filters label {
	display: block;
    font-size: .85rem;
}

#exclude-search-term {
    font-size: .85rem;
    margin-bottom: 0;
}

@media(max-width: 48em){
    #search-term, #search-term-clone, #search-api-term {
        padding: 0.75rem 0.75rem 0.75rem 30px;
    }

    .search-bar-wrapper i {
        left: 5px;
    }

    .search-bar-wrapper .filter-icon {
        right: 5px;
    }
    
}

@media all and (min-width: 48em){
	.option-btn[data-type="account"] {
		width: 85%;
	}
}

@media all and (min-width: 75em){
	.logo img {
		max-width: 260px;
		max-height: unset;

	}
	.option-btn[data-type="account"] {
		width: 60%;
	}
	
	.search-bar-wrapper {
		position: absolute;
		z-index: 500;
		right: 1rem;
		top: 1rem;
	}
	
	#search-term, #search-term-clone, #search-api-term {
		width: 30rem;
	}
	
	.error-page-container #search-term {
		width: 100%;
	}
	
	.search-bar-wrapper i {
		left: .75rem;
	}
	
	.menu-trigger,
	.menu-close {
		display: flex;
	}
	
	.main-dropdown-menu {
		position: absolute;
		left: 100%;
		background: var(--primary-brand);
		top: -8px;
        padding: 0.75rem;
		min-width: 18rem;
		margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease-in-out;
	}
	
	.main-dropdown.two-col .main-dropdown-menu {
		column-count: 2;
	}
	.main-dropdown.two-col .main-dropdown-menu li,
    .main-dropdown.three-col .main-dropdown-menu li {
		break-inside: avoid;
	}

    .main-dropdown.three-col .main-dropdown-menu {
		column-count: 3;
        min-width: 26rem;
	}

    /* Desktop main nav */
    .main-dropdown:hover .main-dropdown-menu {
        opacity: 1;
        visibility: visible;
    }

    .main-nav {
        padding: 1rem 0 0;
    }

}

@media (min-width: 99em){
	#search-term, #search-term-clone, #search-api-term {
		width: 40rem;
	}
}

@media (min-width: 2560px){
    .content-wrapper.active {
		width: calc(100% - 300px);
	}

    header.desktop.active {
        width: 300px;
    }

	.main-menu-wrapper {
		left: calc((100% - 2560px) / 2);
	}
	
	.menu-trigger {
		left: calc((100% - 2560px) / 2);
	}
	
	.menu-close {
		left: calc((100% - 2560px) / 2 + 300px);
	}

    .main-menu-wrapper .main-menu {
        width: 300px;
        left: calc((100vw - 2560px)/2);
    }
}

/* Mobile Header */
.mobile-logo-wrapper {
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 1rem;
}

.mobile-menu-trigger {
	width: 30px;
    fill: var(--primary-brand);
}

.mobile-menu-close {
	fill: var(--primary-brand);
    position: absolute;
    z-index: 600;
    top: 1rem;
    right: 1rem;
    width: 25px;
}

.mobile-main-menu-wrapper {
	position: fixed;
    z-index: 500;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
	height: 100vh;
	overflow: scroll;	
}


@media all and (max-width: 1199px){
	.search-bar-wrapper.desktop {
		display: none;
	}

    .main-dropdown-menu {
        display: none;
    }

    .main-dropdown.show .main-dropdown-menu{
        display: block;
    }

    .nav-link {
        font-size: 1rem;
    }

    .main-dropdown i {
        font-size: 1.5rem;
    }

    .main-nav {
        padding: 4rem 0 1.5rem;
    }
}

@media all and (min-width: 75em){
	header.mobile {
		display: none;
	}
	header.desktop {
		display: unset;
	}
	.logo img {
		max-width: 160px;
		display: block;
		margin: 1.25rem auto 0;
	}
	
	.search-modal {
		display: none!important;
	}
}

@media (min-width: 75em) and (max-width: 99em){
    .logo img {
		max-width: 120px;
		margin: 1rem auto 0;
	}
}

/* Footer */
footer .social-wrapper {
    column-gap: .75rem;
    margin-bottom: 1rem; 
    display: flex;
}

footer .social-wrapper svg {
	fill: #fff;
}

footer {
	padding: 2rem 1rem;
	color: var(--light-font-color);
}

.footer-top {
    margin: auto;
}

.footer-logo {
	margin: 0 0 1.5rem;
    max-width: 300px;
	display: block;	
	width: 100%;
}

.footer-col-2 {
	line-height: 1.4;
}

address {
	font-style: normal;
	margin: 1.5rem 0;	
	font-weight: var(--font-medium);
}

.contact-wrapper {
	margin-bottom: 2rem;
	font-weight: var(--font-medium);
}

.contact-wrapper a {
	color: var(--light-font-color);
    display: block;
}

.small-links {
	font-size: .875rem;
	opacity: .6;
}

.small-links a {
	color: var(--light-font-color);
}

@media all and (min-width: 75em){
	footer {
		padding: 5rem 0 2rem;
	}
	footer .social-wrapper {
		justify-content: center;
	}
	.footer-top {
		width: 70%;
		display: flex;
		justify-content: center;
		column-gap: 4rem;
	}
	.footer-logo {
		margin: 0 auto 2rem;
		width: 100%;
        max-width: 400px;
	}
	address {
		margin: 0 0 1.5rem;;
	}
	.small-links {
		margin-top: 4rem;
	}
	.small-links p {
		display: block;
    	margin: auto;
    	text-align: center;
	}
}

/* Home Spotlight */
.spotlight-item {
	width: 100%;
	opacity: 1;
	position: relative;
	color: var(--light-font-color);
	transition: all .3s ease-in-out;
	margin-bottom: 5px;
}

.spotlight-item img {
	width: 100%;
	height: 100%;
    display: block;
	object-fit: cover;
	aspect-ratio: 4/3;
}

/*.spotlight-item.featured {
	max-height: 450px;
	min-height: 350px;
}*/

.spotlight-wrapper {
	display: flex;
	width: 100%;
	flex-wrap: wrap;
	margin-bottom: 0;
}

.spotlight-item.desktop {
	display: none;
}

.spotlight-wrapper .btn {
	background: var(--accent-2);
}


.spotlight-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	right: 0;
	top: 0;
	background: #101010;
	opacity: 0.5;
	transition: all .2s ease;
}

.spotlight-item.featured .spotlight-overlay,
.spotlight-1 .spotlight-overlay {
	background: transparent linear-gradient(180deg, #4E4E4E00 0%, #101010A5 100%) 0% 0% no-repeat padding-box;
}

.spotlight-item.small:hover .spotlight-overlay {
	filter: unset;
	opacity: 0.3;
}
.spotlight-content {
	margin-right: 1.5rem;
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 100;
}

.spotlight-item.featured .spotlight-content {
	left: 1rem;
	bottom: 2rem;
}

.spotlight-item.small img {
	aspect-ratio: 16/9;
}

.spotlight-content h1 {
	font-size: 2rem;
	margin: 0 0 1rem;
	font-family: var(--header-font);
	font-weight: var(--font-regular);
}

.spotlight-content h3 {
	font-size: 1.25rem;
}

.spotlight-item.featured .spotlight-content h3 {
	font-size: 1rem;
	margin: 0 0 1rem;
}

/*.spotlight-1 .spotlight-content h3 {
	color: var(--light-orange);
}*/

.spotlight-item.small p {
	margin: .5rem 0 0;
}

.swiper-pagination-bullet {
    background: #fff;
}

@media (min-width: 37.5em){
	.spotlight-item.small:first-of-type {
		width: calc(50% - 2.5px);
		margin-right: 2.5px;
	}
	
	.spotlight-item.small:last-of-type {
		width: calc(50% - 2.5px);
		margin-left: 2.5px;
	}
	
	.spotlight-item.featured img {
		aspect-ratio: 16/9;
	}
}


@media (min-width: 62em){
	.spotlight-item.desktop {
		display: unset;
	}
	.mobile-spotlight {
		display: none;
	}
	.spotlight-wrapper {
		display: grid;
		width: 100%;
		margin-top: 0;
		margin-bottom: 5px;
		grid-gap: 5px;
		grid-template-columns: 1fr 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		grid-template-areas:
			"featured featured spotlight1"
			"featured featured spotlight2";
	}	
	
	.spotlight-item {
		margin: 0;
	}

	.spotlight-item.featured {
		grid-area: featured;
	}

    .spotlight-item.small img {
        aspect-ratio: 3/2;
    }
	
	.spotlight-item img {
		width: 100%;
		/* height: calc(75vh + 5px); */
		display: block;
		object-fit: cover;
		aspect-ratio: unset;
	}
	
	.spotlight-item.small,
	.spotlight-item.small:first-of-type,
	.spotlight-item.small:last-of-type {
		width: 100%;
		margin: 0;
	}
	
	/* .spotlight-item.small img {
		height: 37.5vh;
	} */

	.spotlight-1 {
	  grid-area: spotlight1;
	}

	.spotlight-2{
	  grid-area: spotlight2;
	}

	.spotlight-item.featured .spotlight-content {
		max-width: 42rem;
		left: 3rem;
		bottom: 3rem;
		/*transform: translateX(-60%);*/
	}
	.spotlight-item.small {
		display: block;
	}
	.spotlight-content {
		left: 1.5rem;
		bottom: 1.5rem;
	}
	.spotlight-content h1 {
		margin: 0 0 1rem;
		font-size: 3.25rem;
	}

	.spotlight-item.featured .spotlight-content h3 {
		font-size: 1.5rem;
		margin: 0 0 2rem;
		width: 90%;
	}

}

@media all and (min-width: 99em){
	.spotlight-item.featured .spotlight-content {
		left: 5rem;
	}

}

/* Home: Quicklinks */
.quicklinks-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	row-gap: 1rem;
    background: var(--primary-brand);
	padding: 1rem 0;
	margin: 0;
}

.quicklink {
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.4);
}

.quicklink:last-of-type {
	border-right: none;
}

.quicklink a {
	color: var(--light-font-color);
	column-gap: .5rem;
	font-weight: var(--font-semibold);
	font-size: .9rem;
	text-align: center;
	justify-content: center;
}

.quicklink a:hover  {
	filter: unset;
}

.quicklink i {
	opacity: 0.4;
	font-size: 1rem;
	transition: all .3s ease;
}

.quicklink a:hover i  {
	opacity: 1;
}

/* Home: Main CTA & Events */
.cta-item {
	position: relative;
	display: block;
	margin-bottom: 1rem;
}

.cta-item img {
	display: block;
	width: 100%;
	aspect-ratio: 2/1;

}

.cta-content {
    position: absolute;
    top: 1rem;
    left: 0;
	right: 0;
	background: rgba(255, 255, 255, 0.85);
    margin: 0 2rem;
    padding: .75rem;
}

.cta-content h3 {
	font-size: 1.1rem;
}

.cta-content p {
	font-weight: var(--font-semibold);
	color: var(--dark-font-color);
	margin-top: 0.25rem;
    font-size: .9rem;
    line-height: 1.3;
}

.cta-bg {
    aspect-ratio: 1.5/1;
    background: var(--primary-brand);
}

.event-wrapper h3 {
	font-family: var(--header-font);
	font-weight: var(--font-regular);
}

.event-item {
    display: flex;
    column-gap: .5rem;
    align-items: center;
    background: var(--dark-grey);
    margin-bottom: 1rem;
    padding: .25rem .5rem .25rem .25rem;
    color: var(--light-font-color);
}

.event-date-wrapper {
    background: var(--accent-1);
	font-family: var(--body-font-2);
	aspect-ratio: 1/1;
	width: 20%;
	max-width: 65px;
	display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-item .format-card {
	width: 80%;
}

.format-date-box {
	line-height: 1;
	margin: auto;
    width: fit-content;
}

.format-date-box span {
	display: block;
}

.cta-event {
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.all-events {
	display: block;
	font-weight: var(--font-bold);
	margin-top: .5rem;
}

.event-name {
	font-size: .9rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media all and (min-width: 75em){
	.quicklinks-wrapper {
		padding: 1.5rem 0;
	}
	.cta-item {
		margin-bottom: 0;
	}
	.cta-item img {
		aspect-ratio: 1/1.2;
		max-height: unset;
		/*height: 100%;*/
	}
	.cta-event {
		margin-top: 3rem;
		margin-bottom: 3rem;
	}
	
	.event-wrapper {
		padding-left: 0.5rem;
    	padding-right: 1.5rem;
	}
	.event-wrapper h3 {
		margin-top: 0;
	}
	
	.event-date-wrapper {
		width: 15%;
	}

	.event-item .format-card {
		width: 85%;
	}
}

/* Home News */
.home-news h2 {
	font-family: var(--header-font);
    font-weight: var(--font-regular);
	font-size: 2.625rem;
	margin-bottom: .75rem;
}

.news-wrapper article {
	margin-bottom: 1rem;
}

.news-title {
	font-size: 1.375rem;
	color: var(--dark-font-color);
    text-decoration: underline;
}

.news-description {
	color: var(--dark-font-color);
}

.home-news .btn {
	margin-top: 0;
}

.cta-wrapper .row {
    row-gap: 1.5rem;
}

/* Home Secondary CTAs */
.content-wrapper .secondary-cta,
.content-wrapper.active .secondary-cta{
	padding: 2rem;
	margin-bottom: 0;
}

.cta2-wrapper {
	padding: 0;
}

.cta2-item {
	margin-bottom: 2rem;
}

.cta2-item img {
	aspect-ratio: 580/320;
	width: 100%;
}

.cta2-content {
    margin: 1rem 0;
}

.cta2-content h3 {
    margin: 0 0 1rem;
}


@media all and (min-width: 75em){
	.cta2-wrapper {
		padding-left: 1rem;
		padding-right: 2rem;
	}
	.content-wrapper .secondary-cta,
	.content-wrapper.active .secondary-cta {
		padding: 2rem;;
	}
	.news-wrapper article {
		margin-bottom: 2rem;
	}
	
	.home-news {
		margin-bottom: 3.5rem;
	}
}

/* Facebook Feed */
.facebook {
	padding: 0;
}
.social-title i {
    font-size: 1.5rem;
	color: #385899;
}

.facebook-item {
    background: #fff;
    display: block;
    margin-bottom: 1.2rem;
	padding: 1rem;
	color: var(--dark-font-color);	
	border-radius: 8px;
}

.social-title {
    display: flex;
    column-gap: .5rem;
    margin-bottom: .5rem;
    color: var(--dark-font-color);
    font-weight: var(--font-bold);
    font-size: .875rem;
}

.social-content {
    display: flex;
    column-gap: .75rem;
}

.social-content img {
	display: block;
	aspect-ratio: 1/1;
	width: 40%;
}

.social-quote {
	font-size: .875rem;
}

.card-link {
    background: #fff;
	border-radius: 8px;	
	box-shadow: 1px 3px 40px #00000014;
	color: var(--dark-font-color);
	display: block;
	transition: all .3s ease-in-out;
    height: fit-content;
}


.card-link-title {
    background: var(--primary-brand);
	color: #fff;	
	border-radius: 8px 8px 0 0;
	display: flex;
    justify-content: space-between;
	align-items: center;	
	padding: 1rem;
}

.card-link-title svg {
	width: 26px;
	fill: #A3B9E2;
	opacity: 0.5;
	transition: all .5s ease-in-out;
}

.card-link:hover .card-link-title svg {
	opacity: 1;
}

.card-link-content {
	display: flex;
    column-gap: 1.5rem;
    align-items: center;
    margin: 0 1rem;
}

.card-link-content img {
	width: 75px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.card-link-content p {
	font-size: .875rem;
}

.fb-embed {
    margin-top: 2rem;
    width: 100%;
    max-height: 800px;
}

.fb-page, 
.fb-page span, 
.fb-page span iframe[style] { 
    width: 100% !important; 
}

@media all and (min-width: 75em){
	.facebook {
		padding: 0 1rem;
        max-width: 500px;
	}

    .card-link-title h3 {
        font-size: 1.1rem;
    }
}

/* Side Navigation */
.sidebar {
	font-weight: var(--font-semibold);
    background: var(--light-grey);
	color: var(--dark-font-color);
	padding: 1rem;
	margin-top: 1rem;
}

.sidebar-wrapper a {
	color: var(--dark-font-color);
}
.nav-secondary {
	display: none;
	margin-top: .5rem;
}
.cookie {
    padding-bottom: 0.5rem;
}

.cookie a {
    display: flex;
    align-items: center;
}

.secondary-nav-item.active,
.secondary-nav-item.current {
    font-weight: var(--font-bold);
	border-bottom: 2px solid var(--primary-brand);
    width: fit-content;
}

.secondary-nav-item.current {
	font-size: 1.1rem;
}

.secondary-nav-item {
    margin-bottom: 0.5rem;
	transition: all .3s ease;
}

.secondary-nav-item:last-of-type {
	padding-bottom: 0;
}

.secondary-nav-item.active a {
	color: var(--primary-brand);
}

.cookie:hover a,
.cookie:focus a,
.secondary-nav-item:hover a,
.secondary-nav-item:focus a{
    color: var(--primary-brand);
	filter: none;
}

.nav-secondary-ul {
    margin: 0 0 0 1rem;
}

.current-page {
    display: flex;
    align-items: center;
    gap: 0.25rem;
	cursor: pointer;
}

@media (min-width: 62em){
	.nav-secondary {
		display: block!important;
		margin: unset;
	}
	
	.nav-secondary-ul {
		margin: 0.5rem 0 0 1rem;
	}
	
	.sidebar-wrapper {
		padding-left: 0;
		padding-right: 0;
	}
	.sidebar {
		padding: 3rem 2rem;
		margin-top: 1.5rem;
	}
	.current-page {
		display: none;
	}
	.cookie i {
		font-size: 1rem;
	}
	.cookie a {
		font-size: .8rem;
	}
	
	.side-container {
		margin-right: 2rem;
	}
}

/* Rich Text Template */
.page-header {
    background: var(--primary-brand);
    color: white;
    padding: 2rem 0;
	margin-bottom: 1rem;
}

.page-content-inner {
	margin-top: 1rem;
}

.page-content-inner ul,
.page-content-inner ol {
	list-style: revert;
	padding-left: 1rem;
	line-height: 1.5
}

.page-content-inner .editor-nested-listitem::marker {
    content: none;
}

.editor iframe {
    width: 100%;
    min-height: 300px;
}

@media (min-width: 62em){
	.page-header {
		padding: 2rem 1rem;
	}
	.page-title {
		font-size: 2.5rem;
	}
	.page-content-inner {
		margin-left: 1rem;
		margin-top: 2rem;
	}
	
	.no-side-nav .page-content-inner {
		margin-left: 0;
	}

    .editor iframe {
        min-height: 500px;
    }

}

@media (min-width: 75em){
	.page-header {
		padding: 4.5rem 1rem;
	}
}

/* Collapsible box - rich text editor */
.collapsible-box {
	width: 100%;
	margin-bottom: 1rem;
}

.collapsible-box .material-icons {
	color: var(--primary-brand);
	font-weight: var(--font-bold);
}

.collapsible-box-description { 
	display: none;
	margin: 1rem 0.5rem;
}

.collapsible-box-title {
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    padding: .5rem;
	margin: 0;
	cursor: pointer;
}

.collapsible-box-title i {
	margin-right: .5rem;
}

.collapsible-bottom-icon {
	cursor: pointer;
}

/* Collapsible boxes - rich text dct */
.editor details summary {
    background-color: var(--light-grey);
    display: flex;
    align-items: center;
    padding: 1rem .5rem;
	margin: 0;
	cursor: pointer;
    transition: all .3s ease-in-out;
}

.editor details summary i {
    font-weight: var(--font-bold);
    color: var(--primary-brand);
    margin-right: .5rem;
}

.editor details {
    margin-bottom: 1rem;
    transition: all .3s ease-in-out;
}

.editor div[data-lexical-collapsible-content]{
    padding: 1rem;
}


/* News article, Event article */
.view-all {
	margin-bottom: 1rem;
}

.event-date {
    gap: 0.5rem;
    font-weight: var(--font-semibold);
    color: var(--medium-grey);
}

.ck-editor .event-date {
	margin-bottom: 1.5rem;
}

.news-date {
    color: var(--medium-grey);
    margin-bottom: 0.5rem;
    font-weight: var(--font-medium);
    font-size: .9rem;
}

/* Landing Page Template */
.row.landing {
    row-gap: 1rem;
    flex-wrap: wrap;
	list-style: none;
	padding-left: 0;
	margin-top: 1rem;
}

.landing-page-padding {
	background: var(--light-grey);
	color: var(--primary-brand);
	border-bottom: 5px solid var(--primary-brand);
	min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}


@media all and (min-width: 62em) {
	.landing-page-padding {
		min-height: 160px;
	}
}

/* Contact Template */
.contact-template .contact-wrapper a {
	color: var(--dark-font-color);
}

.contact-template .contact-wrapper > a,
.contact-template .contact-wrapper > div {
	display: block;
	margin-bottom: .5rem;
}

/* General DCT Template */
.featured-img img.bottom {
	object-position: bottom;
}

.featured-img img.top {
	object-position: top;
}

.featured-img img.center, .featured-img img {
	object-position: center;
}

.dct-template .intro-content {
	background: var(--light-grey);
	padding: 1rem 1.5rem;	
	margin-bottom: 2rem;
}

.content-row.border-top {
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid #e3e3e3;
}

.content-row.border-top-bottom {
  padding: 3rem 0;
  margin: 2rem 0;
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}

.content-row.border-bottom {
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e3e3e3;
}

.content-row.border-top > div *:first-child,
.content-row.border-top-bottom > div *:first-child  {
  margin-top: 0;
}

.content-row.border-bottom > div *:last-child,
.content-row.border-top-bottom > div *:last-child {
  margin-bottom: 0;
}

.content-row img {
  display: block;
  width: 100%;
	margin: 1rem auto;
}

.content-row .btn {
  margin-bottom: 1rem;
  display: inline-block;
}

.responsive-video {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  margin-bottom: 1.5rem;
}

.responsive-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.useful-links-wrapper {
  margin-top: 1.3125rem;
  margin-bottom: 5rem;
}

.useful-link {
  line-height: 1;
  margin-top: 2rem;
  text-align: center;
}

.useful-link a {
	display: block;
	padding: 1.5rem 1rem;
	color: var(--light-font-color);
}

.useful-link i {
  display: block;
  font-size: 40px;
  margin-bottom: .5rem;
}

.useful-link span {
	font-size: 1.25rem;
	font-weight: bold;	
}

.useful-link i,
.useful-link span {
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -ms-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.useful-link a:hover i,
.useful-link a:focus i {
  opacity: 0.8;
}

.useful-link a:hover span,
.useful-link a:focus span {
  border-bottom: 1px solid;
}

.simple-links-wrapper h5 {
  margin-bottom: .75rem;
}

.simple-links-wrapper .simple-link {
  margin: 0 0 .5rem;  
}

.simple-links-wrapper .pre-link {
  margin: 1rem 0 0.5rem 0;
}

.documents-section {
    margin-top: 1.3125rem;
    margin-bottom: 5rem;
}

.documents-section ul {
	list-style: none;
	margin: 0;
	padding: 0;
	box-shadow: rgb(149 157 165 / 20%) 0px 8px 24px;
}

.documents-section ul li {
	padding: 0.5rem 1rem;
	margin: 0;
}

.documents-section ul li:nth-child(2n) {
	background: #f5f5f5;
}

.content-boxes .col-xs-12 {
	margin-bottom: 1.5rem;
}

.content-box {
	display: block;
    height: 100%;
	background: var(--light-grey);
	color: var(--dark-font-color);
    padding: 1rem;
    border-bottom: 5px solid var(--primary-brand);
}

.content-box h3 {
	margin-top: 0;
}

.content-box img {
	width: 100%;
	aspect-ratio: 16/9;
}

/* Content Tabs */
.ui-widget.ui-widget-content,.ui-widget-content  {
    border: none; 
	background: transparent;
	font-family: var(--sans-serif-font);
	margin: 0;
}

/* Tab Header */
.ui-widget-header {
	border: none;
	background: transparent;
}

.ui-tabs .ui-tabs-nav {
    padding: 0;
	display: flex;
    flex-wrap: wrap;
    row-gap: .5rem;
	border-bottom: 2px solid var(--primary-brand);
	border-radius: 0;
}

.ui-tabs .ui-tabs-nav li {
    font-weight: 700;
	border: none;
    background: var(--light-grey);
	transition: all .2s ease-in-out;
	margin: 0 .5rem 0 0;
	border-radius: 0;
}

.ui-tabs .ui-tabs-nav li:hover {
	filter: brightness(1.02);
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active {
    margin-bottom: 0;
	padding-bottom: 0;
	background: var(--primary-brand);
	border: none;
}

/* Tab Content */
.ui-tabs .ui-tabs-panel {
    padding: 1rem 0.25rem;
	margin-top: 0;
}

.ui-widget-content a {
    color: var(--primary-brand);
}

.ui-widget-content .btn {
	margin-top: 1rem;
}

.ui-widget-content .btn-primary {
	color: white;
}

.ui-widget-content .btn-link {
	color: var(--accent-1);
}

.tab-item-content {
	padding: 1rem 0;
}

.ui-tabs .ui-tabs-nav .ui-tabs-anchor {
    white-space: pre-wrap;
}

/* DCT - Photo Gallery */
.gallery-item {
	margin-bottom: 1rem;
}
.gallery-item img {
    min-height: unset;
	aspect-ratio: 4/3;
	width: 100%;
}

.pswp__custom-caption {
    text-align: center;
    font-size: 16px;
    color: #fff;
    width: fit-content;
    max-width: 800px;
    padding: .5rem 1rem;
    position: absolute;
    left: 50%;
    bottom: 1rem;
    transform: translateX(-50%);
}

@media (min-width: 62em) and (max-width: 99em) {
	.useful-link span {
		font-size: 0.9rem;
	}
}

.calendar-subscribe {
    margin-bottom: 1.5rem;
}

.btn-subscribe {
    font-size: .9rem;
    cursor: pointer;;
}

.download-cal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/*CM Calendar*/
#calendar {
	font-size: 16px;
}

#calendar a {
	color: var(--dark-font-color);
}

#calendar .fc-daygrid-event-harness a {
	color: var(--primary-brand);
}

#calendar .fc-daygrid-event-harness .fc-h-event {
	background: var(--primary-brand);
	border-color: var(--primary-brand);
}
#calendar .fc-view-harness {
  background: #fff;
  margin-bottom: 2rem;
}

#calendar .fc-col-header {
  margin-bottom: 0;
}

/*Calendar*/
.fc-scrollgrid-sync-table {
	margin-bottom: 0;
}

.fc-col-header-cell-cushion,
.fc-daygrid-day-number {
  color: inherit;
}

.fc-h-event .fc-event-title-container,
.fc-daygrid-dot-event .fc-event-title {
  white-space: normal;
}

.fc-daygrid-dot-event {
  align-items: flex-start!important;
  flex-wrap: wrap;
} 

.fc-daygrid-event-dot {
  margin: 3px 4px!important;
}

.fc-daygrid-block-event .fc-event-time {
  display: none;
}

.fc-daygrid-dot-event .fc-event-title {
  padding: 0;
}

#calendar .fc-daygrid-event-dot {
    border-color: var(--primary-brand);
}

#calendar.fc .fc-list-event-dot {
	background: var(--primary-brand);
	border-color: var(--primary-brand);
}

/* Calendar Filter */	
.calendar-filters-container {
	display: block;
	margin-bottom: 2rem;
	background: var(--light-grey);
	padding: 1.5rem;
}

.calendar-filters-container p {
	margin-top: 0;
}

.calendar-filters-heading h3 {
	margin-top: 0;
	font-size: 1.375rem;
}

.target-calendar-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}

.filter-checkbox-wrapper {
	padding: 0.5rem 1rem;
	border-radius: 5px;
}

.filter-checkbox-wrapper label {
	text-transform: capitalize;
}

.filter-checkbox-wrapper:first-of-type {
	padding-left: 0;
}

/* Calendar Legend */
.filter-checkbox-wrapper.--athletics {
	background: var(--athletics);
	color: white;
}

#calendar .fc-daygrid-event.--athletics .fc-daygrid-event-dot,
#calendar .fc-event.--athletics .fc-list-event-dot,
#calendar .fc-daygrid-event.--athletics {
	border-color: var(--athletics);
	color: var(--athletics);
}

#calendar .fc-daygrid-event.--athletics .fc-event-main{
	background: var(--athletics);
}

#calendar .fc-v-event.--athletics {
	background: var(--athletics);
	border-color: var(--athletics);
}

#calendar .fc-daygrid-event.staff-content .fc-daygrid-event-dot,
#calendar .fc-event.staff-content .fc-list-event-dot,
#calendar .fc-daygrid-event.staff-content {
	border-color: var(--staff);
	color: var(--staff);
}

#calendar .fc-daygrid-event.staff-content .fc-event-main{
	background: var(--staff);
}

#calendar .fc-v-event.staff-content {
	background: var(--staff);
	border-color: var(--staff);
}

.legend-row {
	display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.event-legend {
    display: flex;
    column-gap: 2rem;
    font-size: 16px;
}

.event-legend-item {
    position: relative;
}

.event-legend-item::before {
	content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: absolute;
    left: -1rem;
    top: 50%;
    transform: translateY(-50%);
}

.event-legend-item.public::before {
    background: var(--primary-brand);
}

.event-legend-item.staff::before {
    background: var(--staff);
}

@media all and (max-width: 48em){
	.event-legend {
		display: flex;
		margin: 1rem 0 0;
	}
}


@media(min-width: 75em){
	.mobile-only {
		display: none;
	}

    .download-cal-buttons {
        justify-content: flex-end;
    }
}

/* Google Translate */
.goog-te-gadget .goog-te-combo {
	margin: 0 0 1rem!important;
	padding: 0.75rem;
    border: none;
	border-right: 0.5rem solid #fff;
    font-weight: var(--font-medium);
	width: 100%;
}

.goog-te-gadget,
.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited {
    color: white!important;
}

/* Modal */
/* General Styling */
body.lb-disable-scrolling {
    overflow: hidden;
}

.main-content-wrapper {
	margin: auto;
}

.modal-trigger {
	cursor: pointer;
}

.modal-wrapper {
    display: none;
    position: fixed;
    z-index: 500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    margin: 0!important;
}

.modal-info {
	margin: 0 auto;
    width: 100%;
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 1rem;
	max-height: 90vh;
}

.modal-wrapper .close-icon {
    font-size: 1.5rem;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    cursor: pointer;
	z-index: 100;
}

/* .account-wrapper.public {
	text-align: center;
} */

.account-wrapper,
.services-wrapper,
.translate-wrapper {
    background: rgba(255, 255, 255, 0.8);
    padding: 1rem;
}

.account-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-top: 2rem;
}

.search-wrapper {
    padding: 2.5rem 0;
}

.service-link {
    display: block;
    margin-bottom: 0.5rem;
	color: var(--dark-font-color);
	font-weight: var(--font-medium);
}

.service-link:last-of-type {
    margin-bottom: 0;
}

.account-wrapper a {
	gap: 0.5rem;
    color: white;
    display: flex;
    margin: 0;
}

.translate-text {
    margin-top: 2rem;
}

.search-modal .close-icon {
    color: white;
}

@media (min-width: 62em){
	.modal-info {
		width: 40%;
		top: 30%;
	}

    .account-modal .modal-info {
		width: 60%;
		top: 30%;
	}
}

/* Staff Directory */
.team-wrapper {
	row-gap: 1.5rem;
	margin-top: 1rem;
}
.team-item img {
	width: 100%;
	max-width: 165px;
	display: block;
	margin-bottom: 1rem;
}
.team-item h3,
.team-item h4 {
	color: var(--dark-font-color);
}

.team-item h3 {
	font-size: 1.1rem;
}

.team-item h4 {
	font-weight: var(--font-medium);
}

.team-item a,
.team-item p {
	font-size: .9rem;
}

.team-text > * {
	display: block;
	margin: 0 0 .25rem;
}

@media(min-width: 48em){
	.team-wrapper {
		row-gap: 2rem;
	}
	.team-item {
		display: flex;
		gap: 1.5rem;
	}
	
	.team-item img {
		width: 35%;
	}
	
	.team-text {
		width: calc(65% - 1.5rem)
	}
}

/* Animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: .5s;
    animation-name: fade;
    animation-duration: .5s;
}

/* Homepage News */
.news-title-row {
	flex-wrap: wrap;
	row-gap: .5rem;
	margin-bottom: .75rem;
}

.news-tile .news-item {
    height: 100%;
    background: var(--dark-grey);
}

.news-tile .news-img {
	position: relative;
}
.news-tile .news-item img {
	width:100%;
	display: block;
	aspect-ratio: 4 / 3;
}

.news-tile .news-text {
    background: var(--dark-grey);
    color: white;
	padding: 1rem;
}

.news-tile .news-text h4 {
	margin-bottom: .25rem;
}

.news-publish-date {
	background-color: var(--primary-brand);
	color: white;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: .5rem;
	line-height: 1;
    margin: auto;
    width: fit-content;
}

.news-tile .news-img.no-news-img {
    background: var(--light-grey);
	aspect-ratio: 4/3;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.news-tile .news-img.no-news-img img {
    margin: auto;
	width: 40%;
	aspect-ratio: unset;
    object-fit: contain;
}

/* New archive */
.news-tile .news-img.no-news-img,
.news-tile .news-item img {
    aspect-ratio: 3/2;
}

.news-tile .news-img.no-news-img img {
	aspect-ratio: unset;
}

.news-wrapper.row {
    row-gap: 1.5rem;
}

.news-tile .news-text .card-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Schools Template */
.school-row {
    padding: 1rem 0;
}

.school-logo {
    width: 100px;
    display: block;
    object-fit: contain;
}

.school-row .btn {
    margin-left: auto;
}

.school-row .flex-row {
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 2rem;
}

.school-name {
    font-weight: var(--font-bold);
}

@media(min-width: 48em){
    .school-row .btn {
        margin-top: 0;
    }

    .school-logo {
        width: 7rem;
    }
}

/* DIGEST */

.digest .view-all {
	margin-bottom: 1.5rem;
}

.digest h3 {
	margin-top: 0;
	margin-bottom: 0.5rem;
}

.digest .news-date {
	margin-bottom: 1rem;
}

.digest-news-wrapper h4, .digest-event-wrapper h4 {
	margin-bottom: 1rem;
}

.digest-news-wrapper .news-tile .news-item {
	height: auto;
	margin-bottom: 1rem;
}

.digest-related-wrapper {
	background-color: var(--light-grey);
}

.digest-related-wrapper .card-link-title {
	border-radius: 0;
}

.digest-related-wrapper ul {
	margin-top: 1rem;
	list-style: none;
}

/* DIGEST ARCHIVE */

.digest.archive .editor {
	margin-bottom: 2rem;
}

.digest.archive h3 {
	margin-bottom: 3rem;
}

.digest.archive .news-publish-date {
	bottom: auto;
	top: -10%;
    left: 10%;
}

.digest.archive .news-wrapper.row {
	row-gap: 2rem;
}

.digest.archive .news-tile {
	position: relative;
}

.digest.archive .spotlight .news-item {
	position: relative;
}

.digest.archive .spotlight .news-publish-date {
    left: 5%;
	background-color: var(--accent-1);
}

.digest.archive .spotlight .btn-link-primary {
	text-align: right;
	position: relative;
}

.digest.archive .news-tile .news-text {
	padding: 1.5rem 1.5rem 2rem 1.5rem;
}

.digest.archive .news-tile .news-text h4 {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}

@media(min-width: 48em){
	.digest.archive .spotlight-img {
		padding-right: 0;
	}

	.digest.archive .spotlight .news-tile {
		padding-left: 0;
		padding-right: 0;
	}

	.digest.archive .spotlight .news-item, .digest.archive .spotlight .btn-link-primary {
		right: 10%;
		top: 50%;
	}
}

