/*
 * Overlay Tiles with Feature
 *
 * Breakpoints:
 *   ≤400px:     tighter body padding/gap
 *   <768px:     reverse body/image; 1-col; feature media 240px
 *   768–1079:   2-col grid; feature height stretches
 *   ≥1080:      3-col grid; feature media 420px
 *   ≥1440:      full-width stage
 */

.overlay_tiles-section {
	--ot-ink: #080808;
	--ot-link: #0f24dc;
	--ot-white: #ffffff;
	--ot-surface: #f1f2f2;
	--ot-radius: 10px;
	--ot-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	--ot-shadow-hover: 0 10px 18px rgba(0, 0, 0, 0.12);
	--ot-feature-hover: 0 4px 18px 0 #00000014;
	--ot-gap: 1.5rem;
	--ot-stage: 79.5rem; /* 1272px */
	--ot-feature-h: 420px;
	--ot-overlay-ease: cubic-bezier(0.22, 1, 0.36, 1);
	box-sizing: border-box;
	width: 100%;
	color: var(--ot-ink);
}

.overlay_tiles-section .faculty-theme--acap,
.overlay_tiles-section .faculty-theme--primary {
	--faculty-color: #0a0a96;
	--faculty-color-light: #0f24dc;
}

.overlay_tiles-section .faculty-theme--applied-psychology,
.overlay_tiles-section .faculty-theme--psychology {
	--faculty-color: #cf451f;
	--faculty-color-light: #f16c47;
}

.overlay_tiles-section .faculty-theme--law-justice {
	--faculty-color: #88733d;
	--faculty-color-light: #a8925a;
}

.overlay_tiles-section .faculty-theme--management {
	--faculty-color: #000000;
	--faculty-color-light: #6f7783;
}

