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

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

.clearfix:after {
  clear: both;
}

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

.aria-hide {
  display: none;
}

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

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

/* Variables */
:root {
    --primary: #3CABE4;
    --primary90: #3CABE4E6; 
    --primary80: #3CABE4CC;
    --secondary: #494084;
    --secondary90: #494084E6; 
    --secondary80: #494084CC;
    --secondary70: #494084B3;
	--dark-font-color: #2E2925;
	--light-font-color: #fff;
	--dark-grey: #666666;
	--medium-grey: #F0F0F0;
	--light-grey: #F5F5F5; 
	--black: #000000;

	--body-font: "Biryani", sans-serif;
    --heading-font: "Nunito", sans-serif;
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;
}

/* Background colours */
.bg-primary {
    background-color: var(--primary);
    color: white;
}

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

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

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

@media (min-width: 2560px){
	html {
	  font-size: 25px;
	}
}

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.4;
  color: var(--dark-font-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.wrapper {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: var(--font-semibold);
    color: var(--secondary);
}

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


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: 1.2rem;
  margin-top: 1.3125rem;
  margin-bottom: 0.75rem;
}

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

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

    .editor details summary h3 {
        margin: 0;
    }
}

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

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

img {
	height: auto;
	max-width: 100%;	
	object-fit: cover;
	display: block;
}	

.rich-text img {
    max-width: 100%;
}

a {
  text-decoration: none;
}

blockquote {
	background: var(--light-grey);
    border-left: 5px solid var(--primary-color-2);
	padding: 2rem; 
	margin:2.5rem;
    position: relative;
    font-weight: 300;
}

blockquote p:last-of-type {
	margin-bottom: 0;
}

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

svg {
	margin-top: -1px;
}

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

section {
	margin-bottom: 2rem;
}

figcaption {
    font-weight: var(--font-medium);
    font-size: .85rem;
    color: var(--dark-grey);
    text-align: left;
}

figure {
	margin-left: 0;
	margin-right: 0;
}

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

.no-padding {
  padding: 0;
}

.no-margin {
	margin: 0;
}

.mt0 {
	margin-top: 0!important;
}

.mb0 {
	margin-bottom: 0!important;
}

.auto-margin {
	margin: auto;
}

.flex-row {
	display: flex;
	align-items: center;
	gap: .5rem;
}

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

.flex-column-center {
	display: flex;
	justify-content: center;
	flex-direction: column;
}

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

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

.content {
	width: 100%;
}

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

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

.align-right {
	margin-left: auto;
}

.text-center {
	text-align: center;
}

.row {
    row-gap: 2rem;
}

.hidden {
    display: none;
}

/* Layout */
.content-container,
.container.pad-side {
	padding: 0 1rem;
}

.side-container {
	padding: 0;
}

.container.pad-side {
	margin: 0 1rem;
}

@media all and (min-width: 48em){
	.content-container,
	.container.pad-side {
		padding: 0 5%;
		width: auto;
	}
}

@media all and (min-width: 62em){
	.content-container,
	.container.pad-side{
		padding: 0 10%;
	}

    .side-container {
		padding-left: 0;
        padding-right: 1rem;
	}
}

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

.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(--accent-1)
}

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

/* show and hide on different screen sizes */
.mobile-only {
	display: block;
}

.desktop-only {
	display: none;
}

@media all and (min-width: 62em){
	.desktop-only {
		display: block;
	}
	.mobile-only {
		display: none;
	}
}

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

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

.btn-transparent {
    display: block;
    padding: 1rem 1.25rem .65rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: var(--font-semibold);
    font-size: .9rem;
}

.btn-primary {
    display: block;
    width: fit-content;
    padding: .75rem 1.25rem .55rem;
    background: var(--primary);
    color: white;
    font-weight: var(--font-semibold);
    font-size: .9rem;
}

.btn-link::after {
    display: inline-block;
    font-family: "Font Awesome 5 Free";
    transform: rotate(-45deg);
    transition: all .3s ease;
    margin-left: 8px;
    font-weight: 900;
    content: "\f061";
}

.btn-link:hover::after,
.btn-link:focus::after {
    transform: rotate(0);
}

.btn-arrow {
    background-color: var(--primary);
    color: white;
    aspect-ratio: 1 / 1;
    width: 2.5rem;
    height: 2.5rem;
    text-align: center;
}

.btn-arrow i {
    transform: rotate(-45deg);
    transition: all .3s ease;
}

@media (min-width: 99em){
	.btn {
		font-size: .9rem;
	}
}

/* Google Translate*/
#google_translate_element img {
	display: inline-block;
}

.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%;
}

/* 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"], input[type="search"],
textarea {
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #e4e4e4;
    transition: 0.5s;
	padding: .5rem;
}

textarea {
	min-height: 200px;
}

input[type="submit"] {
    background: var(--primary);
    color: white;
    border: 0;
    font-size: .9rem;
    font-weight: var(--font-semibold);
    cursor: pointer;
    padding: .75rem 1.25rem .55rem;
    -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;
}

.input-field {
	margin-bottom: 1rem;
}

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

.input-buttons {
    margin-top: 1rem;
    display: block;
	width: fit-content;	
	color: white;
    background: var(--primary);
}

.contact-form {
    margin-bottom: 2rem;
}

/* Alerts */
.banner-alert-wrapper {
	top: var(--main-top-xs);
	font-size: 1rem;
}

