@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 300;
	src: url("font/roboto/Roboto-Light.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 400;
	src: url("font/roboto/Roboto-Regular.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 500;
	src: url("font/roboto/Roboto-Medium.woff2") format("woff2");
}

@font-face {
	font-family: "Roboto";
	font-style: normal;
	font-weight: 700;
	src: url("font/roboto/Roboto-Bold.woff2") format("woff2");
}

:root {
	--sil-deep-blue: #172b4a;
	--sil-dark-blue: #121f3f;
	--sil-blue: #587198;
	--sil-accent: #4c739f;
	--sil-sky: #b7cbe5;
	--sil-pale: #f0f3f8;
	--sil-ink: #273247;
	--sil-muted: #657084;
	--sil-white: #fff;
	--sil-shadow: 0 18px 45px rgba(18, 31, 63, .13);
}

html {
	scroll-behavior: smooth;
}

body {
	background:
		linear-gradient(180deg, var(--sil-pale) 0, #fff 18rem);
	color: var(--sil-ink);
	font-family: "Roboto", sans-serif;
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.7;
}

a {
	color: #3f6597;
	text-decoration-thickness: .08em;
	text-underline-offset: .18em;
}

a:hover,
a:focus {
	color: var(--sil-deep-blue);
}

.sil-navbar {
	min-height: 82px;
	background:
		radial-gradient(circle at 86% -60%, rgba(116, 150, 197, .24), transparent 38%),
		linear-gradient(90deg, #121f3f, #172b4a 62%, #29466b);
	border-bottom: 1px solid rgba(183, 203, 229, .2);
	box-shadow: 0 8px 28px rgba(18, 31, 63, .24);
}

.navbar-brand {
	display: inline-flex;
	gap: .75rem;
	align-items: center;
	margin-right: 1.5rem;
	color: var(--sil-white);
	text-decoration: none;
}

.navbar-brand:hover,
.navbar-brand:focus {
	color: var(--sil-white);
}

.sil-brand-mark {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	color: var(--sil-deep-blue);
	font-size: 1.15rem;
	font-weight: 700;
	letter-spacing: -.04em;
	background: linear-gradient(145deg, #fff, var(--sil-sky));
	border: 1px solid rgba(255, 255, 255, .78);
	border-radius: 50%;
	box-shadow: 0 0 24px rgba(183, 203, 229, .35);
}

.sil-brand-name {
	display: flex;
	flex-direction: column;
	line-height: 1.05;
}

.sil-brand-name strong {
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: .015em;
}

.sil-brand-name small {
	margin-top: .27rem;
	color: var(--sil-sky);
	font-size: .68rem;
	font-weight: 500;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.navbar .nav-link {
	position: relative;
	padding: .8rem .7rem !important;
	color: rgba(255, 255, 255, .78);
	font-size: .96rem;
	font-weight: 400;
	text-decoration: none;
	transition: color .2s ease;
}

.navbar .nav-link::after {
	position: absolute;
	right: .7rem;
	bottom: .48rem;
	left: .7rem;
	height: 2px;
	content: "";
	background: var(--sil-sky);
	border-radius: 999px;
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .2s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
	color: var(--sil-white);
}

.navbar .nav-link:hover::after,
.navbar .nav-link:focus::after {
	transform: scaleX(1);
}

.navbar-toggler {
	border-color: rgba(255, 255, 255, .32);
}

.sil-nav-button {
	margin: 0;
	padding: .68rem 1.15rem;
	color: var(--sil-deep-blue);
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .035em;
	background: var(--sil-sky);
	border: 1px solid var(--sil-sky);
	border-radius: 999px;
	box-shadow: none;
	text-transform: none;
}

.sil-nav-button:hover,
.sil-nav-button:focus {
	color: var(--sil-deep-blue);
	background: var(--sil-white);
	border-color: var(--sil-white);
}

.site-main {
	min-height: 60vh;
	padding-top: 6.25rem;
}

.post {
	margin-bottom: 2rem;
}

.post-title {
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
}

.post-title h1 {
	margin-bottom: 1.25rem;
	color: var(--sil-deep-blue);
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	font-weight: 500;
	letter-spacing: -.025em;
	line-height: 1.15;
}

.post-body {
	max-width: 1140px;
	margin-right: auto;
	margin-left: auto;
}

.courosel-hero-image {
	position: relative;
	isolation: isolate;
	display: flex;
	min-height: 340px;
	align-items: center;
	overflow: hidden;
	background-image: url("img/cloud-image.jpeg");
	background-position: center;
	background-size: cover;
	border: 0;
	border-radius: 1.1rem;
	box-shadow: 0 24px 65px rgba(18, 31, 63, .24);
	visibility: visible;
}

.courosel-hero-image::before {
	position: absolute;
	z-index: -1;
	inset: 0;
	content: "";
	background:
		radial-gradient(circle at 20% 38%, rgba(183, 203, 229, .08), transparent 32%),
		linear-gradient(90deg, rgba(6, 18, 31, .42) 0%, rgba(12, 38, 58, .34) 48%, rgba(23, 43, 58, .08) 100%);
}

.courosel-hero-image .card-body {
	max-width: 1100px;
	padding: 3rem !important;
	margin: 0 auto !important;
	justify-content: center;
	text-align: center !important;
}

.lead-title {
	display: block;
	margin-bottom: 1rem;
	font-size: clamp(2.35rem, 5vw, 3.8rem);
	font-weight: 500;
	letter-spacing: -.045em;
	line-height: 1.02;
	text-wrap: balance;
	text-shadow: 0 3px 22px rgba(0, 0, 0, .35);
}

@media (min-width: 768px) {
	.lead-title {
		white-space: nowrap;
	}
}

.lead-description {
	display: block;
	max-width: 680px;
	margin: 0 auto;
	color: #e9eff8;
	font-size: clamp(1.1rem, 2.3vw, 1.45rem);
	font-weight: 300;
	line-height: 1.55;
	text-wrap: balance;
}

.post-body > div > hr,
.post-body hr.my-5 {
	margin: .75rem 0 1rem !important;
	color: rgba(88, 113, 152, .36);
}

.post-body section.text-center .row {
	justify-content: center;
}

.post-body section.text-center .row > [class*="col-"] {
	display: flex;
}

.card {
	overflow: hidden;
	border: 1px solid rgba(88, 113, 152, .2);
	border-radius: 1rem;
	box-shadow: var(--sil-shadow);
}

.post-body section.text-center .card {
	width: 100%;
	background: var(--sil-white);
	transition: transform .25s ease, box-shadow .25s ease;
}

.post-body section.text-center .card:hover {
	box-shadow: 0 24px 55px rgba(18, 31, 63, .19);
	transform: translateY(-6px);
}

.view {
	position: relative;
	overflow: hidden;
	cursor: default;
}

.view::after {
	position: absolute;
	z-index: 1;
	inset: auto 0 0;
	height: 62%;
	content: "";
	background: linear-gradient(transparent, rgba(18, 31, 63, .82));
	pointer-events: none;
}

.view img,
.card-img-top {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform .5s ease;
}

.card:hover .view img {
	transform: scale(1.025);
}

.view .mask {
	position: absolute;
	inset: 0;
	z-index: 2;
	overflow: hidden;
}

.view .card-title {
	position: absolute;
	z-index: 3;
	right: 1.5rem;
	bottom: 1.15rem;
	left: 1.5rem;
	margin: 0;
	color: var(--sil-white);
	font-size: 1.45rem;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	text-shadow: 0 2px 12px rgba(0, 0, 0, .65);
}

.view .card-title a,
.view .card-title a:visited,
.view .card-title a:hover,
.view .card-title a:focus,
.view .card-title a:active {
	color: var(--sil-white);
	text-decoration: none;
}

.card .card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	align-items: center;
	padding: 1.75rem;
}

.card .card-body .card-title {
	margin-bottom: .8rem;
	color: var(--sil-deep-blue);
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: -.015em;
}

.card .card-body .card-text {
	flex: 1;
	margin-bottom: 1.35rem;
	color: var(--sil-muted);
	font-size: .98rem;
	font-weight: 400;
	line-height: 1.6;
}

.btn {
	padding: .72rem 1.35rem;
	font-size: .85rem;
	font-weight: 700;
	letter-spacing: .025em;
	border-radius: 999px;
	box-shadow: none;
	text-transform: none;
}

.btn-primary {
	color: var(--sil-white);
	background: var(--sil-accent);
	border: 1px solid var(--sil-accent);
}

.btn-primary:hover,
.btn-primary:focus {
	color: var(--sil-white);
	background: var(--sil-deep-blue);
	border-color: var(--sil-deep-blue);
}

.lead {
	font-size: 1.08rem;
	font-weight: 400;
}

blockquote {
	position: relative;
	width: 100%;
	max-width: none;
	padding: 1.5rem 1.75rem 1.5rem 4rem !important;
	margin: 2rem 0 !important;
	color: var(--sil-deep-blue);
	background:
		linear-gradient(135deg, rgba(240, 243, 248, .96), rgba(255, 255, 255, .98));
	border: 0 !important;
	border-left: 4px solid var(--sil-accent) !important;
	border-radius: 0 .8rem .8rem 0;
	box-shadow: 0 12px 30px rgba(18, 31, 63, .09);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	font-style: italic;
	line-height: 1.75;
}

blockquote::before {
	position: absolute;
	top: .4rem;
	left: 1rem;
	color: var(--sil-sky);
	content: "\201C";
	font-family: Georgia, "Times New Roman", serif;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
}

blockquote p,
blockquote .lead {
	margin: 0;
	font: inherit;
}

blockquote strong,
blockquote cite {
	display: block;
	margin-top: .65rem;
	color: var(--sil-blue);
	font-family: "Roboto", sans-serif;
	font-size: .78rem !important;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.mission-vision-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin: 2.5rem 0 1rem;
}

.mission-vision-grid > section {
	padding: 2rem;
	background: var(--sil-pale);
	border: 1px solid rgba(88, 113, 152, .2);
	border-radius: .9rem;
	box-shadow: 0 12px 30px rgba(18, 31, 63, .08);
}

.mission-vision-grid h2 {
	margin-bottom: 1.25rem;
	color: var(--sil-deep-blue);
	font-size: 1.6rem;
	font-weight: 500;
}

.mission-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.mission-list li {
	position: relative;
	padding-left: 1.8rem;
	margin-bottom: 1rem;
}

.mission-list li:last-child {
	margin-bottom: 0;
}

.mission-list li::before {
	position: absolute;
	top: .65rem;
	left: .2rem;
	width: .45rem;
	height: .45rem;
	content: "";
	background: var(--sil-accent);
	border-radius: 50%;
}

.vision-statement {
	margin: 0;
	color: var(--sil-deep-blue);
	font-family: Georgia, "Times New Roman", serif;
	font-size: 1.2rem;
	line-height: 1.75;
}

.media-player-section {
	padding-top: 1.5rem;
}

.media-player-section > .lead {
	width: 100%;
	margin-bottom: 1.5rem;
}

.media-player-panel {
	width: 100%;
	padding: 1.25rem;
	background: var(--sil-white);
	border: 1px solid rgba(88, 113, 152, .24);
	border-radius: 1rem;
	box-shadow: var(--sil-shadow);
}

.media-player-panel h2 {
	margin: 0 0 1rem;
	color: var(--sil-blue);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.apple-podcast-player {
	display: block;
	width: 100%;
	height: 450px;
	overflow: hidden;
	border: 0;
	border-radius: .7rem;
}

.media-subscriptions {
	width: 100%;
	padding: 1.75rem;
	margin-top: 2rem;
	background: var(--sil-pale);
	border: 1px solid rgba(88, 113, 152, .2);
	border-radius: .9rem;
}

.media-switch {
	display: inline-grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	overflow: hidden;
	margin: .25rem 0 .75rem;
	background: var(--sil-pale);
	border: 1px solid rgba(88, 113, 152, .35);
	border-radius: 999px;
}

.media-switch a,
.media-switch span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 190px;
	padding: .7rem 1.25rem;
	font-size: .9rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.media-switch a {
	color: var(--sil-deep-blue);
	transition: background .2s ease, color .2s ease;
}

.media-switch a:hover,
.media-switch a:focus {
	color: var(--sil-deep-blue);
	background: rgba(183, 203, 229, .42);
}

.media-switch [aria-current="page"] {
	color: var(--sil-white);
	background: var(--sil-deep-blue);
}

.media-subscriptions h2 {
	margin-bottom: .35rem;
	color: var(--sil-deep-blue);
	font-size: 1.5rem;
	font-weight: 500;
}

.media-subscriptions p {
	margin-bottom: 1.25rem;
	color: var(--sil-muted);
}

.media-subscription-links {
	display: flex;
	flex-wrap: wrap;
	gap: .75rem;
}

.media-subscription-link {
	display: inline-flex;
	gap: .6rem;
	align-items: center;
	padding: .75rem 1.2rem;
	color: var(--sil-white);
	background: var(--sil-accent);
	border: 1px solid var(--sil-accent);
	border-radius: 999px;
	font-size: .9rem;
	font-weight: 700;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease;
}

.media-subscription-link:hover,
.media-subscription-link:focus {
	color: var(--sil-white);
	background: var(--sil-deep-blue);
	border-color: var(--sil-deep-blue);
}

.media-subscription-link i {
	font-size: 1.15rem;
}

.teaching-overview {
	width: 100%;
	padding: 1.75rem 0 .5rem;
}

.teaching-overview > span {
	display: block;
	margin-bottom: .55rem;
	color: var(--sil-blue);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.teaching-overview .lead {
	margin-bottom: .75rem;
	color: var(--sil-deep-blue);
	font-size: 1.2rem;
	line-height: 1.6;
}

.teaching-summary {
	display: grid;
	grid-template-columns: 1fr;
	gap: .55rem;
	padding-left: 1.5rem;
	margin: 1.35rem 0 0;
}

.teaching-summary li {
	padding-left: .25rem;
	color: var(--sil-deep-blue);
}

.teaching-summary li::marker {
	color: var(--sil-accent);
}

.teaching-summary a {
	color: var(--sil-muted);
	line-height: 1.5;
	text-decoration: none;
}

.teaching-summary a:hover,
.teaching-summary a:focus {
	color: var(--sil-deep-blue);
}

.teaching-summary strong {
	color: var(--sil-deep-blue);
	font-weight: 700;
}

.teaching-path {
	margin-top: 2rem;
}

.teaching-section {
	padding: 2rem;
	margin-bottom: 1.5rem;
	background: var(--sil-pale);
	border: 1px solid rgba(88, 113, 152, .2);
	border-radius: 1rem;
	scroll-margin-top: 6.5rem;
}

.teaching-section > header {
	display: flex;
	gap: 1rem;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.teaching-section > header > span {
	display: grid;
	flex: 0 0 2.75rem;
	width: 2.75rem;
	height: 2.75rem;
	place-items: center;
	color: var(--sil-white);
	background: var(--sil-deep-blue);
	border-radius: 50%;
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .05em;
}

.teaching-section > header h2 {
	margin: 0 0 .25rem;
	color: var(--sil-deep-blue);
	font-size: 1.55rem;
	font-weight: 500;
}

.teaching-section > header p {
	max-width: 800px;
	margin: 0;
	color: var(--sil-muted);
	line-height: 1.55;
}

.teaching-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
}

.teaching-grid-single {
	grid-template-columns: minmax(0, 1fr);
	max-width: calc(50% - .5rem);
}

.teaching-card {
	display: flex;
	flex-direction: column;
	padding: 1.4rem;
	background: var(--sil-white);
	border: 1px solid rgba(88, 113, 152, .18);
	border-radius: .8rem;
	box-shadow: 0 8px 22px rgba(18, 31, 63, .06);
}

.teaching-card-meta {
	display: flex;
	justify-content: flex-end;
	margin-bottom: .4rem;
	color: var(--sil-blue);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.teaching-card h3 {
	margin-bottom: .65rem;
	color: var(--sil-deep-blue);
	font-size: 1.25rem;
	font-weight: 500;
}

.teaching-card > p {
	margin-bottom: .9rem;
	color: var(--sil-muted);
	font-size: .96rem;
	line-height: 1.6;
}

.teaching-card .teaching-scripture {
	flex: 1;
	padding-top: .8rem;
	border-top: 1px solid rgba(88, 113, 152, .16);
	font-size: .84rem;
}

.teaching-scripture strong {
	color: var(--sil-deep-blue);
}

.teaching-listen {
	display: inline-flex;
	gap: .5rem;
	align-items: center;
	width: fit-content;
	margin-top: .25rem;
	color: var(--sil-white);
	font-size: .88rem;
	font-weight: 700;
	text-decoration: none;
}

.teaching-listen,
.teaching-listen:visited {
	padding: .65rem 1rem;
	color: var(--sil-white);
	background: var(--sil-accent);
	border-radius: 999px;
}

.teaching-listen:hover,
.teaching-listen:focus {
	color: var(--sil-white);
	background: var(--sil-deep-blue);
}

.teaching-listen i {
	font-size: .7rem;
}

.beliefs-intro {
	padding-bottom: 1.25rem;
	margin-bottom: 1.5rem;
	color: var(--sil-deep-blue);
	border-bottom: 1px solid rgba(88, 113, 152, .2);
}

.beliefs-creed {
	padding: 1.5rem 1.75rem;
	background: var(--sil-pale);
	border: 1px solid rgba(88, 113, 152, .2);
	border-radius: .9rem;
}

.beliefs-creed p {
	padding: 0;
	margin: 0 0 1.35rem;
	color: var(--sil-ink);
	font-size: 1.125rem;
	line-height: 1.65;
}

.beliefs-creed p:last-child {
	margin-bottom: 0;
}

.beliefs-creed strong {
	color: var(--sil-deep-blue);
	font-weight: 700;
}

.teaching-callout {
	display: flex;
	gap: 2rem;
	align-items: center;
	justify-content: space-between;
	padding: 1.75rem;
	margin: 2rem 0 1rem;
	background: var(--sil-pale);
	border: 1px solid rgba(88, 113, 152, .2);
	border-left: 4px solid var(--sil-accent);
	border-radius: 0 .9rem .9rem 0;
}

.teaching-callout > div {
	max-width: 760px;
}

.teaching-callout span {
	display: block;
	margin-bottom: .35rem;
	color: var(--sil-blue);
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.teaching-callout h2 {
	margin-bottom: .45rem;
	color: var(--sil-deep-blue);
	font-size: 1.45rem;
	font-weight: 500;
}

.teaching-callout p {
	margin: 0;
	color: var(--sil-muted);
	line-height: 1.6;
}

.teaching-callout > a {
	display: inline-flex;
	flex: 0 0 auto;
	gap: .5rem;
	align-items: center;
	padding: .7rem 1.1rem;
	color: var(--sil-white);
	background: var(--sil-accent);
	border-radius: 999px;
	font-size: .88rem;
	font-weight: 700;
	text-decoration: none;
}

.teaching-callout > a:hover,
.teaching-callout > a:focus {
	color: var(--sil-white);
	background: var(--sil-deep-blue);
}

.location-card {
	display: flex;
	gap: 1.25rem;
	max-width: 850px;
	padding: 1.5rem;
	margin: 2rem 0 1rem;
	background: var(--sil-pale);
	border: 1px solid rgba(88, 113, 152, .2);
	border-radius: .9rem;
}

.location-card > i {
	display: grid;
	flex: 0 0 3rem;
	width: 3rem;
	height: 3rem;
	place-items: center;
	color: var(--sil-white);
	background: var(--sil-accent);
	border-radius: 50%;
	font-size: 1.1rem;
}

.location-card h2 {
	margin-bottom: .5rem;
	color: var(--sil-deep-blue);
	font-size: 1.4rem;
	font-weight: 500;
}

.location-card p {
	margin-bottom: .75rem;
	color: var(--sil-ink);
	line-height: 1.55;
}

.location-card a {
	display: inline-flex;
	gap: .45rem;
	align-items: center;
	font-size: .9rem;
	font-weight: 700;
}

.location-card a i {
	font-size: .75rem;
}

.font-small {
	font-size: .9rem;
}

.sil-footer {
	padding-top: 4.5rem;
	color: rgba(255, 255, 255, .76);
	background:
		radial-gradient(circle at 76% 0, rgba(109, 146, 199, .18), transparent 38%),
		linear-gradient(135deg, #121f3f, #172b4a 62%, #29466b);
	border-top: 1px solid rgba(183, 203, 229, .2);
}

.sil-footer-brand {
	margin-bottom: .8rem;
	color: var(--sil-white);
	font-size: 1.75rem;
	font-weight: 500;
	letter-spacing: -.025em;
}

.sil-footer-description {
	max-width: 480px;
	margin: 0;
	line-height: 1.7;
}

.sil-footer h2 {
	margin-bottom: .9rem;
	color: var(--sil-sky);
	font-size: .78rem;
	font-weight: 700;
	letter-spacing: .14em;
	text-transform: uppercase;
}

.sil-location {
	margin-bottom: .75rem;
	color: rgba(255, 255, 255, .76);
	font-style: normal;
	line-height: 1.65;
}

.sil-footer a {
	display: block;
	width: fit-content;
	margin-bottom: .45rem;
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
}

.sil-footer a:hover,
.sil-footer a:focus {
	color: var(--sil-white);
	text-decoration: underline;
	text-decoration-color: var(--sil-sky);
}

.sil-footer .footer-copyright {
	margin-top: 3.5rem;
	padding: 1.15rem 0;
	color: rgba(255, 255, 255, .55);
	background: rgba(0, 0, 0, .18);
	font-size: .86rem;
}

@media (min-width: 1400px) {
	.container {
		max-width: 1180px;
	}
}

@media (max-width: 991.98px) {
	.sil-navbar {
		min-height: 74px;
	}

	.navbar-collapse {
		padding: 1rem 0 .5rem;
	}

	.navbar .nav-link {
		padding: .65rem 0 !important;
	}

	.navbar .nav-link::after {
		display: none;
	}

	.sil-nav-button {
		display: inline-block;
		margin: .6rem 0 .4rem;
	}

	.site-main {
		padding-top: 5.5rem;
	}
}

@media (max-width: 767.98px) {
	body {
		font-size: 1rem;
	}

	.sil-brand-name {
		display: none;
	}

	.courosel-hero-image {
		min-height: 320px;
		background-position: 18% center;
		border-radius: .8rem;
	}

	.courosel-hero-image .card-body {
		padding: 1.75rem !important;
	}

	.post-body hr.my-5 {
		margin: .75rem 0 1rem !important;
	}

	blockquote {
		padding: 1.25rem 1.25rem 1.25rem 3.25rem !important;
		margin: 1.5rem 0 !important;
		font-size: 1.05rem;
	}

	blockquote::before {
		left: .75rem;
		font-size: 3.25rem;
	}

	.mission-vision-grid {
		gap: 1rem;
		margin-top: 2rem;
	}

	.mission-vision-grid > section {
		padding: 1.5rem;
	}

	.media-subscriptions {
		padding: 1.5rem;
	}

	.media-player-panel {
		padding: .85rem;
	}

	.apple-podcast-player {
		height: 410px;
	}

	.media-switch {
		display: grid;
		width: 100%;
		border-radius: .75rem;
	}

	.media-switch a,
	.media-switch span {
		min-width: 0;
		padding: .75rem .65rem;
	}

	.media-subscription-links {
		flex-direction: column;
	}

	.media-subscription-link {
		justify-content: center;
	}

	.teaching-section {
		padding: 1.35rem;
	}

	.teaching-summary {
		grid-template-columns: 1fr;
	}

	.teaching-section > header h2 {
		font-size: 1.35rem;
	}

	.teaching-grid,
	.teaching-grid-single {
		grid-template-columns: 1fr;
		max-width: none;
	}

	.teaching-callout {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.25rem;
		padding: 1.4rem;
	}

	.beliefs-creed {
		padding-right: 1.25rem;
		padding-left: 1.25rem;
	}

	.location-card {
		gap: 1rem;
		padding: 1.25rem;
	}

	.location-card > i {
		flex-basis: 2.5rem;
		width: 2.5rem;
		height: 2.5rem;
	}

	.sil-footer {
		padding-top: 3.25rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.post-body section.text-center .card,
	.view img {
		transition: none;
	}
}
