.article .breadcrumb {
	display: inline-flex;
	padding: 0px 0px 18px 0px;
	margin-bottom: 10px;
	list-style: none;
	background-color: transparent;
	border-radius: 6px;
	border-bottom: 1px solid #dfe1e36e;
}

.article .breadcrumb a {
	color: #505253c4;
}

a.breadcrumb-deepest-link {
	font-weight: bold;
	color: #333 !important;
}

.article .breadcrumb span {
	font-weight: bold;
	color: var(--gb-orange-text);
}

/* ==========================================================================
   Article Posts
========================================================================== */
.article-wrapper {
	background: linear-gradient(0deg, #ffffff 80%, #f6fdff 100%);
	padding: 0px;
	position: relative;
}

.article {
	display: flex;
	max-width: var(--1280);
	margin: 0px auto;
	flex-direction: column;
	align-items: flex-start;
	margin-top: 30px;
}

.article .title {
	text-align: left;
	margin: 0px;
}

.article .title h1 {
	font-family: var(--font-family);
	color: var(--primary-900);
	font-size: 48px;
	line-height: 130%;
	font-weight: 900;
	width: 100%;
	margin: 0px auto;
	padding: 0px;
}

.article .featured-image-container {
	position: relative;
}

.article .featured-image-container .featured-image-caption {
	margin: 0px;
	padding: 12px 30px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border-bottom: 1px dashed #daebef;
	border-top: 0px;
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: var(--gray-900);
	background: linear-gradient(180deg, rgba(245, 251, 254, 0.5) 0%, rgba(255, 255, 255, 1) 90%);
}

.article .featured-image-container .featured-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.content-container {
	max-width: var(--1280);
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 60px;
}

.content-container .left-sidebar,
.content-container .right-sidebar {
	width: 30%;
}

.content-container .main-content {
	max-width: 840px;
	width: 70%;
}

.content-container .main-content :first-child {
	margin-top: 0px;
}

.categories {
	margin: 0px auto;
	padding: 0px;
	list-style: none;
	display: flex;
	align-items: center;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 6px;
}

.categories li {
	margin: 0px;
}

.categories li a {
	border: 1px solid var(--gb-grey-one);
	border-radius: 6px;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--gb-dark-grey-text);
	text-decoration: none;
	padding: 10px 24px;
	transition: var(--animate-transition);
}

.left-sidebar h2,
.reading-time h2,
.right-sidebar h2 {
	color: #4d4f50;
	font-size: 14px;
	font-weight: 500;
	margin: 0px;
	padding: 0px;
	margin-bottom: 16px;
}

.reading-time h2 {
	margin-bottom: 8px;
}

.reading-time div {
	display: flex;
}

.reading-time div svg {
	width: 18px;
	margin-right: 4px;
	color: var(--gb-blue);
}

.article-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-bottom: 16px;
	margin-bottom: 16px;
	border-bottom: 1px solid #daebef;
}

.author-info {
	font-size: 14px;
	color: #4d4f50;
}

.author-info a {
	font-size: 16px;
	line-height: 20px;
	color: var(--primary-900);
	margin: 0px;
	padding: 0px;
	font-weight: 600;
	display: block;
}

.post-intro {
	border: 1px solid #daebef;
	margin-bottom: 24px;
	padding-bottom: 24px;
	background-color: #eaf7f980;
	padding-top: 24px;
	border-radius: 12px;
}

.content-container .main-content .post-intro p {
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
	color: var(--primary-900);
}

.post-intro p:last-of-type {
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.content-container .main-content figure {
	margin: 3em auto;
	position: relative;
}

.content-container .main-content img {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e4f1fb;
	box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08);
	border-radius: 12px;
	background-color: #fff;
}

.content-container .main-content figcaption {
	margin: 0px;
	padding: 12px 30px;
	border-bottom-left-radius: 12px;
	border-bottom-right-radius: 12px;
	border-bottom: 1px dashed #daebef;
	border-top: 0px;
	display: block;
	font-size: 14px;
	line-height: 20px;
	color: var(--gray-900);
	background: linear-gradient(180deg, rgba(245, 251, 254, 0.5) 0%, rgba(255, 255, 255, 1) 90%);
}

.content-container .main-content a {
	font-weight: 500;
	color: var(--gb-blue-text);
	text-decoration: none;
	border-bottom: 2px solid #c1e1f4;
	transition: var(--animate-transition);
}

