/* ----- GENERAL PAGE LAYOUTS ----- */

.bg-lt {
	background-color: var(--asp-main-color-lt);
}

.bg-dk {
	background-color: var(--asp-main-color);
	color: var(--asp-font-color-lt);
}

.bg-dkr {
	background-color: var(--asp-main-color-dkr);
	color: var(--asp-font-color-lt);
}

.bg-dk [class*="asp-heading"],
.bg-dkr [class*="asp-heading"] {
	color: var(--asp-font-color-ltr);
	font-weight: normal;
}

.cols-dk b,
.bg-dk b {
	color: var(--asp-font-color-ltr);
}

.cols-dk a:not(.asp-button),
.bg-dk a:not(.asp-button) {
	--asp-link-color-default: #e89743;
}

.cols-dk a:not(.asp-button):hover,
.cols-dk a:not(.asp-button):focus-visible,
.bg-dk a:not(.asp-button):hover,
.bg-dk a:not(.asp-button):focus-visible {
	--asp-link-color-hover: #ffa548;
}

.content-padded {
	padding: 20px;
}

.content-scroll-horizontal {
	width: 100%;
	overflow-x: auto;
}

.embed-inline-margin,
img.img-inline-margin {
	margin-top: 40px;
	margin-bottom: 40px;
}

.embed-inline-margin:first-child,
img.img-inline-margin:first-child {
	margin-top: 0;
}

.page-content .asp-button {
	font-size: var(--asp-font-size-body-1);
}

/* table */
.asp-table {
	border: var(--asp-border-color-dkr) solid 1px;
	border-top: 0;
	width: 100%;
	font-size: var(--asp-font-size-body-1);
	line-height: var(--asp-table-line-height);
	text-align: left;
	margin: var(--asp-table-margin);
}

/* table header */
.asp-table thead {
	background-color: var(--asp-main-color);
}

.asp-table thead th,
.asp-table thead td {
	font-weight: bold;
	color: var(--asp-font-color-ltr);
	max-width: 100%;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding: var(--asp-table-header-cell-padding);
}

/* table row */
.asp-table tbody {
	border-top: var(--asp-border-color-dkr) solid 1px;
}

.asp-table thead + tbody {
	border-top: 0;
}

/* table cell */
.asp-table td {
	word-break: break-all;
	vertical-align: top;
	padding: var(--asp-table-cell-padding);
}

/* layout columns with 1/3 2/3 widths */
.layout-cols:has(".col-width-1-3"),
.layout-cols:has(".col-width-2-3") {
	--asp-layout-column-count: 1;
}

/* layout columns */
.layout-cols {
	display: flex;
	flex-flow: row wrap;
	gap: var(--asp-layout-column-gap);
}

.layout-cols > .layout-col {
	overflow: hidden;
	flex: 0 0
		calc(
			(
					100% -
						(
							(var(--asp-layout-column-count) - 1) *
								var(--asp-layout-column-gap)
						)
				) /
				var(--asp-layout-column-count)
		);
}

.layout-cols.cols-center {
	justify-content: center;
}

.layout-cols.cols-center-valign {
	align-items: center;
}

.layout-cols .layout-col.col-span-max {
	flex: 0 0 100%;
}

/* columns with light bg */
.layout-cols.cols-dk,
.layout-cols.cols-dkr,
.layout-cols.cols-lt,
.layout-cols.cols-ltr {
	--asp-layout-column-gap: 20px;
}

.layout-cols.cols-lt > .layout-col {
	background-color: var(--asp-main-color-lt);
	padding: 20px;
}

.layout-cols.cols-ltr > .layout-col {
	background-color: var(--asp-main-color-ltr);
	padding: 20px;
}

/* dark bg */
.layout-cols.cols-dk > .layout-col {
	background-color: var(--asp-main-color);
	color: var(--asp-font-color-lt);
	padding: 20px;
}

.layout-cols.cols-dk [class*="asp-heading"],
.layout-cols.cols-dkr [class*="asp-heading"] {
	color: var(--asp-font-color-ltr);
	font-weight: normal;
}

/* darker bg */
.layout-cols.cols-dkr > .layout-col {
	background-color: var(--asp-main-color-dkr);
	color: var(--asp-font-color-lt);
	padding: 20px;
}