@media (min-width: 75em){
	.banner-alert-wrapper {
		top: var(--main-top-lg);
	}
}

/* Table Styles */
.editor-table-wrapper {
	width: 100%;
	overflow-x: auto;
}

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

.table thead th a {
	color: white;
}

.table th a:hover,
.table th a:focus,
.editor-table th a:hover,
.editor-table th a:focus{
	text-decoration: underline;
}

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

.table table,
.editor-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,
.editor-table td,
.editor-table th {
  padding: 10px 15px;
	width: auto!important;
}

.table table td,
.editor-table td {
  border-right: 1px solid #F7F6F4;
	width: auto!important;
}

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

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

.table table thead th > * {
  color: #ffffff;
}

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

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

.table h3,
.editor-table h3 {
	margin: .5rem 0;
}

.table img,
.editor-table img {
	width: auto;
}

.editor-tableCell {
	border-color: var(--medium-grey)!important;
}
/* Content Tabs */
.ui-widget.ui-widget-content {
    border: none;
}

/* 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);
	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);
	border: none;
}

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

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

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

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

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

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

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

/* Responsive Iframe for Embed Videos */
.responsive-iframe {
	position: relative;
	width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.embedly-card-hug {
	position: relative!important;
    padding-bottom: 56.25%!important;
    height: 0;
    max-width: 100%!important;
}

.embedly-card-hug iframe,
.responsive-iframe iframe {
	width: 100%;
    height: 100%;
    border: none;
    position: absolute!important;
}

/* Search bar */
.search-bar-wrapper label {
	display: none;
}

.search-button {
    appearance: none;
    border: none;
    background: none;
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
}

.input-field input[type="text"].search-box {
    background: var(--light-grey);
	padding: 0.75rem;
	width: 100%;
	font-size: .8rem;
	margin-bottom: 0;
    border: none;
}

.input-field input[type="text"].search-box:focus-visible {
    outline: none;
}

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

.search-api-form label {
	display: none;
}

.search-api-form .input-field {
    margin-bottom: 0;
}

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

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

.search-row {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    width: 100%;
    margin-bottom: 0;
}

.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;
    align-items: baseline;
}

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

.search-bar-wrapper .search-filters label {
	display: block;
    font-size: .85rem;
    color: var(--dark-font-color);
}

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

@media (max-width: 991px) {
    .search-bar-wrapper.desktop-only {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 2rem 1rem;
        background: var(--light-grey);
    }

    .input-field input[type="text"].search-box {
        background-color: white;
    }

    .search-filters {
        position: static;
        background: white;
    }
}

/* Header - Top Nav */
.top-nav {
    color: #ffffff;
    font-family: var(--heading-font);
    font-size: .9rem;
    position: relative;
}

.top-nav a {
    color: white;
}

.contact-wrapper {
    background-color: var(--primary);
    padding: .5rem 1rem;
    flex-grow: 1;
    height: 2.5rem;
    display: flex;
}

.waffle-wrapper {
    background-color: var(--primary90);
}

.translate-wrapper {
    background-color: var(--primary80);
}

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

.search-bar-wrapper.desktop-only {
    width: 100%;
}

.search-wrapper i {
    color: var(--dark-font-color);
}

.nav-app-link {
    padding: .5rem;
    height: 2.5rem;
}

.top-nav .contact-info,
.top-nav .nav-app {
    gap: 0;
}

.nav-app-trigger {
    cursor: pointer;
    justify-content: center;
}

.nav-app-content {
    display: none;
    background: var(--light-grey);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 90;
    width: 100%;
    padding: 1rem;
}

.nav-app-content a {
    color: var(--primary);
}

.useful-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

@media(min-width: 62em) {
    .top-nav .contact-info {
        display: flex;
        background-color: var(--primary);
        flex-grow: 1;
        padding: .5rem .5rem .5rem 2rem;
        height: 2.5rem;
        gap: 1rem;
    }

    .mobile-only.contact-wrapper {
        display: none;
    }

    .nav-app-link.search-wrapper {
        padding: 0;
        width: 12rem;
    }

    .nav-app-trigger {
        width: 8rem;
    }

    .translate-wrapper {
        width: 7rem;
    }

    .nav-app-content {
        top: 100%;
        left: auto;
        width: fit-content;
    }

    .nav-app-content.links {
        right: 19rem;
        min-width: 12rem;
    }

    .nav-app-content.translate {
        right: 12rem;
    }

    .search-bar-wrapper.desktop-only {
        display: block!important;
    }
}

/* Header - Logo, Main Navigation */
.site-logo img {
    max-width: 9rem;
}