.content-container .main-content a:hover {
	color: var(--primary-900);
	border-bottom-color: var(--gb-orange-text);
}

.content-container .main-content p {
	color: var(--gray-900);
	font-size: 18px;
	padding: 0px 30px;
	margin-bottom: 1em;
	margin-top: 1em;
	line-height: 32px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.content-container .main-content h2 {
	font-weight: 800;
	font-size: 32px;
	line-height: 42px;
	color: var(--primary-900);
	display: flex;
	margin: 0px;
	margin-top: 1em;
	margin-bottom: 20px;
	padding: 0px 30px;
}

.content-container .main-content h3 {
	font-weight: 800;
	font-size: 26px;
	line-height: 30px;
	color: var(--primary-900);
	display: flex;
	margin: 0px;
	margin-bottom: 20px;
	padding: 0px 30px;
}

.content-container .main-content ul {
	margin: 0px;
	margin-bottom: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	box-sizing: border-box;
	list-style: none;
	padding-inline-start: 60px;
	margin-right: 30px;
	margin-bottom: 30px;
}

.content-container .main-content ul li {
	font-size: 18px;
	line-height: 32px;
	color: var(--primary-900);
	padding-left: 18px;
	background-image: url(../img/blue-bullet-fill.png);
	background-repeat: no-repeat;
	background-position: 0px 14px;
	margin-top: 1em;
	margin-bottom: 1em;
}

.content-container .main-content ol {
	margin: 0px;
	margin-bottom: 10px;
	padding-top: 0px;
	padding-bottom: 0px;
	box-sizing: border-box;
	padding-inline-start: 60px;
	margin-right: 30px;
}

.content-container .main-content ol li {
	font-size: 18px;
	line-height: 32px;
	color: var(--gray-900);
	margin-top: 1em;
	margin-bottom: 1em;
}

.related-posts-wrapper {
	font-family: var(--font-family);
	background:
		linear-gradient(0deg, rgba(244, 252, 255, 0.53), rgba(244, 252, 255, 0.53)), var(--gb-white);
	font-weight: 400;
	font-size: 24px;
	line-height: 154%;
	color: var(--gb-dark-grey-text);
	padding: 60px 0px;
}

.related-posts-container {
	max-width: var(--1280);
	margin: 0px auto;
	background: url(../img/team-member-shapes-bg.png) center center no-repeat;
	background-size: contain;
}

.related-posts-container h3 {
	font-family: var(--font-family);
	font-weight: 800;
	font-size: 34px;
	color: var(--primary-900);
	display: flex;
	justify-content: flex-start;
	text-align: center;
	max-width: 1280px;
	margin: 0px auto 60px auto;
}

.related-posts-container h3::after {
	content: url(../img/heading-div.svg);
	display: inline-flex;
	margin-left: 12px;
	height: 30px;
	align-items: center;
}

.related-posts {
	margin-top: 4rem;
}

.related-posts h3 {
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.related-posts-grid {
	display: flex;
	gap: 50px;
	list-style: none;
	padding: 0;
	flex-wrap: wrap;
}

.related-post {
	flex: 1 1 30%;
	display: flex;
	flex-direction: column;
	text-align: center;
	border-radius: 16px;
	background-color: var(--gb-white);
	border: 1px solid #d4e9f1;
	font-weight: 500;
	font-size: 16px;
	transition: var(--animate-transition);
}

.related-post:hover {
	filter: drop-shadow(0px 0px 30px rgba(173, 217, 228, 0.6));
}

.related-thumbnail {
	width: 100%;
	max-width: 100%;
	max-height: 200px;
	aspect-ratio: 9 / 16;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.related-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.related-title {
	font-weight: 700;
	font-size: 22px;
	line-height: 30px;
	color: var(--gb-dark-grey-text);
	padding: 18px 30px;
	height: 100%;
	display: flex;
	align-items: center;
	width: 100%;
	justify-content: center;
}

.related-post a {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: var(--gb-dark-grey-text);
	position: relative;
	overflow: hidden;
	transition: var(--animate-transition);
	border-radius: 16px;
	border-bottom: 2px solid transparent;
	height: 100%;
}

.related-post a:hover {
	border-radius: 16px;
	border-bottom: 2px solid;
	border-color: var(--gb-orange-text);
}

.related-post a:hover .related-title {
	/* text-decoration: underline; */
}

.post-tags {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.post-tags li {
	margin: 0px;
	padding: 0px;
}

.post-tags li a {
	display: inline-flex;
	border: 1px solid #daebef;
	border-radius: 6px;
	padding: 4px 16px;
	background: #fff;
	color: var(--gb-blue-900);
}

.post-tags li a:hover {
	text-decoration: none;
	border-color: #007dba7a;
}

/* make videos and embeds responsive */
.wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 aspect ratio (height / width * 100) */
	height: 0;
	overflow: hidden;
	max-width: 100%;
	border: 1px solid #e4f1fb;
	box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08);
	border-radius: 12px;
}

.wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.wp-block-buttons {
	margin: 0px 30px;
}

.wp-block-button__link {
	background-color: var(--gb-white);
	border: 1px solid var(--gb-grey-one);
	border-radius: 6px;
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 18px;
	color: var(--gb-dark-grey-text);
	text-decoration: none;
	padding: 10px 24px;
	transition: var(--animate-transition);
}

.content-container .main-content .wp-block-pullquote {
	box-sizing: border-box;
	overflow-wrap: break-word;
	text-align: left;
	background: #f5fbfe;
	padding: 32px;
	border-radius: 12px;
	position: relative;
	margin-top: 2.5em;
	margin-bottom: 2.5em;
	border-left: 3px solid #b9ddf261;
	border-bottom: 1px dashed #b9ddf261;
}

.content-container .main-content .wp-block-pullquote::after {
	content: "\201C";
	color: var(--gb-blue-text);
	display: inline-flex;
	font-size: 70px;
	font-family: sans-serif;
	position: absolute;
	top: -36px;
	left: 30px;
	z-index: 1000;
}

.content-container .main-content .wp-block-pullquote cite,
.content-container .main-content .wp-block-quote cite {
	display: block;
	font-size: 20px;
	line-height: 40px;
	color: #004d72;
	margin: 0px 18px;
	padding: 0px;
	font-weight: 400;
	text-align: right;
	margin-top: 18px;
}

.content-container .main-content .wp-block-pullquote blockquote {
	margin: 0px;
	padding: 0px;
}

.content-container .main-content .wp-block-pullquote p {
	font-size: 28px;
	line-height: 40px;
	color: var(--primary-900);
	margin: 0px 18px;
	padding: 0px;
	font-weight: 400;
}

/* Normal Quote */
.content-container .main-content .wp-block-quote {
	margin: 0px;
	padding: 0px;
}

.content-container .main-content .wp-block-quote {
	box-sizing: border-box;
	overflow-wrap: break-word;
	text-align: left;
	background: #f5fbfe;
	padding: 32px;
	border-radius: 12px;
	position: relative;
	margin-top: 2.5em;
	margin-bottom: 2.5em;
}

.content-container .main-content .wp-block-quote::after {
	content: "\201C";
	color: var(--gb-blue-text);
	display: inline-flex;
	font-size: 70px;
	font-family: sans-serif;
	position: absolute;
	top: -36px;
	left: 30px;
}

.content-container .main-content .wp-block-quote p {
	font-size: 24px;
	line-height: 36px;
	color: var(--primary-900);
	margin: 0px 18px;
	padding: 0px;
	font-weight: 400;
}

/* .wp-block-image::before {
    content: url(../img/core-mark-left.svg);
    display: inline-flex;
    align-items: center;
    position: absolute;
    top: -30px;
    left: -24px;
}

.wp-block-image::after {
    content: url(../img/core-mark-right.svg);
    display: inline-flex;
    align-items: center;
    position: absolute;
    bottom: -30px;
    right: -24px;
} * /



/* Basic sticky TOC */
.toc {
	position: sticky;
	top: 18rem; /* adjust if you have a taller sticky header */
	max-height: calc(100vh - 2rem);
	overflow: auto;
	padding: 0;
}

.toc-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.toc-list li {
	font-size: 14px;
}

.toc-list a {
	display: block;
	padding: 0.25rem 0;
	text-decoration: none;
	color: #222;
	line-height: 1.35;
}

.toc-list a:hover {
	text-decoration: underline;
}

/* Active section highlight */
.toc-list a.active {
	font-weight: 600;
	text-decoration: underline;
}

.vimeo-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
	border: 1px solid #e4f1fb;
	box-shadow: 0px 0px 28px rgba(0, 156, 222, 0.08);
	border-radius: 12px;
	margin: 3em auto;
	position: relative;
}

.vimeo-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* When caption exists: adjust spacing */
.vimeo-figure.has-caption .vimeo-container {
	margin-bottom: 0;
}

.vimeo-figure.has-caption .vimeo-caption {
	margin-bottom: 3em; /* top margin for breathing room + bottom spacing */
}

.wp-block-separator {
	border: none; /* remove default line */
	height: 20px; /* adjust to match your image height */
	background: url("../img/hr-sep.png") no-repeat center;
	background-size: contain; /* or "cover" if you want it to stretch */
	margin: 4em auto; /* spacing */
	width: 100%; /* full width, or set a fixed width */
	max-width: 780px; /* constrain if needed */
}

.author-mobile {
	display: none;
}

/* ==========================================================================
   Added for Success Stories
========================================================================== */
.success-header-wrapper {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 50px;
	border-bottom: 1px solid #daebef;
	border-bottom-right-radius: 12px;
	border-bottom-left-radius: 12px;
	padding-bottom: 50px;
	margin-bottom: 50px;
	align-items: center;
}

.district-info {
	position: relative;
	width: 100%;
	background-color: var(--gb-white);
	padding: 3px;
	border: 1px solid rgba(0, 156, 222, 0.15);
	border-radius: 12px;
	display: flex;
	padding: 12px 30px;
	flex-direction: column;
}

.district-info .logo {
	display: inline-flex;
	margin: 0px auto;
	border: 1px solid #e4f1fb;
	border-radius: 200px;
	padding: 30px;
	background: #fff;
	width: fit-content;
	align-items: center;
	justify-content: center;
	margin-bottom: 18px;
	margin-top: 18px;
}

.district-info .logo img {
	max-width: 180px;
	width: 100%;
}

.district-info strong {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	opacity: 0.8;
}

.district-info ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	position: relative;
}