/* layout columns for paragraphs inline content */
.layout-inline-cols-2 {
	columns: calc(
			(
					768px - (2 * var(--asp-site-padding-horizontal)) -
						var(--asp-layout-column-gap)
				) /
				2
		)
		2;
	column-gap: var(--asp-layout-column-gap);
}

.layout-inline-cols-3 {
	columns: calc(
			(
					768px - (2 * var(--asp-site-padding-horizontal)) -
						var(--asp-layout-column-gap)
				) /
				2
		)
		3;
	column-gap: var(--asp-layout-column-gap);
}

.layout-inline-cols-4 {
	columns: calc(
			(
					768px - (3 * var(--asp-site-padding-horizontal)) -
						var(--asp-layout-column-gap)
				) /
				3
		)
		4;
	column-gap: var(--asp-layout-column-gap);
}

/* banner, page title */
.page-hero {
	position: relative;
}

.page-banner {
	width: 100%;
	height: 50vh;
	min-height: 350px;
	transition: all var(--asp-transition-timing);
}

.page-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-title {
	text-align: center;
	background-color: var(--asp-main-color-dkr);
	border-bottom: var(--asp-accent-color) solid 5px;
}

.page-title [class*="asp-heading"] {
	color: var(--asp-font-color-ltr);
	padding: 20px var(--asp-site-padding-horizontal);
	max-width: var(--asp-site-width-max);
	margin: 0 auto;
	position: relative;
	z-index: 1;
	filter: drop-shadow(0 0 5px rgb(0 0 0 / 50%));
}

.page-hero .page-title-container {
	width: 100%;
}

.page-hero .page-title sup {
	font-size: var(--asp-font-size-body-2);
	font-weight: normal;
	position: relative;
	font-style: normal;
	top: 10px;
	vertical-align: text-top;
}

.page-hero .page-title {
	position: absolute;
	display: flex;
	height: 100%;
	left: 0;
	top: 0;
	align-items: end;
	justify-content: center;
	width: 100%;
	background-color: transparent;
}

.page-hero .page-title::after {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-image: linear-gradient(
		to bottom,
		rgb(0 34 98 / 20%) 0%,
		rgb(0 34 98 / 80%) 100%
	);
}

/* ----- SPECIFIC PAGE STYLES ----- */

/* ---------- HOME ---------- */

/* home hero */

.pg-home .page-hero .page-title [class*="asp-heading"] {
	font-style: italic;
	margin-bottom: 2.5%;
}

.pg-home .page-hero .page-title::after {
	background-image: linear-gradient(
		to bottom,
		rgb(0 0 0 / 0%) 0%,
		rgb(0 0 0 / 70%) 100%
	);
	height: 70%;
}

/* news events */
.layout-news-events {
	display: flex;
	flex-flow: column nowrap;
	gap: 20px;

	--asp-carousel-image-height: 350px;
}

.layout-news-events.no-events {
	gap: 0;
}

.layout-news-events.no-events .upcoming-events {
	display: none;
}

.layout-news-events.no-events .layout-news {
	width: 100%;
}

/*  carousel */
.carousel,
.carousel [class*="asp-heading"] {
	color: var(--asp-font-color-ltr);
	margin: var(--asp-margin-paragraph);
}

.carousel .slide-image {
	height: var(--asp-carousel-image-height);
	position: relative;
}

.carousel .slide-image::after {
	display: block;
	content: "";
	position: absolute;
	bottom: 0;
	height: 80%;
	width: 100%;
	mix-blend-mode: darken;
	background-image: linear-gradient(
		to bottom,
		rgb(0 0 0 / 0%) 0%,
		rgb(0 0 0 / 60%) 60%
	);
}

.carousel .slide-image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.carousel .slide-caption {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px 20px 40px;
}

.carousel p:last-child {
	margin: 0;
}

/* swiper overrides */
.carousel .swiper-button-prev::after,
.carousel .swiper-button-next::after {
	display: none;
	transform: scale(70%);
	color: #fff;
}

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

/* upcoming events */

.upcoming-events {
	background-color: var(--asp-bg-color-body);
	font-size: var(--asp-font-size-body-2);
}

.upcoming-events > [class*="asp-heading"] {
	background-color: var(--asp-main-color);
	color: var(--asp-font-color-ltr);
	text-align: center;
	padding: 20px 10px;
	margin: 0;
	height: 65px;
	line-height: 1;

	/* border-bottom:var(--asp-border-color-dkr) solid 1px; */
}