.overlay_tiles-section .ot-feature,
.overlay_tiles-section .ot-tile {
	--tile-accent: var(--faculty-color, #cf451f);
	--tile-accent-border: var(--faculty-color-light, #f16c47);
}

.overlay_tiles-section *,
.overlay_tiles-section *::before,
.overlay_tiles-section *::after {
	box-sizing: border-box;
}

.overlay_tiles-section--bg-white {
	background-color: var(--ot-white);
}

.overlay_tiles-section--bg-grey {
	background-color: var(--ot-surface);
}

.overlay_tiles-section--pt-none {
	padding-top: 0;
}

.overlay_tiles-section--pt-small {
	padding-top: 2.5rem;
}

.overlay_tiles-section--pt-large {
	padding-top: 3.5rem;
}

.overlay_tiles-section--pb-none {
	padding-bottom: 0;
}

.overlay_tiles-section--pb-small {
	padding-bottom: 2.5rem;
}

.overlay_tiles-section--pb-large {
	padding-bottom: 4.5rem;
}

.overlay_tiles-section .ot-container {
	width: 100%;
	max-width: var(--ot-stage);
	margin-inline: auto;
	padding: 0 1rem;
}

.overlay_tiles-section .ot-inner {
	display: flex;
	flex-direction: column;
	gap: 1.75rem;
	width: 100%;
}

.overlay_tiles-section .ot-intro {
	margin-bottom: 3rem;
	/* max-width: 46rem; */
}
 
.overlay_tiles-section .ot-intro__description {
	margin: 0;
	font-size: 20px;
	line-height: 1.3;
	color: #202020;
}

/* ========== Feature card ========== */

.overlay_tiles-section .ot-feature {
	display: grid;
	grid-template-columns: minmax(0, 50%) minmax(0, 50%);
	align-items: stretch;
	width: 100%;
	max-width: var(--ot-stage);
	height: auto;
	min-height: var(--ot-feature-h);
	margin: 0 auto;
	background: var(--ot-white);
	border-radius: var(--ot-radius);
	box-shadow: var(--ot-shadow);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.25s ease;
}

.overlay_tiles-section a.ot-feature:hover .ot-feature__link-label,
.overlay_tiles-section a.ot-feature:focus .ot-feature__link-label{
	text-decoration: underline;
	color: inherit;
}

.overlay_tiles-section a.ot-feature:focus-visible {
	outline: 2px solid var(--ot-link);
	outline-offset: 4px;
}

.overlay_tiles-section .ot-feature:hover,
.overlay_tiles-section .ot-feature:focus-within {
	box-shadow: var(--ot-feature-hover);
}

.overlay_tiles-section .ot-feature__media {
	position: relative;
	width: 100%;
	height: auto;
	min-height: var(--ot-feature-h);
	align-self: stretch;
	overflow: hidden;
	background: #e8e8e8;
}

.overlay_tiles-section .ot-feature .ot-tile__overlay {
	display: none;
}

.overlay_tiles-section .ot-feature__image,
.overlay_tiles-section .ot-feature__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.overlay_tiles-section .ot-feature__body {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 0;
	padding: 3rem;
	gap: 20px;
	border-left: 12px solid var(--tile-accent-border);
	background: var(--ot-white);
	text-align: left;
}

.overlay_tiles-section .ot-feature__title {
	margin: 0px;
	font-family: 'New Grotesk Square', 'New Grotesk Square Fallback', sans-serif;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.5rem;
	text-transform: uppercase;
	color: var(--tile-accent);
}

.overlay_tiles-section .ot-feature__desc {
	margin: 0px;
	font-family: 'Founders Grotesk Regular', 'Founders Grotesk Regular Fallback', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.25rem;
	color: #000;
}

.overlay_tiles-section .ot-feature__meta {
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.overlay_tiles-section .ot-meta-row {
	display: flex;
	flex-direction: column;
	/* gap: 0.25rem; */
}

.overlay_tiles-section .ot-meta-row__head {
	display: flex;
	align-items: flex-end;
	/* gap: 0.75rem; */
	min-height: 1.25rem;
}

.overlay_tiles-section .ot-meta-row__icon {
	display: block;
	width: 24px;
	height: 20px;
	margin-top: 0.0625rem;
	color: #202020;
	flex-shrink: 0;
}

.overlay_tiles-section .ot-meta-row__icon svg {
	display: block;
	width: 20px;
	height: auto;
	/* fill: currentColor; */
}

.overlay_tiles-section .ot-meta-row__label {
	margin: 0;
	font-family: 'Founders Grotesk Regular', 'Founders Grotesk Regular Fallback', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.125rem;
	color: #202020;
}

.overlay_tiles-section .ot-meta-row__text,
.overlay_tiles-section .ot-feature__meta-wysiwyg,
.overlay_tiles-section .ot-feature__meta-wysiwyg p {
	margin: 0;
	font-family: 'Founders Grotesk Regular', 'Founders Grotesk Regular Fallback', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25rem;
	color: #202020;
}
.overlay_tiles-section .ot-tile__link-label,
.overlay_tiles-section .ot-tile__desc,
.overlay_tiles-section .ot-tile__overlay-text { 
	font-family: 'Founders Grotesk Regular', 'Founders Grotesk Regular Fallback', sans-serif; 
}

.overlay_tiles-section .ot-feature__meta-wysiwyg p + p {
	margin-top: 0.75rem;
}

.overlay_tiles-section .ot-feature__link {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 0.25rem; 
	/* margin-top: 1.25rem; */
	font-family: 'Founders Grotesk Regular', 'Founders Grotesk Regular Fallback', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 120%;
	color: var(--ot-link);
	text-decoration: none;
}

.overlay_tiles-section .ot-feature__arrow {
	display: inline-block;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.overlay_tiles-section .ot-feature:hover .ot-feature__arrow,
.overlay_tiles-section .ot-feature:focus-visible .ot-feature__arrow {
	transform: translateX(4px);
}

/* ========== Secondary tile grid ========== */

.overlay_tiles-section .ot-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	width: 100%;
	max-width: var(--ot-stage);
	margin: 0 auto;
	align-items: stretch;
}

.overlay_tiles-section .ot-tile {
	display: flex;
	flex-direction: column;
	min-width: 0;
	background: var(--ot-white);
	border-radius: var(--ot-radius);
	box-shadow: var(--ot-shadow);
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.25s ease;
}

.overlay_tiles-section a.ot-tile:hover .ot-tile__link-label,
.overlay_tiles-section a.ot-tile:focus .ot-tile__link-label {
	text-decoration: underline;
	color: inherit;
}

.overlay_tiles-section a.ot-tile:focus-visible {
	outline: 2px solid var(--ot-link);
	outline-offset: 4px;
}

.overlay_tiles-section .ot-tile:hover,
.overlay_tiles-section .ot-tile:focus-within,
.overlay_tiles-section .ot-tile.is-overlay-open {
	box-shadow: var(--ot-shadow-hover);
}

.overlay_tiles-section .ot-tile__media {
	position: relative;
	width: 100%;
	height: 280px;
	overflow: hidden;
	background: #e5e5e5;
	border-top-left-radius: var(--ot-radius);
	border-top-right-radius: var(--ot-radius);
	flex-shrink: 0;
}

.overlay_tiles-section .ot-tile__image,
.overlay_tiles-section .ot-tile__media img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	display: block;
}

.overlay_tiles-section .ot-tile__rule {
	height: 6px;
	background: var(--faculty-color-light);
	flex-shrink: 0;
}

.overlay_tiles-section .ot-tile__body {
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 0.625rem;
	padding: 16px;
	background: var(--ot-white);
}

.overlay_tiles-section .ot-tile__title {
	margin: 0;
	font-family: 'New Grotesk Square', 'New Grotesk Square Fallback', sans-serif;
	font-size: 1.5rem;
	font-weight: 500;
	line-height: 24px;
	text-transform: uppercase;
	color: var(--tile-accent);
}

.overlay_tiles-section .ot-tile__desc {
	margin: 0;
	font-family: 'Founders Grotesk Regular', 'Founders Grotesk Regular Fallback', sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25rem;
	color: #000;
}

.overlay_tiles-section .ot-tile__link {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;  
	margin-top: auto;
	/* padding-top: 0.5rem; */
	font-family: 'Founders Grotesk Regular', 'Founders Grotesk Regular Fallback', sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 120%;
	color: var(--ot-link);
}

.overlay_tiles-section .ot-tile__arrow {
	display: inline-block;
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.overlay_tiles-section .ot-tile:hover .ot-tile__arrow,
.overlay_tiles-section .ot-tile:focus-within .ot-tile__arrow {
	transform: translateX(4px);
}

/* ========== Overlay (color wipe) ========== */

.overlay_tiles-section .ot-tile__overlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
	padding: 1.25rem;
	background: var(--tile-accent);
	overflow: hidden;
	pointer-events: none;
	border-top-left-radius: var(--ot-radius);
	border-top-right-radius: var(--ot-radius);
	box-sizing: border-box;
	clip-path: inset(100% 0 0 0);
	opacity: 0;
	transition:
		clip-path 0.45s var(--ot-overlay-ease),
		opacity 0.35s ease;
}

@supports not (background: color-mix(in srgb, red 90%, transparent)) {
	.overlay_tiles-section .ot-tile__overlay {
		background: var(--tile-accent);
		/* opacity: 0.92; */
	}

	.overlay_tiles-section .ot-tile__media:hover .ot-tile__overlay,
	.overlay_tiles-section .ot-tile:focus-within .ot-tile__media .ot-tile__overlay,
	.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-feature.is-overlay-open .ot-tile__overlay {
		opacity: 1;
	}
}

.overlay_tiles-section .ot-tile__overlay-row {
	display: grid;
	grid-template-columns: 1.25rem minmax(0, 1fr);
	column-gap: 4px;
	align-items: start;
	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 0.3s ease 0.12s,
		transform 0.35s var(--ot-overlay-ease) 0.12s;
}

.overlay_tiles-section .ot-tile__overlay-row:nth-child(2) {
	transition-delay: 0.18s;
}

.overlay_tiles-section .ot-tile__overlay-row:nth-child(3) {
	transition-delay: 0.24s;
}

.overlay_tiles-section .ot-tile__overlay-row:nth-child(4) {
	transition-delay: 0.3s;
}

.overlay_tiles-section .ot-tile__overlay-icon {
	display: block;
	width: 28px;
	height: 17px;
	color: var(--ot-white);
	flex-shrink: 0;
}

.overlay_tiles-section .ot-tile__overlay-icon svg {
	display: block;
	width: 20px;
	height: 17px;
	/* fill: currentColor; */
}

.overlay_tiles-section .ot-tile__overlay-copy {
	display: flex;
	flex-direction: column;
	gap: 0.125rem;
	min-width: 0;
	padding-top: 2px;
}

.overlay_tiles-section .ot-tile__overlay-label {
	margin: 0;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.125rem;
	color: var(--ot-white);
}

.overlay_tiles-section .ot-tile__overlay-text,
.overlay_tiles-section .ot-overlay-wysiwyg,
.overlay_tiles-section .ot-overlay-wysiwyg p {
	margin: 0;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.25rem;
	color: var(--ot-white);
}

.overlay_tiles-section .ot-overlay-wysiwyg {
	opacity: 0;
	transform: translateY(10px);
	transition:
		opacity 0.3s ease 0.12s,
		transform 0.35s var(--ot-overlay-ease) 0.12s;
}

.overlay_tiles-section .ot-overlay-wysiwyg p + p {
	margin-top: 0.75rem;
}

.overlay_tiles-section .ot-overlay-wysiwyg a {
	color: var(--ot-white);
	pointer-events: none;
}

.overlay_tiles-section .ot-tile__media:hover .ot-tile__overlay,
.overlay_tiles-section .ot-tile:focus-within .ot-tile__media .ot-tile__overlay,
.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__overlay {
	clip-path: inset(0 0 0 0);
	opacity: 1;
}

.overlay_tiles-section .ot-tile__media:hover .ot-tile__overlay-row,
.overlay_tiles-section .ot-tile:focus-within .ot-tile__media .ot-tile__overlay-row,
.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__overlay-row,
.overlay_tiles-section .ot-tile__media:hover .ot-overlay-wysiwyg,
.overlay_tiles-section .ot-tile:focus-within .ot-tile__media .ot-overlay-wysiwyg,
.overlay_tiles-section .ot-tile.is-overlay-open .ot-overlay-wysiwyg {
	opacity: 1;
	transform: translateY(0);
}

/* ========== Unlinked: overlay covers entire tile ========== */

.overlay_tiles-section--unlinked .ot-tile--unlinked {
	position: relative;
}

.overlay_tiles-section--unlinked .ot-tile--unlinked > .ot-tile__overlay {
	inset: 0;
	z-index: 2;
	height: 100%;
	border-radius: var(--ot-radius);
}

.overlay_tiles-section--unlinked .ot-tile--unlinked:hover > .ot-tile__overlay,
.overlay_tiles-section--unlinked .ot-tile--unlinked:focus-within > .ot-tile__overlay,
.overlay_tiles-section--unlinked .ot-tile--unlinked.is-overlay-open > .ot-tile__overlay {
	clip-path: inset(0 0 0 0);
	opacity: 1;
}

.overlay_tiles-section--unlinked .ot-tile--unlinked:hover > .ot-tile__overlay .ot-tile__overlay-row,
.overlay_tiles-section--unlinked .ot-tile--unlinked:focus-within > .ot-tile__overlay .ot-tile__overlay-row,
.overlay_tiles-section--unlinked .ot-tile--unlinked.is-overlay-open > .ot-tile__overlay .ot-tile__overlay-row,
.overlay_tiles-section--unlinked .ot-tile--unlinked:hover > .ot-tile__overlay .ot-overlay-wysiwyg,
.overlay_tiles-section--unlinked .ot-tile--unlinked:focus-within > .ot-tile__overlay .ot-overlay-wysiwyg,
.overlay_tiles-section--unlinked .ot-tile--unlinked.is-overlay-open > .ot-tile__overlay .ot-overlay-wysiwyg {
	opacity: 1;
	transform: translateY(0);
}

@supports not (background: color-mix(in srgb, red 90%, transparent)) {
	.overlay_tiles-section--unlinked .ot-tile--unlinked:hover > .ot-tile__overlay,
	.overlay_tiles-section--unlinked .ot-tile--unlinked:focus-within > .ot-tile__overlay,
	.overlay_tiles-section--unlinked .ot-tile--unlinked.is-overlay-open > .ot-tile__overlay {
		opacity: 1;
	}
}

/* ========== ≥1440 full stage ========== */

@media (min-width: 1440px) {
	.overlay_tiles-section .ot-container {
		padding: 0;
	}
}

/* ========== 1080–1439 ========== */

@media (min-width: 1080px) and (max-width: 1439px) {
	.overlay_tiles-section .ot-container {
		padding: 0 2rem;
	}

	.overlay_tiles-section .ot-feature {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.overlay_tiles-section .ot-feature__body {
		border-left-width: 12px;
		padding: 3rem;
	}

	.overlay_tiles-section .ot-tile__media {
		height: 320px;
	}
}

/* ========== Tablet 768–1079: 2-col ========== */

@media (min-width: 768px) and (max-width: 1079px) {
	.overlay_tiles-section .ot-container {
		padding: 0 2rem;
	}

	.overlay_tiles-section .ot-feature {
		grid-template-columns: minmax(0, 36%) minmax(0, 64%);
		height: auto;
		min-height: var(--ot-feature-h);
	}

	.overlay_tiles-section .ot-feature__media {
		align-self: stretch;
		min-height: var(--ot-feature-h);
	}

	.overlay_tiles-section .ot-feature__body {
		padding: 2.25rem;
	}

	.overlay_tiles-section .ot-feature__title {
		font-size: 2rem;
	} 

	.overlay_tiles-section .ot-feature__meta {
		gap: 0.75rem;
	}

	.overlay_tiles-section .ot-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}
}

/* ========== Mobile <768: reverse body above image; feature media 240px ========== */

@media (max-width: 767px) {
	.overlay_tiles-section--pt-large {
		padding-top: 2rem;
	}

	.overlay_tiles-section--pb-large {
		padding-bottom: 2rem;
	}

	.overlay_tiles-section .ot-container {
		padding: 0 1.25rem;
	}

	.overlay_tiles-section .ot-feature {
		display: flex;
		flex-direction: column-reverse;
		max-width: 100%;
		height: auto;
	}

	.overlay_tiles-section .ot-feature__media {
		position: relative;
		width: 100%;
		height: auto; 
		min-height: 240px; 
		border-radius: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-left-radius: var(--ot-radius);
		border-bottom-right-radius: var(--ot-radius);
	}

	.overlay_tiles-section .ot-feature__body {
		min-height: 0;
		height: auto;
		border-left: none;
		/* border-bottom: 6px solid var(--tile-accent-border); */
		padding: 1.75rem 1.5rem 1.25rem;
	}

	.overlay_tiles-section .ot-feature__meta {
		display: none;
	}

	.overlay_tiles-section .ot-feature__title {
		font-size: 1.5rem;
		line-height: 1.2;
	}

	.overlay_tiles-section .ot-feature.ot-feature--has-overlay .ot-tile__overlay,
	.overlay_tiles-section .ot-feature[data-ot-overlay] .ot-tile__overlay {
		display: flex;
		width: 100%;
		height: 100%;
		border-radius: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-left-radius: var(--ot-radius);
		border-bottom-right-radius: var(--ot-radius);
		clip-path: inset(0 0 100% 0);
		background: var(--tile-accent);
	}

	@supports not (background: color-mix(in srgb, red 90%, transparent)) {
		.overlay_tiles-section .ot-feature.ot-feature--has-overlay .ot-tile__overlay,
		.overlay_tiles-section .ot-feature[data-ot-overlay] .ot-tile__overlay {
			background: var(--tile-accent);
		}
	}

	.overlay_tiles-section .ot-feature.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-feature.ot-feature--has-overlay.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-feature[data-ot-overlay].is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-feature:active .ot-feature__media .ot-tile__overlay {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}

	.overlay_tiles-section .ot-feature.is-overlay-open .ot-tile__overlay-row,
	.overlay_tiles-section .ot-feature.ot-feature--has-overlay.is-overlay-open .ot-tile__overlay-row,
	.overlay_tiles-section .ot-feature:active .ot-feature__media .ot-tile__overlay-row,
	.overlay_tiles-section .ot-feature.is-overlay-open .ot-overlay-wysiwyg,
	.overlay_tiles-section .ot-feature.ot-feature--has-overlay.is-overlay-open .ot-overlay-wysiwyg,
	.overlay_tiles-section .ot-feature:active .ot-feature__media .ot-overlay-wysiwyg {
		opacity: 1;
		transform: translateY(0);
	}

	.overlay_tiles-section .ot-grid {
		grid-template-columns: 1fr;
		gap: 1.25rem;
	}

	.overlay_tiles-section .ot-tile {
		flex-direction: column-reverse;
	}

	.overlay_tiles-section .ot-tile__rule {
		order: 0;
	}

	.overlay_tiles-section .ot-tile__title {
		font-size: 1.5rem;
	}

	.overlay_tiles-section .ot-tile__body {
		padding: 1.25rem;
	}

	.overlay_tiles-section .ot-tile__media {
		height: 240px;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-left-radius: var(--ot-radius);
		border-bottom-right-radius: var(--ot-radius);
	}

	.overlay_tiles-section .ot-tile__overlay {
		height: 100%;
		overflow: hidden;
		clip-path: inset(0 0 100% 0);
		gap: 0.625rem;
		padding: 1rem;
		justify-content: center;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
		border-bottom-left-radius: var(--ot-radius);
		border-bottom-right-radius: var(--ot-radius);
	}

	.overlay_tiles-section .ot-tile__overlay-row {
		transform: translateY(-10px);
	}

	.overlay_tiles-section .ot-tile__overlay-label,
	.overlay_tiles-section .ot-tile__overlay-text,
	.overlay_tiles-section .ot-overlay-wysiwyg,
	.overlay_tiles-section .ot-overlay-wysiwyg p {
		font-size: 15px;
		line-height: 1.125rem;
	}

	.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__media,
	.overlay_tiles-section .ot-tile:active .ot-tile__media {
		height: auto;
		min-height: 240px;
	}

	.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-tile.ot-tile--has-overlay.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-tile:active .ot-tile__media .ot-tile__overlay {
		position: relative;
		height: auto;
		min-height: 240px;
		overflow: visible;
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}

	.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__media img,
	.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__image,
	.overlay_tiles-section .ot-tile:active .ot-tile__media img,
	.overlay_tiles-section .ot-tile:active .ot-tile__image {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__overlay-row,
	.overlay_tiles-section .ot-tile:active .ot-tile__media .ot-tile__overlay-row,
	.overlay_tiles-section .ot-tile.is-overlay-open .ot-overlay-wysiwyg,
	.overlay_tiles-section .ot-tile:active .ot-tile__media .ot-overlay-wysiwyg {
		opacity: 1;
		transform: translateY(0);
	}

	.overlay_tiles-section .ot-feature.is-overlay-open .ot-feature__media {
		height: auto; 
		min-height: 240px; 
	}

	.overlay_tiles-section .ot-feature.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-feature.ot-feature--has-overlay.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-feature[data-ot-overlay].is-overlay-open .ot-tile__overlay {
		position: relative;
		height: auto;
		min-height: 240px;
		overflow: visible;
	}

	/* Unlinked: keep absolute full-tile cover on mobile (do not expand media) */
	.overlay_tiles-section--unlinked .ot-tile--unlinked.is-overlay-open .ot-tile__media,
	.overlay_tiles-section--unlinked .ot-tile--unlinked:active .ot-tile__media {
		height: 240px;
		min-height: 240px;
	}

	.overlay_tiles-section--unlinked .ot-tile--unlinked.is-overlay-open > .ot-tile__overlay,
	.overlay_tiles-section--unlinked .ot-tile--unlinked.ot-tile--has-overlay.is-overlay-open > .ot-tile__overlay,
	.overlay_tiles-section--unlinked .ot-tile--unlinked:active > .ot-tile__overlay {
		position: absolute;
		inset: 0;
		height: 100%;
		min-height: 0;
		overflow: hidden;
		border-radius: var(--ot-radius);
		justify-content: center;
	}
}

/* ========== ≤400: tighter body spacing ========== */

@media (max-width: 400px) {
	.overlay_tiles-section .ot-feature__title {
        font-size: 1.5rem;
        line-height: 24px;
    }
	
	.overlay_tiles-section .ot-feature__desc { 
		font-weight: 400; 
	}
	
	.overlay_tiles-section .ot-feature__body { 
		gap: 8px;
		padding: 12px 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.overlay_tiles-section .ot-tile__overlay,
	.overlay_tiles-section .ot-tile__overlay-row,
	.overlay_tiles-section .ot-overlay-wysiwyg,
	.overlay_tiles-section .ot-tile,
	.overlay_tiles-section .ot-feature,
	.overlay_tiles-section .ot-feature__arrow,
	.overlay_tiles-section .ot-tile__arrow {
		transition: none;
	}

	.overlay_tiles-section .ot-tile__media:hover .ot-tile__overlay,
	.overlay_tiles-section .ot-tile.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section .ot-feature.is-overlay-open .ot-tile__overlay,
	.overlay_tiles-section--unlinked .ot-tile--unlinked:hover > .ot-tile__overlay,
	.overlay_tiles-section--unlinked .ot-tile--unlinked.is-overlay-open > .ot-tile__overlay {
		clip-path: inset(0 0 0 0);
		opacity: 1;
	}
}