.district-info ul li:first-child {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	opacity: 0.8;
}

.district-info ul li:last-child {
	/* font-size: 24px; */
	font-size: 20px;
	color: #fff;
	font-weight: 800;
}

.district-info ul::before {
	content: "";
	position: absolute;
	top: 44%;
	left: 0;
	right: 0;
	border-top: 1px solid #ffffff24;
	z-index: 0;
}

.district-info ul > * {
	position: relative;
	z-index: 1;
	padding: 0 0.5rem;
}

/* ==========================================================================
   In This Story - TOC
========================================================================== */
.toc {
	position: sticky;
	top: 11rem;
	max-height: calc(100vh - 2rem);
	overflow: auto;
	padding: 30px;
	border: 1px solid #daebef;
	border-radius: 12px;
	background: #fff;
}

.toc h2 {
	color: var(--gb-dark-blue-text);
	font-size: 24px;
	font-weight: 700;
	border-bottom: 1px dashed #daebefc4;
	padding-bottom: 20px;
}

.toc-list {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.toc-list li {
	font-size: 16px;
	border-bottom: 1px solid #daebef94;
	padding-bottom: 12px;
}

.toc-list li:last-child {
	border-bottom: 0px;
	padding-bottom: 0px;
}

.toc-list a {
	display: block;
	padding: 0.25rem 0;
	text-decoration: none;
	color: #222;
	line-height: 1.35;
}

.toc-list a:hover {
	text-decoration: underline;
}

/* Active section highlight */
.toc-list a.active {
	font-weight: 800;
	text-decoration: none;
	color: var(--gb-blue);
}

/* ==========================================================================
   Responsive
========================================================================== */
@media only screen and (max-width: 1470px) {
	.related-posts-grid {
		max-width: var(--1280);
	}
}

@media only screen and (max-width: 1350px) {
	.related-posts-wrapper {
		padding-left: 60px;
		padding-right: 60px;
	}
}

@media only screen and (max-width: 1228px) {
	.related-posts-grid {
		gap: 25px;
	}
	.related-post {
		margin-bottom: 0px;
	}
}

@media only screen and (max-width: 1160px) {
	.related-posts-container h3 {
		font-size: 26px;
		margin: 0px auto 50px auto;
	}
	.related-posts-grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.related-post a {
		flex-direction: row;
	}
	.related-thumbnail {
		width: auto;
		min-width: 125px;
		max-width: 100%;
		aspect-ratio: 4 / 4;
	}
	.related-post img {
		border-radius: 0;
		margin-bottom: 0px;
		width: 125px;
		min-height: auto;
	}
	.related-title {
		font-size: 20px;
		padding: 0px;
		text-align: left;
		justify-content: flex-start;
		width: 100%;
		line-height: 28px;
		margin-left: 18px;
	}
	.related-post span {
		margin-bottom: 0px;
	}
	.related-post span,
	.related-post p {
		font-size: 14px;
	}
}

@media only screen and (max-width: 900px) {
	.related-posts-wrapper {
		padding-top: 45px;
		padding-bottom: 45px;
	}
}

@media only screen and (max-width: 768px) {
	.related-posts-container {
		background-size: contain;
	}
	.related-posts-grid {
		grid-template-columns: repeat(1, 1fr);
		gap: var(--mobile-viewport-spacing);
		margin-top: 25px;
	}
	.related-title {
		margin-right: 18px;
	}
	.related-post a {
		font-size: 16px;
		flex-wrap: nowrap;
		line-height: normal;
		margin-top: 0px;
		border-bottom: 0px;
	}
	.related-posts-container h3 {
		margin-bottom: 0px;
	}
}

@media only screen and (max-width: 834px) {
	.related-posts-wrapper {
		padding-left: var(--mobile-viewport-spacing);
		padding-right: var(--mobile-viewport-spacing);
	}
}

@media only screen and (max-width: 680px) {
	.article-wrapper {
		padding: 0px;
	}
	.article {
		padding-left: var(--mobile-viewport-spacing);
		padding-right: var(--mobile-viewport-spacing);
	}
	.content-container {
		flex-direction: column;
		word-wrap: break-word;
		overflow-wrap: break-word;
		margin-bottom: 45px;
	}
	.content-container .left-sidebar,
	.content-container .right-sidebar {
		width: 100%;
	}
	.content-container .main-content {
		max-width: none;
		width: 100%;
	}
	.article .title h1 {
		font-size: 24px;
	}
	.gb-subtitle__text {
		font-size: 18px;
	}
	.content-container .main-content h2 {
		font-size: 22px;
		line-height: 32px;
		padding: 0px;
	}
	.content-container .main-content p {
		font-size: 16px;
		line-height: 150%;
		padding: 0px;
	}
	.content-container .main-content .wp-block-pullquote {
		margin-top: 2em;
		margin-bottom: 2em;
		padding: 24px;
	}
	.content-container .main-content .wp-block-pullquote p {
		font-size: 18px;
		line-height: 28px;
		margin: 0px 0px;
	}
	.content-container .main-content .wp-block-pullquote::after {
		left: 12px;
		z-index: 1000;
	}
	.content-container .main-content figcaption {
		padding: 12px 15px;
		font-size: 12px;
		line-height: 18px;
	}
	.content-container .main-content figure,
	.article .featured-image-container,
	.wp-block-separator {
		margin: 2em auto;
	}
	.article .featured-image-container .featured-image-caption {
		padding: 12px;
		margin: 0px 12px;
	}
	.related-title {
		font-size: 16px;
		line-height: 24px;
		padding: 16px 0px;
	}
	.author-mobile {
		display: block;
	}
	.author-mobile .article-author {
		border-bottom: 0px;
		padding-bottom: 0px;
		margin-bottom: 0px;
	}
	.right-sidebar h2 {
		border-top: 1px solid #daebef;
		padding-top: 16px;
		margin-top: 16px;
	}
	.author-mobile h2 {
		border-top: 0px;
		padding-top: 0px;
		margin-top: 0px;
	}
	.author-desktop {
		display: none;
	}
	.reading-time {
		padding-bottom: 2em;
		border-bottom: 1px solid #daebef;
	}
	.content-container .main-content ol li,
	.content-container .main-content ul li {
		font-size: 16px;
		line-height: 150%;
	}
	.content-container .main-content ul {
		padding-inline-start: 30px;
		margin-right: 0px;
	}
	.content-container .main-content ul li {
		background-position: 0px 10px;
	}
	.content-container .main-content ol {
		padding-inline-start: 30px;
		margin-right: 0px;
	}
	.content-container .main-content .wp-block-pullquote cite,
	.content-container .main-content .wp-block-quote cite {
		font-size: 16px;
		line-height: 150%;
	}
}