.upcoming-events-list li [class*="asp-heading"] {
	font-family: var(--asp-font-family-sans-serif);
	margin-bottom: 5px;
}

.upcoming-events-footer {
	height: 65px;
	padding: 10px;
	text-align: center;
	border-top: var(--asp-border-color-dkr) solid 1px;
}

.upcoming-events-list li {
	padding: 10px;
}

.upcoming-events-list li + li {
	border-top: var(--asp-border-color-dkr) solid 1px;
}

.upcoming-events-list .event {
	display: inline-flex;
	flex-flow: row nowrap;
	width: 100%;
	gap: 20px;
	padding: 20px 10px;
}

.upcoming-events-list p:last-child {
	margin: 0;
}

/* event calendar block */
.cal-date {
	width: 50px;
	background-color: #fff;
	border: var(--asp-main-color) solid 2px;
	text-align: center;
	text-transform: uppercase;
}

.cal-date .cal-month {
	border-bottom: var(--asp-main-color) solid 2px;
	padding: 0 5px;
	font-size: var(--asp-font-size-body-3);
	font-weight: bold;
	color: var(--asp-main-color);
}

.cal-date .cal-day {
	font-size: var(--asp-font-size-heading-3);
	padding: 0 5px;
}

/* tiles */
.tiles [class*="heading"] {
	font-weight: normal;
	margin: var(--asp-margin-paragraph);
}

/*
.bg-dk .tiles [class*="asp-heading"] {
	color:var(--asp-accent-color);
}
*/

.tile + .tile {
	margin-top: 20px;
}

.tile-container {
	width: 100%;
}

.tile-image {
	max-height: 350px;
	overflow: hidden;
}

.tile-image img {
	object-fit: cover;
	height: 100%;
}

.tile-details-container {
	max-width: 300px;
	padding: 40px 10px;
	margin: 0 auto;
}

/* ---------- SEARCH PAGE ---------- */
.google-search {
	display: inline-flex;
	flex-flow: row nowrap;
	justify-content: center;
	width: 145px;
}

.google-search-field {
	padding: 5px 10px;
	height: 34px;
	width: 100px;
	font-size: var(--asp-font-size-body-2);
	border-top-left-radius: var(--asp-form-field-border-radius);
	border-bottom-left-radius: var(--asp-form-field-border-radius);
	border: #fff solid 1px;
}

.google-search-field:focus-visible {
	opacity: 1;
}

.google-search-field::placeholder {
	opacity: 0.5;
}

.google-search .asp-button.outline {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	min-width: auto;
}

.google-search-results .gsc-control-cse {
	font-family: var(--asp-font-family-sans-serif);
	font-size: var(--asp-font-size-body-1);
	background-color: transparent;
	border: 0;
	padding: 0;
}

.google-search-results .gsc-control-cse .gsc-table-result {
	font-size: var(--asp-font-size-body-2);
}

.google-search-results .gsc-results {
	width: 100%;
}

/* stylelint-disable */
.google-search-results .gsc-webResult.gsc-result {
	background-color: var(--asp-main-color-lt);
	border-color: var(--asp-main-color-lt);
}
/* stylelint-enable */

.google-search-results .gcsc-more-maybe-branding-root {
	margin-top: 20px;
	font-size: var(--asp-font-size-body-1);
	text-align: left;
}

.google-search-results .gs-no-results-result .gs-snippet,
.google-search-results .gs-error-result .gs-snippet {
	padding: 10px 20px;
	background-color: transparent;
	border: 0;
	font-weight: bold;
	color: var(--asp-font-color-dkr);
}

.google-search-results .gs-result .gs-title,
.google-search-results .gs-result .gs-title * {
	font-weight: bold;
	text-align: left;
	text-decoration: underline;
}

.google-search-results .gs-result .gs-title:hover,
.google-search-results .gs-result .gs-title:focus-visible,
.google-search-results .gs-result .gs-title *:hover,
.google-search-results .gs-result .gs-title *:focus-visible {
	text-decoration: none;
}

/* ---------- ABOUT ---------- */

.layout-stats-photo {
	display: flex;
	flex-flow: row wrap;
	background-color: #fff;
}

.layout-stats-photo .layout-stats {
	flex: 1 1 700px;
	min-width: 66.66%;
	overflow-x: auto;
}

.layout-stats-photo .layout-stats img {
	object-fit: cover;
	height: 100%;
	min-width: 700px;
}

