/* --------------------------------
	GO BACK BUTTON
---------------------------------- */
.single-story a {
	font-size: 1.3rem;
	text-decoration: none;
	color: #1A73B8;
	font-weight: bold;
	display: inline-block; /* needed for transition */
	transition: transform 0.2s ease;
}

.single-story a::before {
	content: "← ";
	font-weight: bold;
}

.single-story a:hover {
	transform: translateX(-5px);
}

/* --------------------------------
	STORY
---------------------------------- */
.separator {
	width: 30%;
	height: 5px;
	background-color: #1A73B8;
	border-radius: 5px;
	margin: 2rem auto;
}

.single-story {
	margin: 5rem auto 10rem;
}

.single-story p, .single-story ul {
	line-height: 2rem;
	margin-bottom: 2em;
	list-style-position: inside;
}

.single-story li {
	margin-bottom: 0.5rem;
}

.story-header {
	margin: 2rem 0 3rem;
	text-align: center;
}

.story-header h1 {
	margin-bottom: 2rem;
	font-size: clamp(2.5rem, 5vw, 3rem);
}

.story-details {
	font-style: italic;
	text-align: center;
}

.story-content h2 {
	margin: 5rem 0 1.5rem;
}

.story-content {
	margin: 3rem 0;
	text-align: center;
}

.story-callout {
	background: linear-gradient(135deg, #e4ecf2, #d5dfe7);
	padding: 5rem 5rem;
	border-radius: 5px;
	margin-bottom: 3rem;
	text-align: center;
}

.story-callout h2 {
	margin: 1.5rem 0 1rem;
}

.two-col-box {
	display: flex;
	flex-direction: row;
	gap: 4rem;
	align-items: center;
}

.video-col iframe {
	border-radius: 5px;
	width: clamp(300px, 40vw, 500px);
	height: clamp(300px, 40vw, 500px);
}

.text-col {
	text-align: left;
}

@media(max-width: 1200px) {
	.two-col-box {
		flex-direction: column;
	}
}