.logo-row {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.menu-trigger {
    font-size: 1.5rem;
}

.main-nav-ul {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    color: var(--secondary);
    margin-bottom: 0;
}

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

.add-icon {
    font-size: .85rem;
}

.main-nav {
    display: none;
}

.main-nav a {
    color: var(--dark-font-color);
    font-weight: var(--font-semibold);
    font-family: var(--heading-font);
}

.main-nav a:hover,
.main-nav a:hover ~ i {
    color: var(--dark-font-color);
}

.main-nav .blue > a {
    color: var(--primary);
} 

@media (max-width: 1199px) {
    .main-nav {
        position: absolute;
        background: white;
        width: 100%;
        min-height: 100dvh;
        left: 0;
        right: 0;
        top: 0;
        z-index: 100;
    }

    .main-nav-ul {
        flex-direction: column;
        padding: 3rem 1.5rem 1.5rem;
        gap: 1rem;
    }

    .menu-close {
        position: absolute;
        right: 1rem;
        top: 1rem;
        color: var(--secondary);
        font-size: 1.5rem;
    }

    .nav-link {
        justify-content: space-between;
    }

    .main-dropdown.show .main-dropdown-menu {
        display: block;
        background: var(--light-grey);
        padding: 1rem;
        margin-top: .5rem;
    }
}

@media (min-width: 62em) {
    .logo-row {
        padding: 1rem 2rem;
    }
}

@media (min-width: 75em) {
    .logo-row {
        padding: 0 2rem;
    }
    .site-logo img {
        max-width: 11rem;
        max-height: 5.5rem;
        padding: 0.75rem 0;
    }
    .add-icon {
        font-size: .75rem;
    }
    .menu-trigger, .menu-close {
        display: none;
    }

    .main-nav {
        display: block!important;
    }

    .main-dropdown, .no-dropdown {
        position: relative;
        padding: 1.75rem 0;
    }

    .main-dropdown-menu {
        display: block;
        transform: scaleY(0);
        transition: all .3s ease;
        transform-origin: top;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 80;
        background: var(--light-grey);
        padding: 1rem;
        min-width: 300px;
        opacity: 0;
    }

    .main-nav-ul li:last-of-type .main-dropdown-menu,
    .main-nav-ul li:nth-last-of-type(2) .main-dropdown-menu {
        left: auto;
        right: 0;
    }

    .main-dropdown:hover .main-dropdown-menu {
        transform: scaleY(1);
        opacity: 1;
    }

    .nav-li {
        margin-bottom: .5rem;
    }

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

    .main-nav a {
        font-size: .9rem;
    }

    header * {
        font-size: .9rem;
    }

    header .material-icons {
        font-size: 1.2rem;
    }
}

/* Footer */
footer {
    display: flex;
    flex-wrap: wrap;
    color: white;
    text-align: center;
    font-family: var(--heading-font);
    font-weight: var(--font-medium);
}

footer a, footer h1, footer h3 {
    color: white;
}

footer h1 {
    margin-bottom: 1rem;
}

.footer-logo {
    max-width: 80px;
    margin: 0 auto 1rem;
}

footer .large-col,
footer .small-col {
    width: 100%;
}

footer .large-col {
    background-color: var(--primary);
}

footer .large-col > .flex-row {
    flex-wrap: wrap;
    padding: 1rem;
    align-items: flex-start;
}

.site-info {
    padding: 0;
}

.site-info.address {
    margin-bottom: .5rem;
}

.contact-line {
    margin-bottom: .5rem;
    display: block;
}

footer .small-col {
    display: flex;
    flex-wrap: wrap;
}

.footer-col {
    width: 100%;
}

footer .small-col .quicklink {
    width: 50%;
}

footer .small-col .quicklink:nth-of-type(1) {
    background-color: var(--secondary);
}

footer .small-col .quicklink:nth-of-type(2) {
    background-color: var(--secondary90);
}

address {
    font-style: normal;
}

.social-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.social-link {
    text-align: center;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    padding: 8px;
    width: 40px;
    height: 40px;
}

footer .row {
    row-gap: 1rem;
}

.copyright-wrapper {
    width: 100%;
    background: var(--dark-font-color);
    padding: 1rem;
    display: flex;
    row-gap: .5rem;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: .9rem;
    font-family: var(--heading-font);
    text-align: center;
}

.copyright-wrapper > div {
    width: 100%;
}

.copyright-wrapper a {
    color: var(--light-grey);
}

@media (min-width: 62em) {
    footer {
        text-align: left;
    }

    footer .large-col {
        width: calc(1520/1920 * 100%);
    }

    footer .large-col > .flex-row {
       gap: 2rem;
       flex-wrap: nowrap;
       padding: 3rem 2rem 3rem;
    }

    .footer-col-1 {
        width: fit-content;
        max-width: 6rem;
    }

    .footer-col-2 {
       flex-grow: 1;
    }

    footer .small-col {
       width: calc(400/1920 * 100%);
    }

    .footer-logo {
        max-width: 6rem;
    }

    footer .small-col .quicklink {
        width: 100%;
    }

    .social-wrapper {
        justify-content: flex-start;
        margin-bottom: 0;
    }

    .social-link i {
        font-size: 20px;
    }

    .copyright-wrapper {
        padding: 1rem 2rem;
        text-align: left;
    }

    .copyright-wrapper > div {
        width: 50%;
    }

    .copyright-wrapper > div:last-of-type {
        text-align: right;
    }
}

/* Home - Banner */
.banner-section {
    display: flex;
    flex-wrap: wrap;
}

.spotlight-wrapper, .quicklink-wrapper {
    width: 100%;
}

.spotlight-wrapper h2 {
    color: white;
}

.quicklink-wrapper {
    display: flex;
    flex-wrap: wrap;
    order: -1;
}

.quicklink-wrapper h3 {
    color: white;
}

.spotlight-img {
    aspect-ratio: 320/383;
    max-height: 383px;
    width: 100%;
}

.spotlight-text {
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    width: 100%;
    background: rgba(46, 41, 37, 0.2);
    padding: 1rem;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    height: 30%;
}

.spotlight-text .btn-link {
    color: white;
}

.quicklink {
    background-color: var(--primary);
    color: white;
    aspect-ratio: 2/1;
    width: 50%;
    text-align: center;
    font-weight: var(--font-medium);
}

.quicklink:nth-of-type(1) {background-color: var(--primary);}
.quicklink:nth-of-type(2) {background-color: var(--secondary);}
.quicklink:nth-of-type(3) {background-color: var(--primary90);}
.quicklink:nth-of-type(4) {background-color: var(--secondary90);}
.quicklink:nth-of-type(5) {background-color: var(--primary80);}
.quicklink:nth-of-type(6) {background-color: var(--secondary80);}

.quicklink-title {
    font-size: 1.2rem;
    font-weight: var(--font-medium);
}
.quicklink .quicklink-desc {
    opacity: 0;
    transform: scaleY(0);
    height: 0;
    transition: all .2s ease-in-out;
}

.quicklink:hover .quicklink-desc {
    opacity: 1;
    transform: scaleY(1);
    height: auto;
    margin-top: .5rem;
}

@starting-style {
    .quicklink:hover .quicklink-desc {
        opacity: 0
    }
}

@media (max-width: 991px) {
    .spotlight-text h2 {
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        font-size: 1.3rem;
        margin-bottom: .5rem;
    }

    .spotlight-text .btn-link {
        font-size: .9rem;
    }
}
@media (min-width: 62em) {
    .spotlight-wrapper {
        width: calc((1120 / 1920) * 100%);
    }

    .spotlight-text {
        width: 45%;
        height: 100%;
        padding: 1rem 2rem;
    }

    .spotlight-img {
        aspect-ratio: 1120/600;
        max-height: unset;
    }

    .quicklink-wrapper {
        width: calc((800 / 1920) * 100%);
        order: 2;
    }
}

@media (min-width: 62em) and (max-width: 75em) {
    .spotlight-text {
        padding: 1rem;
    }

    .spotlight-wrapper h2 {
        font-size: 1.2rem;
        margin-bottom: .25rem;
    }

    .spotlight-wrapper p {
        font-size: .9rem;
        margin-bottom: .25rem;
    }

    .spotlight-text .btn-link {
        font-size: .9rem;
    }
}

@media (min-width: 75em) {
    .quicklink-title {
        font-size: 1.375rem;
    }
}

/* Swiper Navigation Buttons */
.spotlight-button-prev,
.spotlight-button-next {
    background-color: var(--primary);
    padding: .5rem;
    width: 2.75rem;
    height: 2.75rem;
}

.spotlight-button-prev:after,
.spotlight-button-next:after {
    color: white;
    font-size: .9rem;
}

.spotlight-button-prev {
    background-color: var(--primary80);
    transform: unset;
    bottom: 30%;
    right: 2.75rem;
    top: unset;
    left: unset;
}

.spotlight-button-next {
    transform: unset;
    bottom: 30%;
    right: 0;
    top: unset;
    left: unset;
}

.spotlight-pagination {
    display: none;
}

@media (min-width: 62em) {
    .spotlight-button-prev {
        bottom: 0;
        right: unset;
        top: unset;
        left: 45%;
    }

    .spotlight-button-next {
        bottom: 0;
        right: unset;
        top: unset;
        left: calc(45% + 2.75rem);
    }

    .swiper-pagination-bullets.swiper-pagination-horizontal.spotlight-pagination {
        width: 11rem;
        margin-left: 3rem;
        display: flex;
        align-items: center;
        margin-bottom: 2rem;
    }

    .spotlight-pagination .swiper-pagination-bullet {
        border-radius: 0;
        width: calc(11rem / 2);
        height: 6px;
        margin: 0!important;
        background: white;
        opacity: 1;
    }

    .spotlight-pagination .swiper-pagination-bullet-active {
        background-color: var(--primary);
    }

    .spotlight-pagination .swiper-pagination-bullet:has(~.swiper-pagination-bullet-active) {
        background-color: var(--primary);
    }

    .slide-index {
        display: none;
        color: white;
        position: absolute;
        top: 65%;
        transform: translateY(-50%);
    }

    .swiper-pagination-bullet:first-of-type .slide-index {
        display: inline-block;
        left: -1rem;
    }

    .swiper-pagination-bullet:last-of-type .slide-index {
        display: inline-block;
        right: -1rem;
        left: unset;
    }
}

@media (min-width:62em) and (max-width:75em) {
    .swiper-pagination-bullets.swiper-pagination-horizontal.spotlight-pagination {
        margin-left: 2rem;
        margin-bottom: 1rem;
    }
}

/* Home - News */
.title-row {
    margin-bottom: 1rem;
}
.news-link {
    color: var(--dark-font-color);
}
.news-card {
    background: var(--light-grey);
    position: relative;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.news-text {
    padding: 3rem 1rem;
}

.publish-date {
    font-weight: var(--font-semibold);
    margin: 1.5rem 0;
}

.card-description {
    line-height: 1.6;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.news-card.has-img .news-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46, 41, 37, 0.2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    color: white;
    padding: 1rem;
}

.home-news .row {
    row-gap: 1rem;
}

.news-card.has-img .news-text h3 {
    color: white;
}

.news-card.has-img .publish-date {
    margin-bottom: 0;
}

.news-card img {
    aspect-ratio: 4/3;
    width: 100%;
}

.news-card .btn-arrow {
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 0;
}

.news-card:hover .btn-arrow i,
.news-card:focus .btn-arrow i{
    transform: rotate(0);
}

.all-news.mobile-only {
    text-align: right;
    margin-top: 1rem;
}

@media (min-width: 75em) and (max-width: 99em) {
    .card-description {
        -webkit-line-clamp: 7;
    }

    .news-card {
        font-size: 90%;
    }

    .news-card h3 {
        font-size: 1.2rem;
    }
}

@media (min-width: 75em) {
    .news-link {
        padding: 0 .5rem;
    }
    
    .home .news-link:first-of-type {
        padding-left: 1rem;
    }

    .home .news-link:last-of-type {
        padding-right: 1rem;
    }

    .news-card {
        aspect-ratio: 2/3;
    }

    .news-card img {
        aspect-ratio: 2/3;
        width: 100%;
    }
}

/* Home - CTA1 */
.cta1 {
    position: relative;
}
.cta1-img img {
    width: 100%;
    aspect-ratio: 3/4;
    object-position: 25%;
}

.cta1-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46, 41, 37, 0.2);
    color: white;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    padding: 1rem;
}