.layout-stats-photo .layout-photo {
	flex: 1 1 33.33%;
}

.layout-stats-photo img {
	border: #fff solid 10px;
}

.layout-stats-photo .layout-photo img {
	object-fit: cover;
	height: 100%;
	margin: 0 auto;
}

.mission-vision-values .layout-col > ul {
	columns: 150px 2;
}

.mission-vision-values [class*="heading"] {
	margin-top: 20px;
}

/* ---------- STRATEGIC PLAN ---------- */

/* infographic images */
.pg-strategic [class*="infographic"] img {
	max-width: 500px;
	margin: 0 auto;
}

.pg-strategic .infographic-people img {
	max-width: 600px;
	position: relative;
	z-index: 1;
}

.pg-strategic .infographic-people-bg {
	position: relative;
	padding: 0 10px;
	border-left: #faba3c solid 10px;
	border-right: #faba3c solid 10px;
	max-width: var(--asp-content-width-max-1);
	margin: 0 auto;
}

.pg-strategic .infographic-people-bg::after {
	content: "";
	display: block;
	position: absolute;
	height: 50%;
	width: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-image: linear-gradient(
		to left,
		rgb(45 101 147 / 100%) 0%,
		rgb(250 186 50 / 100%) 100%
	);
}

.pg-strategic .infographic-fiscal img,
.pg-strategic .infographic-innovative img {
	max-width: 600px;
}

/* ------ ANNUAL REPORTS ------ */

.pg-annual-reports .page-banner img {
	object-position: bottom;
}

/* ------ LEADERSHIP ------ */
.headshot + [class*="asp-heading"] .text-normal {
	display: block;
}

.pg-leadership ul.no-bullet .asp-button {
	display: block;
	width: 100%;
}

.headshot {
	background-color: #fff;
	width: 75%;
	max-width: 200px;
	margin: 20px auto;
	overflow: hidden;
	border-radius: 50%;
}

/* ------ SERVICES ------ */

/* ------ GET HELP ------ */
.pg-help .page-banner img {
	object-position: top center;
}

.contact-section .logo-asp {
	border-radius: 50%;
	overflow: hidden;
	max-width: 250px;
	margin: 0 auto;
}

/* ------ FIRST LINKS ------ */
.logo-first-link {
	width: 75%;
	max-width: 400px;
}

/* ------ DEMENTIA RESOURCE CONSULTANTS ------ */
.logo-dementia-resource-consultants,
.logo-bso,
.logo-music-care {
	width: 75%;
	max-width: 300px;
}

/* ----- SUPPORT GROUPS ------ */
.testimonial {
	font-size: var(--asp-font-size-body-2);
	margin-bottom: 40px;
}

.testimonial blockquote {
	display: block;
	margin: 0;
	margin-bottom: 10px;
}

/* ------ ADULT DAY PROGRAMS ------ */
.table-hours-fees {
	min-width: 600px;
	margin: 0;
	border: 0;
}

.table-hours-fees thead {
	border-top: 0;
}

.content-scroll-horizontal:has(.asp-table) {
	border: var(--asp-border-color-dkr) solid 1px;
}

.adult-day-programs-locations [class*="heading-2"] {
	margin-bottom: 20px;
}

.adult-day-programs-locations [class*="heading-2"] + p {
	margin-bottom: 40px;
}

[class*="embed"] + [class*="embed"] {
	margin-top: 20px;
}

.embed-video {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
}

.embed-video > iframe {
	position: absolute;
	inset: 0;
	height: 100%;
	width: 100%;
}

.embed-map > iframe {
	border: var(--asp-border-color-dkr) solid 1px;
}

/* ------ MUSIC THERAPY ------ */
.gallery-list {
	--gallery-column-count: 3;
	--gallery-column-gap: 5px;

	display: flex;
	flex-flow: row wrap;
	gap: var(--gallery-column-gap);
}

.gallery-list > li {
	aspect-ratio: 1 / 1;
	background-color: #000;
	position: relative;
	overflow: hidden;
	flex: 0 0
		calc(
			(
					100% -
						(
							(var(--gallery-column-count) - 1) *
								var(--gallery-column-gap)
						)
				) /
				var(--gallery-column-count)
		);
}

.gallery-list > li img {
	position: absolute;
	top: 0;
	height: 100%;
	object-fit: cover;
}

/* ------ VIDEOS ON DEMAND ------ */
.video-list [class*="heading"] {
	margin: 20px 0;
}

