/* General Styles */

#header_title, .deptTitle, .contactUs {
	display: none;
}

#content {
	padding-top: 0;
	padding-bottom: 0;
}

h2 {
	line-height: 1.1;
}

.link_button {
	padding: 14px 32px 13px;
	font-size: 2.0rem;
	background-color: var(--gold);
	color: var(--midnight);
}

.link_button:hover {
	color: var(--midnight);
	background-color: #FFE04D;
}

.sectionDivider {
	border-top: 2px solid var(--violet);
	margin: 0;
}

/* Date */

.spotlightDate {
	margin: 25px 0 0;
	text-align: right;
}
@media (max-width: 767px) {
	.spotlightDate {
		font-size: 1.5rem;
	}
}

/* Title Section */

.titleSection {
	padding: 35px 0 0;
}
@media (max-width: 767px) {
	.titleSection {
		padding: 25px 0 0;
	}
}

.headingTopText, .headingBottomText {
	display: inline-block;
}

.thePowerToDo {
	text-transform: uppercase;
	line-height: 1;
	margin: 0 0 50px;
}

.thePowerToDo .headingTopText {
	font-weight: 700;
	color: var(--azure);
	font-size: 3.5rem;
}

.thePowerToDo .headingBottomText {
	font-weight: 700;
	color: var(--darkblue);
	font-size: 6rem;
}
@media (max-width: 767px) {
	.thePowerToDo .headingBottomText {
		font-size: 5rem;
	}
}

.subHeading {
	color: var(--darkblue);
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.2;
	padding: 20px;
	margin: 0;
	text-align: center;
	border-top: 2px solid var(--violet);
	border-bottom: 2px solid var(--violet);
}

/* Video Section */

.videoSection {
	padding: 60px 0;
}
@media (max-width: 767px) {
	.videoSection {
		padding: 50px 0;
	}
}

.videoSection iframe {
	border-radius: var(--radius-m);
}

/* Main Story Section */

.mainStorySection__layout {
	padding: 35px 0;
	border-top: 2px solid var(--violet);
	border-bottom: 2px solid var(--violet);

	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4%;
	align-items: center;
}
@media (max-width: 767px) {
	.mainStorySection__layout {
		padding: 25px 0 30px;
		grid-template-columns: 1fr;
		gap: 25px;
	}
}

@media (min-width: 768px) {
	/* On desktop, scale image height to text height */
	.mainStorySection__image {
		height: 0;
		min-height: 100%;
	}
}
@media (max-width: 767px) {
	/* Put image after text on mobile */
	.mainStorySection__image {
		order: 2;
	}
}

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

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

/* Student Life Section */

.cutoutSection {
	position: relative;
	margin-top: 70px;
}
@media (max-width: 767px) {
	.cutoutSection {
		margin-top: 50px;
	}
}

body.accessible .cutoutSection a:focus {
	outline: var(--white) solid 2px; /* For keyboard controls */
}

.cutoutSection__layout {
	display: grid;
	grid-template-columns: 300px 1fr;
	gap: 4%;
	min-height: 385px;
	/* For fancy background */
	position: relative;
	z-index: 5;
}

.cutoutSection__imageArea {
	position: relative;
}

.cutoutSection__imageArea img {
	border-radius: 0;
	max-width: 100%;
	position: absolute;
	bottom: 0;
}

.cutoutSection__contentArea {
	align-self: center;
	padding: 25px 0;
}

.cutoutSection__stripe {
	position: absolute;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: var(--azure);
	background-repeat: no-repeat;
	background-position: bottom right;
	background-image: url(/images/2024-brand/swoop-bottom-right-full.svg);
	background-size: auto 100%;
}

@media (max-width: 767px) {
	.cutoutSection__stripe {
		background-image: url("/images/2024-brand/swoop-bottom-right-cropped.svg");
		background-size: auto 85%;
	}
}

.cutoutSection__contentArea h2 {
	font-size: 3.7rem;
	margin-bottom: .8rem;
	text-transform: none;
	color: var(--darkblue);
	text-shadow: 0 0 10px #FFFFFF33; /* Very subtle light shadow to boost contrast */
}

.cutoutSection__contentArea p {
	color: white;
	font-size: 1.9rem;
	font-weight: 500;
	line-height: 1.3;
	margin-bottom: 1.2rem;
}

@media (max-width: 767px) {
	.cutoutSection__layout {
		grid-template-columns: 1fr !important;
		gap: 25px;
	}
	.cutoutSection {
		padding-top: 20px;
	}
	.cutoutSection__contentArea {
		order: 1;
	}
	.cutoutSection__imageArea {
		order: 2;
	}
	.cutoutSection__imageArea img {
		position: static;
	}
	.cutoutSection__stripe {
		height: 100%;
	}
}