.cta1-text a {
    color: white;
}

.cta1-text p {
    line-height: 1.6;
}

.cta1-text .btn-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
}

.cta1-text h2 {
    color: white;
}

.cta1-buttons {
    display: none;
}

@media (min-width: 768px) {
    .cta1-img img {
        aspect-ratio: 1.8 / 1;
        object-position: center;
    }

    .cta1-text {
        left: unset;
        width: 58%;
        height: 100%;
        padding: 2rem;
    }

    .cta1-text .btn-arrow {
        display: none;
    }

    .cta1-buttons {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

@media (min-width: 75em) {
    .cta1-img img {
        aspect-ratio: 3 / 1;
    }
    .cta1-buttons .btn-transparent {
        padding: 1.25rem 1.25rem 1rem;
        font-size: 1rem;
    }

    .cta1-buttons {
        gap: 1.25rem;
    }

    .cta1-text p {
        margin-bottom: 1.25rem;
    }

    .cta1-text {
        padding: 2rem 3rem;
    }
}

@media (min-width: 99em) {
    .cta1-buttons .btn-transparent {
        padding: 1.75rem 2rem 1.5rem;
        font-size: 1.1rem;
    }

    .cta1-buttons {
        gap: 2rem;
    }

    .cta1-text p {
        margin-bottom: 3rem;
    }
}

/* Home - Events */
.event-item {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--dark-font-color);
    background: var(--light-grey);
    font-family: var(--heading-font);
    font-weight: var(--font-semibold);
    margin-bottom: 20px;
	height: 100%;
}

.event-item .btn-arrow {
    position: absolute;
    z-index: 10;
    bottom: 0;
    right: 0;
}

.event-item:hover .btn-arrow i,
.event-item:focus .btn-arrow i{
    transform: rotate(0);
}

.event-date-wrapper {
    position: relative;
    text-align: center;
    padding: 0 .8px;
    line-height: 1.4;
    width: 90px;
    height: 100%;
    aspect-ratio: 1 / 1;
}

.event-date-wrapper::after {
    content:  "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.5px;
    height: 90%;
    background-color: rgba(46, 41, 37, 0.20);
    transform: translateY(-50%);
}

.event-date-wrapper .month {
	font-size: 20px;
}

.event-date-wrapper .day {
    font-size: 36px;
    line-height: 1.2;
}

.event-name {
    padding: 0 24px;
	border-left: none;
	width: calc(100% - 110px);
	height: 100%;
}

.event-name .card-description {
    font-size: 20px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
    color: var(--secondary)
}

.event-time {
    font-size: 14px;
    font-weight: var(--font-medium);
    margin-top: 3px;
}

.events-col {
    order: -1;
}

.all-events.mobile-only {
    text-align: right;
    margin-top: 1rem;
}

@media (min-width: 62em) {
    .events-col {
        order: 2;
    }

    .event-date-wrapper {
        width: 120px;
    }

    .event-name {
        padding: 0 24px;
        width: calc(100% - 140px);
    }

    .event-time {
        font-size: 16px;
        margin-top: 6px;
    }

    .event-date-wrapper .month {
        font-size: 26px;
    }

    .event-date-wrapper .day {
        font-size: 40px;
    }

    .event-name .card-description {
        font-size: 24px;
    }
}

/* Home - Social Media Tabs */
.social-col h2 {
    margin-bottom: 1rem;
}
#social-tabs {
    font-family: var(--body-font);
    border: none;
    border-radius: 0;
    padding: 0;
}
#social-tabs .ui-tabs .ui-tabs-panel {
    padding: 1rem 0.25rem;
	margin-top: 0;
}