.video-list [class*="heading"]:last-child {
	margin-bottom: 0;
}

/* ------ CAREERS ------ */
.pg-careers .page-banner img {
	object-position: center;
}

.job-postings-list {
	border: var(--asp-border-color-dkr) solid 1px;
}

.job-postings-list > li {
	padding: 20px;
}

.job-postings-list > li + li {
	border-top: var(--asp-border-color-dkr) solid 1px;
}

.job-postings-list [class*="asp-heading"] {
	margin-bottom: 5px;
}

.job-postings-list .layout-cols {
	--asp-layout-column-gap: 20px;
}

/* job post page */
.job-title {
	margin-bottom: 10px;
}

.job-header.layout-cols {
	--asp-layout-column-gap: 20px;
}

/* ------ GET INVOLVED ------ */

/* ----- VOLUNTEER ------ */
.pg-volunteer .page-banner img {
	object-position: top center;
}

/* ------ FUNDRAISE ------ */

/* ----- DONATE ------ */

.donate-option + .donate-option {
	margin-top: 20px;
}

.donate-option {
	align-items: center;
	gap: 0 20px;
}

.donate-option .donate-image {
	max-height: 350px;
}

.donate-option .donate-image img {
	object-fit: cover;
	height: 100%;
}

.donate-option .donate-caption {
	max-width: var(--asp-content-width-max-3);
	padding: 40px 20px;
	margin: 0 auto;
}

/* ------ NEWS EVENTS ------ */

/* ------ EVENTS ------ */
.pg-events .upcoming-events-list {
	border: var(--asp-border-color-dkr) solid 1px;
}

ul.support-groups-list > li {
	display: flex;
	flex-flow: row wrap;
	gap: 0 20px;
	margin-bottom: 40px;
}

.support-group-time {
	flex: 1 1 200px;
	white-space: nowrap;
}

.support-group-details {
	flex: 1 1 300px;
}

/* ------ PARTNERS ----- */
.consumer-stats {
	max-width: 800px;
	margin: 0 auto;
}

.consumer-stats .layout-col {
	flex: 1 1 200px;
}

.stat-number {
	color: var(--asp-font-color-dkr);
	font-weight: 800;
	font-family: var(--asp-font-family-sans-serif-heading);
	background-color: #fff;
	display: block;
	margin: 0 auto 20px;
	width: 200px;
	height: 200px;
	padding-top: 70px;
	font-size: 50px;
	line-height: 1;
	border-radius: 50%;
	border: var(--asp-accent-color) solid 5px;
}

.stat-percent {
	font-weight: 300;
}

/* ----- PARTNERS ------ */
ul.partners-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 10px;
}

.partners-list li {
	flex: 1 1 200px;
	max-width: 300px;
}

/* -------------- BREAK POINT -------------- */

@media screen and (min-width: 480px) {
	/* ----- SPECIFIC PAGE STYLES ----- */

	/* ---------- HOME ---------- */

	/* show carousel arrows */
	.carousel .swiper-button-prev::after,
	.carousel .swiper-button-next::after {
		display: block;
	}

	.tile-image img {
		object-position: center -50px;
	}

	/* ------ MUSIC THERAPY ------ */
	.gallery-list {
		--gallery-column-count: 4;
	}
}

