
@media only screen and (max-width: 1024px) {
	#coming-back-link {
		display: none;
	}
}

/* CEAS Staff Profile Cards */
.inner-wrapper {
	max-width: 1160px;
	margin: 0 auto;
}
.ceas-profile-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 1rem;
	padding: 1rem;
}
.ceas-profile-card {
	border: 1px solid #ddd;
	border-radius: 0rem;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: "Effra", "Effra W01", Helvetica, sans-serif;
}
.ceas-profile-card img {
	width: 100%;
	height: auto;
	padding: 10px;
	box-sizing: border-box;
}
.ceas-profile-card-body {
	padding: 1rem;
	width: 100%;
	text-align: center;
	box-sizing: border-box;
}
.ceas-profile-card-title {
	font-size: 18px;
	margin-top: 0;
	margin-bottom: 0;
	font-weight: bold;
}
p.ceas-profile-card-text {
	margin: 8px 0;
}
.ceas-profile-card-text span {
	display: block;
	margin-bottom: 6px; /* Adjust the margin as needed */
}
.ceas-profile-card-text span:last-child {
	margin-bottom: 0; /* Remove margin from the last span to avoid extra space */
}
.ceas-profile-title {
	color: #969696;
	font-size: 15px;
}
.ceas-profile-contact {
	font-size: 13px;
}
.ceas-profile-contact a {
	color: #900;
}
.ceas-profile-contact a:hover {
	color: #969696;
}
@media (max-width: 768px) {
	.ceas-profile-container {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 425px) {
	.ceas-profile-container {
		grid-template-columns: repeat(1, 1fr);
	}
}

/* CEAS Giving Fullwidth Fixed Background Content Sections */
.ceas-fs-fixedbg-sec {
	position: relative;
	width: 100%;
	height: 100vh; /* Full viewport height for desktop */
	overflow: hidden; /* Ensure no overflow for grey stripe */
	display: flex;
	flex-direction: column; /* Stack background and content on mobile */
}

.ceas-fs-fixedbg-sec-bg-fixed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-attachment: fixed; /* Fixed background for desktop */
	z-index: 1;
}

.ceas-fs-fixedbg-sec-bg-mobile {
	display: none; /* Hidden on desktop */
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 200px; /* Adjust height for mobile */
}

.ceas-fs-fixedbg-sec-content-stripe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	z-index: 2; /* On top of the background */
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(101, 102, 102, 0.8); /* Full width grey stripe */
	padding: 20px;
	box-sizing: border-box; /* Include padding in the width */
}

.ceas-fs-fixedbg-sec-content-wrapper {
	max-width: 1160px;
	width: 100%;
	text-align: center;
	color: #FFFFFF;
}
.new-brand .content-wrapper .ceas-fs-fixedbg-sec-content-wrapper H2 {
	color: #FFFFFF;
}

/* Mobile Specific Styles */
@media (max-width: 767px) {
	.ceas-fs-fixedbg-sec {
		height: auto; /* Remove full screen height for mobile */
	}

	.ceas-fs-fixedbg-sec-bg-fixed {
		display: none; /* Hide the fixed background on mobile */
	}

	.ceas-fs-fixedbg-sec-bg-mobile {
		display: block; /* Show mobile background */
		height: 200px; /* Adjust the height as needed for mobile */
	}

	.ceas-fs-fixedbg-sec-content-stripe {
		position: relative;
		transform: none;
		top: 0;
		left: 0;
		background-color: rgba(101, 102, 102, 0.8);
		padding: 20px;
		margin: 0; /* Remove any margin/padding for stacking */
	}
}