#social-tabs .ui-widget-content a {
    color: var(--primary);
}

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

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

#social-tabs .social-tab {
    background-color: white;
    border: 20px solid var(--secondary);
    border-radius: 0;
}

#social-tabs .tab-li[aria-controls="social-tab-1"] {
    background: var(--secondary);
}

#social-tabs .tab-li[aria-controls="social-tab-2"] {
    background: var(--secondary90);
}

#social-tabs .tab-li[aria-controls="social-tab-3"] {
    background: var(--secondary80);
}

#social-tabs .tab-li[aria-controls="social-tab-4"] {
    background: var(--secondary70);
}

#social-tabs #social-tab-1[aria-hidden="false"] {
    border-color: var(--secondary);
}

#social-tabs #social-tab-2[aria-hidden="false"] {
    border-color: var(--secondary90);
}

#social-tabs #social-tab-3[aria-hidden="false"] {
    border-color: var(--secondary80);
}

#social-tabs #social-tab-4[aria-hidden="false"] {
    border-color: var(--secondary70);
}

#social-tabs .tab-li {
    margin: 0;
    width: 25%;
    flex-grow: 1;
}

#social-tabs .tab-trigger {
    color: white;
    padding: 35px 35px 30px;
    font-weight: var(--font-semibold);
    width: 100%;
    text-align: center;
    font-size: 18px;
}