/* -------------- BREAK POINT -------------- */
@media screen and (min-width: 768px) {
	/* ----- SPECIFIC PAGE STYLES ----- */

	/* columns layout */

	/* 1/3 2/3 columns */
	.layout-cols:has([class*="col-width"]) {
		--asp-layout-column-count: 2;
	}

	.layout-cols .col-width-1-3 {
		flex: 0 0
			calc(
				(
					33% -
						(
							(
								(var(--asp-layout-column-count) - 1) *
									var(--asp-layout-column-gap)
							)
						) /
						var(--asp-layout-column-count)
				)
			);
	}

	.layout-cols .col-width-2-3 {
		flex: 0 0
			calc(
				(
					67% -
						(
							(
								(var(--asp-layout-column-count) - 1) *
									var(--asp-layout-column-gap)
							)
						) /
						var(--asp-layout-column-count)
				)
			);
	}

	/* ---------- HOME ---------- */

	/* page banner */
	.page-banner {
		height: 45vh;
	}

	.pg-home .page-hero .page-title {
		align-items: center;
		text-align: left;
	}

	.pg-home .page-hero .page-title [class*="asp-heading"] {
		margin-bottom: 0;
	}

	.pg-home .page-hero .page-title::after {
		height: 100%;
		width: 70%;
		background-image: linear-gradient(
			to left,
			rgb(0 0 0 / 0%) 0%,
			rgb(0 0 0 / 50%) 100%
		);
	}

	/*  carousel */

	.layout-news-events {
		--asp-carousel-image-height: 500px;
	}

	.carousel .slide-image::after {
		height: 70%;
	}

	.carousel p:last-child {
		margin: var(--asp-margin-paragraph);
	}

	/* tiles */

	.tile-container {
		width: 100%;
		display: flex;
		flex-flow: row wrap;
		padding: 0;
		align-items: center;
	}

	.tile {
		flex: 0 0 50%;
	}

	.tile + .tile {
		margin: 0;
	}

	.tile:nth-child(even) .tile-image {
		order: 2;
	}

	.tile:nth-child(even) .tile-details {
		order: 1;
	}

	.tile-image,
	.tile-details {
		max-height: none;
		flex: 0 0 50%;
	}

	.tile-image img {
		object-position: center center;
	}

	/* ---------- ABOUT ---------- */

	.layout-stats-photo .layout-stats img {
		min-width: unset;
	}

	/* ---------- STRATEGIC PLAN ---------- */

	/* infographic images */
	.pg-strategic .infographic-service img {
		max-width: 400px;
	}

	.pg-strategic .infographic-leadership img {
		max-width: 270px;
	}

	/* ---------- SUPPORT GROUPS ---------- */
	.layout-cols.has-sidebar .col-width-2-3,
	.layout-cols.has-sidebar .col-width-1-3,
	.layout-cols.has-sidebar > .layout-col {
		flex-grow: 1;
		flex-shrink: 1;
	}

	.layout-cols.has-sidebar .col-width-1-3 {
		min-width: 300px;
	}

	/* ------ MUSIC THERAPY ------ */
	.gallery-list {
		--gallery-column-count: 6;
	}

	/* ----- DONATE ------ */

	.donate-option .donate-image {
		max-height: none;
		height: 450px;
	}

	.donate-option .donate-caption {
		padding: 10px 20px;
	}
}

/* -------------- BREAK POINT -------------- */
@media screen and (min-width: 992px) {
	/* ----- SPECIFIC PAGE STYLES ----- */

	/* banner, page title */
	.page-banner {
		min-height: 400px;
	}

	/* ---------- HOME ---------- */
	.pg-home .page-hero .page-title [class*="asp-heading"] {
		padding-left: 40px;
	}

	.layout-news-events {
		flex-flow: row nowrap;
		gap: 0;
	}

	.layout-news-events .layout-news {
		width: calc(100% - 300px);
	}

	.upcoming-events-list {
		height: calc(var(--asp-carousel-image-height) - 130px);
		overflow-y: auto;
	}

	/* ---------- STRATEGIC PLAN ---------- */

	/* infographics */
	.layout-strategic-people,
	.layout-strategic-fiscal,
	.layout-strategic-innovative {
		text-align: center;
	}

	/* ------ MUSIC THERAPY ------ */
	.gallery-list {
		--gallery-column-count: 8;
	}

	/* ------ CAREERS ------ */
	.job-postings-list .layout-cols > .layout-col:last-child {
		text-align: right;
	}

	/* job post page */

	.job-header.layout-cols {
		--asp-layout-column-count: 4;
	}
}

/* -------------- BREAK POINT -------------- */
@media screen and (min-width: 1280px) {
	/* ----- SPECIFIC PAGE STYLES ----- */

	/* banner, page title */
	.page-banner {
		min-height: 500px;
	}

	/* ---------- HOME ---------- */

	.pg-home .page-hero .page-title [class*="asp-heading"] {
		font-size: 44px;
		padding-left: 110px;
	}

	/*  carousel */
	.carousel .slide-caption {
		padding-left: 80px;
	}

	.layout-news-events .layout-news {
		width: 75%;
	}

	/* tiles */
	.tiles-container {
		width: 100%;
		display: flex;
		flex-flow: row wrap;
		padding: 0;
		align-items: center;
		gap: 5px;
	}

	.tile {
		flex: 0 0 calc(50% - 5px);
	}

	.tile:nth-child(even) .tile-image,
	.tile:nth-child(even) .tile-details {
		order: 0;
	}
}