#social-tabs .ui-tabs-nav {
    border: none;
}

#social-tabs .ui-tabs-panel {
    padding: 0;
}

.tiktok-embed {
    margin: 0!important;
}

@media (max-width: 991px) {
    .tab-trigger span {
        display: none;
    }

    #social-tabs .tab-trigger {
        padding: 1rem;
    }

    .tab-trigger i {
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        color: var(--secondary70);
        padding: .5rem;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        font-size: 1.1rem;
        margin: auto;
    }

    .tab-li[aria-controls="social-tab-1"] .tab-trigger i {
        color: var(--secondary);
    }
    .tab-li[aria-controls="social-tab-2"] .tab-trigger i {
        color: var(--secondary90);
    }
    .tab-li[aria-controls="social-tab-3"] .tab-trigger i {
        color: var(--secondary80);
    }

    .tab-li[aria-controls="social-tab-4"] .tab-trigger i {
        color: var(--secondary70);
    }
}

@media (min-width: 62em) {
    .tab-trigger i {
        display: none;
    }

    .social-col, .events-col {
        padding: 0 10px;
    }

    #social-tabs .tab-trigger {
        padding: 35px 16px 30px;
        font-size: 16px;
    }
}

@media(min-width:75em){
    #social-tabs .tab-trigger {
        padding: 35px 35px 30px;
        font-size: 18px;
    }
}

/* Home - CTA 2 */
.cta2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.cta2-item {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}

.cta2-item img {
    width: 100%;
    aspect-ratio: 1.6/1;
}

.cta2-item .btn-arrow {
    position: absolute;
    bottom: 0;
    right: 0;
}

.cta2-item:hover .btn-arrow i,
.cta2-item:focus .btn-arrow i {
    transform: rotate(0);
}

.cta2-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46, 41, 37, 0.2);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    color: white;
    padding: 1rem;
}

.cta2-text h3 {
    color: white;
    font-weight: var(--font-medium);
    width: calc(100% - 2.5rem);
}

@media (min-width: 62em) {
    .cta2-item {
        flex-grow: 1;
        width: calc(100% / 3);
    }
}

/* Side Navigation */
.sidebar {
	font-weight: var(--font-medium);
    background: var(--primary);
	color: white;
	padding: 1rem;
	margin-top: 1rem;
    font-family: var(--heading-font);
    font-weight: var(--font-semibold);
}

.sidebar-wrapper a {
	color: white;
}
.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);
}

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

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

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

.secondary-nav-item.active a {
	color: var(--light-grey);
}

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

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

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

@media (min-width: 62em){
	.nav-secondary {
		display: block!important;
		margin: unset;
	}
	.sidebar {
		padding: 3rem 2rem;
		margin-top: 0;
	}
	.current-page {
		display: none;
	}
	.cookie i {
		font-size: 1rem;
	}
	.cookie a {
		font-size: .9rem;
	}
}

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

.collapsible-box .material-icons {
	color: var(--secondary);
	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(--secondary);
    margin-right: .5rem;
}

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

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


/* Subpage */
.page-header {
    background-color: var(--secondary);
    color: white;
    text-align: center;
    aspect-ratio: 1920/300;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.page-header h1 {
    color: white;
}

.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;
}

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

.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);
}

.formatted-content {
    margin-bottom: 2rem;
}

.formatted-content .img-box-wrapper {
    height: 100%;
}

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

/* Structured RTE */
.side-container .side-padding {
    padding-left: 1rem;
    padding-right: 1rem;
}

.page-template .editor {
    margin-bottom: 2rem;
}

.page-gallery-row {
    display: flex;
    flex-wrap: wrap;
}

.page-gallery-row  .image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
}

.page-gallery-row  .image-wrapper img {
    display: block;
    width: 100%;
    aspect-ratio: 1/1;
}

.img-box-col {
   margin-bottom: 2rem;
}

.img-box-wrapper {
    display: block;
}

.img-box-wrapper img {
    width: 100%;
    aspect-ratio: 3/2;
}
/* Staff Directory Page Image */
.directory-group .img-box-wrapper img {
    aspect-ratio: 1.5/2;
}
/**/
.img-box-wrapper {
    background: var(--light-grey);
    border: 1.5px solid var(--light-grey);
}

.img-box-wrapper .box-text {
    padding: 1.5rem;
}

.img-box-wrapper p {
    margin-bottom: .5rem;
}

.stats-wrapper {
    background: var(--light-grey);
    margin-bottom: 2rem;
    padding-top: .5rem;
}

.stats-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .5rem 1rem;
}

.stats-row:nth-of-type(odd) .stats-number {
    color: var(--primary);
}

.stats-row:nth-of-type(even) .stats-number {
    color: var(--secondary);
    
}

.stats-number {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    width: 20%;
    text-align: center;
}

.stats-text {
    width: calc(80% - 1rem);
}

@media (max-width: 991px) {
    .page-template > .row {
        margin: 0;
    }

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

@media (min-width: 62em) {
    .page-content-inner {
        margin-top: 2rem;
    }

    .side-container .side-padding {
        padding-right: 7.5%;
    }

    .has-side-nav .page-gallery {
       width: calc(100vw - 16px);
       max-width: 2560px;
       margin-left: -25vw;
       overflow-x: hidden;
    }

    .no-side-nav .page-gallery {
        width: calc(100vw - 16px);
        max-width: 2560px;
        margin-left: 50%;
        transform: translateX(-50%);
        overflow-x: hidden;
    }

    .page-gallery-row {
        flex-wrap: nowrap;
    }

    .page-gallery-row  .image-wrapper {
        width: calc(100vw /4);
        max-width: 640px;
        flex-grow: 1;
        overflow-x: hidden;
    }

    .stats-number {
        font-size: 2rem;
        width: 15%;
    }

    .stats-text {
        width: calc(85% - 1rem);
    }

}

@media (min-width: 75em) {
    .stats-number {
        font-size: 3rem;
    }
}

/* News, Event Article */
.recent-item {
    margin-bottom: .75rem;
    display: block;
    background: var(--light-grey);
    padding: .5rem 1rem;
}

.recent-item h4 {
    font-size: 1rem;
}

.recent-wrapper {
    margin-bottom: 2rem;
}

.back-link {
    margin-bottom: 1rem;
    display: block;
}

@media (min-width: 62em) {
    .recent-wrapper {
        margin-top: 2rem;
    }
}

/* News Archive */
.news-archive .news-card,
.news-archive .news-card img {
    aspect-ratio: 1/1;
}

.news-archive .card-description {
    -webkit-line-clamp: 3;
}

/* Staff Directory */
.section-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.directory-group {
    margin-bottom: 2rem;
}

.directory-group h2 {
    margin-bottom: .75rem;
}
.img-box-wrapper.directory .box-text *:not(h3) {
    font-size: .9rem;
    color: var(--dark-font-color);
    margin-bottom: 5px;
    display: block;
}

.img-box-wrapper.directory .box-text .card-text {
    margin-bottom: 1rem;
}

.img-box-wrapper.directory{
    height: 100%;
}

.img-box-wrapper.directory .box-text{
    padding: 1rem;
}

.img-box-wrapper.directory a {
    word-wrap: break-word;
}

p.editor-paragraph:has(+ .editor-list-ul) {
  margin-bottom: .5rem;
}

/* Schools Page */
.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.school-list {
    margin-bottom: 2rem;
}

.school-list .img-box-wrapper.school-card {
    display: flex;
    height: 100%;
    padding: 1rem;
}

.school-card .contact-link {
    color: var(--dark-font-color);
}

/* Single School Page */
.school-logo-wrapper {
    background: white;
    padding: 1.5rem;
}
img.box-img.school-logo {
    object-fit: contain;
}

.school-map {
    margin-bottom: 2rem;
}

/* Landing Page */
.landing-wrapper {
    margin-bottom: 2rem;
}
.landing-link {
    background: var(--light-grey);
    text-align: center;
    aspect-ratio: 16 / 9;
    padding: 1rem;
    position: relative;
}

.landing-link .btn-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
}

.landing-link:hover .btn-arrow i,
.landing-link:focus .btn-arrow i{
    transform: rotate(0);
}

/* Employment Page */
.job-post {
    background: var(--light-grey);
    display: block;
    margin-bottom: 1rem;
    padding: 1rem;
}

.filter-col {
    width: 100%;
}

.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 1rem;
    row-gap: 1rem;
    margin-bottom: 1.5rem;
}

#search-jobs {
    padding: 0.75rem 2.5rem 0.6rem 1rem;
}

.filter-wrapper select {
    background-image: linear-gradient(45deg, transparent 50%, black 50%), linear-gradient(135deg, black 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    max-width: 200px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: solid 1px #e4e4e4;
    padding: 0.75rem 2.5rem 0.6rem 1rem;
}

#reset {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-top: 1rem;
    border: none;
}

#category-dropdown {
    margin-bottom: 1rem;
    margin-right: 1rem;
}

@media(min-width: 62em) {
    .filter-col {
        display: flex;
        align-items: center;
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
    }

    #reset {
        margin-top: 0;
    }

    #category-dropdown {
        margin-bottom: 0;
    }
}

/* Single Job Page */
.job-info {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin: 1rem 0 2rem;
    font-weight: var(--font-semibold);
    font-family: var(--heading-font);
    color: var(--dark-grey);
}

.job-info > div {
    width: 100%;
}

.job-posts .job-info {
    margin: 0;
}

.job-location-row {
    align-items: baseline;
}

@media (max-width: 991px) {
    .job-wrapper {
        order:  -1;
        margin-top: 2rem;
    }
}

@media (min-width: 62em) {
    .job-info > div {
        width: calc((100% - 2rem) / 3);
    }

    /* .job-info .job-date-row {
        justify-content: flex-end;
    } */
}

/* Instagram Feed */
.instagram-wrapper {
    padding: 1rem .5rem;
    row-gap: 1rem;
    max-height: 692px;
    overflow-y: scroll;
}

.instagram-post {
    padding: 0 .5rem;
}

.instagram-video {
    position: absolute;
    height: auto;
    width: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1 / 1;
}

.instagram-img {
	display: block;
    aspect-ratio: 1 /1;
    width: 100%;
}

.instagram-post a {
	aspect-ratio: 1/1;
    position: relative;
	display: block;
}

.tiktok-embed {
    background-color: white;
}

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

@media (min-width: 62em) {
    .social-content {
        height: 692px;
    }
}

/* Documents Page */
.documents .cs-banner-wrapper.doc-bg {
    height: 200px;
}

.documents .doc-search {
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.documents .doc-search #search-documents {
    width: 100%;
    margin-right: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.documents .doc-search #search-docs {
    -webkit-appearance: none;
    border: none;
    width: 100%;
    background: var(--light-grey);
    padding: 10px 20px;
}

.documents .table-filter {
    border: none;
    background: var(--secondary);
    margin-right: 10px;
    color: white;
    background-image: linear-gradient(45deg, transparent 50%, white 50%), linear-gradient(135deg, white 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
    background-size: 5px 5px, 5px 5px, 1px 1.5em;
    background-repeat: no-repeat;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 10px 40px 10px 20px;
}

.documents .btn-simple {
    -webkit-appearance: none;
    border: none;
    background: none;
    margin: 0;
    padding: 0;
    color: var(--dark-grey);
}

.documents table th {
    background: var(--primary) !important;
    color: white;
    border-right: 1px solid white;
}

.documents table i {
    font-size: 1.2rem;
}

.documents table i:not(.doc-download) {
    color: var(--dark-grey);
}

.documents table .center-content {
    text-align: center;
}

.documents em.modified {
    font-size: smaller;
    color: var(--dark-grey);
}

@media (min-width: 62em) {
    .documents .doc-search #search-documents {
        width: 40%;
        margin-bottom: 0;
    }
    .cs-banner-wrapper.doc-bg {
        height: 400px;
    }
    .documents .table-filter {
        padding-right: 50px;
    }
}

@media (min-width: 99em) {
    .documents .table-filter {
        padding-right: 60px;
    }  
}

/* School Finder */
.map-wrapper {
    display:flex;
    flex-direction:row;
    position: relative;
    margin-bottom: 2rem;
}

#sys-sf-profile {
    max-width:25%;
    width:fit-content;
    position: absolute;
    right: 0;
    background: white;
    /* Kept in sync with #sys-sf-map.height */
    height: 580px;
    background-color: var(--light-grey);
}

#sys-sf-map {
    width:100%;
    height:580px;
}

@media (max-width: 48em) {
    #sys-sf-profile {
        width: 100%;
        max-width: unset;
        bottom: 0;
        height: auto;
    }
}