/* Home Banner CSS Rules
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.home-hero{
	color:var(--byu-white);
}

.home-banner{
	display:grid;
	padding-bottom:5rem;
	overflow: hidden;
}

.home-banner.home-banner--devotional{
	padding-bottom:0;
}

.home-banner__link-wrapper{
	grid-column:1/-1;
	grid-row:1/-1;
	width:100%;
}

.home-banner__featured-picture{
	height:100%;
	width:100%;
	position:absolute;
	object-fit: cover;
	animation: softZoomEffect 60s ease-in-out infinite;
	top:0;
	z-index:0;
}

@keyframes softZoomEffect {
	0%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.15);
	}
}

.home-banner__featured-picture img{
	height:100%;
	width:100%;
	object-position:center;
	object-fit:cover;
}

.home-banner__speaker-image{
	position:relative;
	border-radius:50%;
	grid-column:2/3;
	grid-row:3/4;
	align-self:center;
	width: 100px;
	height: 100px;
	overflow: hidden;
	object-fit: cover;
	object-position: top;
	justify-self: center;
	margin: 14px 0 0;
}

.home-banner__content-wrapper{
	display:grid;
	grid-template-columns:1fr max-content 1fr;
	grid-template-rows:repeat(7,auto);
}


.home-banner__supertext{
	font-family:var(--ibm-plex-sans-ssm);
	font-size:10px;
	font-weight:400;
	text-transform:uppercase;
	letter-spacing: 1.1px;
	opacity:0.5;
	margin:22px 0 0;
	grid-column:2/3;
	grid-row:1/2;
	justify-self:center;
}

.home-banner__tag-wrapper{
	display:flex;
	flex-direction:column;
	align-items:center;
	margin:2.75rem 0 0;
	grid-column:2/3;
	grid-row:2/3;
	justify-self:center;
}

.home-banner__tag{
	font-family:var(--ibm-plex-sans-ssm);
	font-size:10px;
	text-transform:uppercase;
	background-color:#626262;
	border-radius:6px;
	padding:0.375rem 1rem;
	letter-spacing:1px;
}

.home-banner__tag.home-banner__tag--devotional{
	background-color:transparent;
	border:1px solid var(--byu-white);
}

.home-banner__tag-text{
	font-family:var(--source-serif-pro);
	font-size:15px;
	font-style:italic;
	font-weight:300;
	color:var(--byu-white);
	letter-spacing:0.5px;
	margin-top:0.75rem;
}

.home-banner__header{
	max-width:325px;
	font-family:var(--ibm-plex-sans-ssm);
	font-size:41px;
	font-weight:400;
	text-align:center;
	line-height:1;
	padding:0 1rem;
	margin:0 0 0;
	grid-column:2/3;
	grid-row:4/5;
	justify-self:center;
	z-index:3;

}

.home-banner__subheader{
	font-family:var(--ibm-plex-sans-ssm);
	font-size:10px;
	font-weight:400;
	text-transform:uppercase;
	letter-spacing:3px;
	margin:.5rem;
	text-align:center;
	grid-column:2/3;
	grid-row:5/6;
	justify-self:center;
	z-index:3;
	width: 300px;
	line-height: 2;

}

.home-hero__button{
	display:inline-flex;
	align-items:center;
	justify-content: center;
	font-family:var(--ibm-plex-sans-ssm);
	font-size:13px;
	font-weight:bold;
	text-align:center;
	text-transform:uppercase;
	letter-spacing:1.5px;
	padding:14px 22px 13px;
	border:1px solid rgba(255,255,255,1);
	border-radius:6px;
	margin:0.5rem;
	grid-column:2/3;
	grid-row:6/7;
	min-width:70px;
	height:20px;
	justify-self:center;
}

.home-hero__button-icon{
	width:15px;
	height:15px;
	margin-right:10px;
}

.home-hero__button:hover{
	cursor:pointer;
	background-color:rgba(255,255,255,0.12);
}

.home-banner__undertext{
	margin-top:1rem;
	margin-bottom:1.5rem;
	display:flex;
	z-index:1;
	color:#6FBDFE;
	font-family:var(--ibm-plex-sans-ssm),serif;
	text-align:center;
	font-size:26px;
	font-weight:bolder;
	grid-column:2/3;
	grid-row:7/8;
	justify-self:center;
}


@media(min-width:640px){

	.home-banner__supertext{
		letter-spacing:2.3px;
		margin-top:24px;
	}

	.home-banner__tag-wrapper{
		flex-direction:row;
		margin-top:3.5rem;
	}

	.home-banner__tag-text{
		font-size:25px;
		margin:0 0 0 1rem;
	}

	.home-banner__header{
		max-width:640px;
		font-size:59px;
		letter-spacing:0.5px;
		margin:0 0 0;
	}

	.home-banner__subheader {
		width: auto;
	}

	.home-banner.home-hero__button{
		margin-top:0.5rem;
	}

	.home-banner__undertext{
		font-size:47px;
		margin-top:3rem;
	}
	.home-banner__speaker-image{
		width: 120px;
		height: 120px;
	}
}

@media(min-width:1200px){
	.home-banner__header{
		max-width:1200px;
		font-size: 59px;
		margin:1rem 0 0;
	}

	.home-banner__speaker-image{
		grid-row:4/6;
		grid-column:1/2;
		justify-self:end;
		align-self: start;
		margin: 0 10px;
	}

}


/* Ribbon CSS Rules
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.home-ribbon {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: var(--source-serif-pro);
	text-align: center;
	background-color: #80a5d0;
	padding: 1.5rem 0;
}

.home-ribbon__text-wrapper {
	display: grid;
	grid-auto-flow: row;
	grid-row-gap: 0.75rem;
	margin-bottom: 1.5rem;
}

.home-ribbon__title {
	font-size: 1.4rem;
	line-height: 1.25;
	padding: 0 1rem;
}

.home-ribbon__text-separator {
	display: none;
	font-size: 1.3125rem;
	font-weight: 300;
}

.home-ribbon__sub-text {
	font-size: 0.73rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	padding: 0 1rem;
}

@media (min-width: 800px) {

	.home-ribbon {
		min-height: 72px;
		flex-direction: row;
		justify-content: center;
		padding: 0 0.75rem;
	}

	.home-ribbon__text-wrapper {
		display: flex;
		flex-direction: row;
		align-items: center;
		margin: 1rem 0;
	}

	.home-ribbon__text-separator {
		display: inline-block;
	}
}

/* Mobile Inspiring Shorts
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.inspiring-card__container--mobile {
	display: flex;
	flex-direction: column;
	margin: 0 auto;
}

.inspiring-card__container--mobile .inspiring-card {
	height: 172px;
	width: 238px;
	margin: 10px 0;
}

.inspiring-card .inspiring-card__title {
	display: block;
}

.slider-header {
	padding-top: 20px;
}

.slider-header.slider-header--mobile {
	margin: 0 auto;
	padding-left: 15px;
}

.slider__page-link {
	padding-bottom: 5px;
	border-bottom: var(--pgsp-theme-color) solid 1px;
	color: var(--pgsp-theme-color);
	font-family: var(--ibm-plex-sans-ssm);
}

.page-link__text {
	padding-right: 35px;
	width: 262px;
	text-align: right;
	margin: 10px auto 15px;
}

@media (min-width: 600px) {

	.inspiring-card__container--mobile,
	.page-link__text--mobile,
	.slider-header.slider-header--mobile {
		display: none;
	}

	.page-link__text {
		width: calc(100% - 34px);
		padding: 0;
	}
}

@media (min-width: 640px) {

	.page-link__text {
		width: 606px;
	}
}

@media (min-width: 1024px) {

	.page-link__text {
		width: 850px;
	}
}

@media (min-width: 1200px) {

	.page-link__text {
		width: 1102px;
	}
}

@media (min-width: 1480px) {

	.page-link__text {
		width: 1430px;
	}
}

/* Speech Slider Container Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.speech-sliders {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: calc(var(--frame-width) * var(--content-width));
	max-width: 95%;
	margin: 0 auto;
}

@media (min-width: 800px) {
	.speech-sliders {
		justify-content: center;
		align-items: center;  /* Changed from flex-start */
		margin: 0 auto;
		width: calc(var(--frame-width) * var(--content-width));
		max-width: 95%;
	}
}

/* Speech Slider Module Rules
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.slider-header {
	width: 262px;
	font-family: var(--ibm-plex-sans-ssm);
	font-size: 21px;
	font-weight: 500;
	color: var(--byu-navy);
	padding-left: 35px;
	margin: 0;
}

#slider-module--recent,
#slider-module--beloved,
#slider-module--upcoming {
	--content-height: 467px;
	--content-width: 225px;
	--content-spacing: 3px;
	--frame-width: 1;
	--arrow-width: 30px;
	--scroll-snap-duration: 300;
}

#slider-module--podcasts {
	--content-height: 380px;
	--content-width: 210px;
	--content-spacing: 5px;
	--frame-width: 1.5;
	--arrow-width: 30px;
	--scroll-snap-duration: 300;
}

#slider-module--podcasts .subscribe__text {
	font-size: 16px;
	color: var(--byu-navy);
}

.slider-module__wrapper--inspiring-shorts {
	display: none;
}

.slider-module__wrapper--inspiring-shorts .inspiring-card__author {
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 7px;
}

#slider-module--inspiring-shorts {
	--content-height: 172px;
	--content-width: 238px;
	--content-spacing: 5px;
	--frame-width: 1;
	--arrow-width: 30px;
	--scroll-snap-duration: 300;
}

#slider-module--podcasts .podcast-card {
	min-width: 210px;
}

#slider-module--inspiring-shorts .inspiring-card {
	min-width: 210px;
}

.inspiring-card__container--mobile .inspiring-card__title-wrapper,
#slider-module--inspiring-shorts .inspiring-card__title-wrapper {
	padding: 9px 5px 9px 20px;
}

#slider-module--recent .slider-module__frame,
#slider-module--beloved .slider-module__frame,
#slider-module--upcoming .slider-module__frame {
	padding: 1rem 0 3rem;
}

#slider-module--inspiring-shorts .slider-module__frame,
#slider-module--podcasts .slider-module__frame {
	padding: 1rem 0 1rem;
}

#slider-module--recent .slider-module__arrow,
#slider-module--beloved .slider-module__arrow,
#slider-module--upcoming .slider-module__arrow,
#slider-module--podcasts .slider-module__arrow,
#slider-module--inspiring-shorts .slider-module__arrow {
	margin-top: 1rem;
}

#slider-module--recent .slider-module__arrow-icon,
#slider-module--beloved .slider-module__arrow-icon,
#slider-module--upcoming .slider-module__arrow-icon {
	margin-bottom: 2rem;
}

#slider-module--podcasts .slider-module__arrow-icon {
	margin-bottom: 1.5rem;
}

.slider-holder {
	max-width: 100%;
}

@media (min-width: 400px) {

	#slider-module--recent,
	#slider-module--beloved,
	#slider-module--upcoming {
		--content-spacing: 5px;
		--arrow-width: 50px;
	}

	.slider-header {
		width: 245px;
		padding-left: 60px;
	}
}

@media (min-width: 600px) {

	#slider-module--podcasts {
		--content-height: 238px;
		--content-width: 486px;
		--arrow-width: 50px;
	}

	#slider-module--inspiring-shorts {
		--arrow-width: 50px;
		--frame-width: 2;
	}

	.slider-module__wrapper--inspiring-shorts {
		display: block;
	}
}

@media (min-width: 640px) {

	.slider-holder .slider-module__wrapper #slider-module--recent,
	.slider-holder .slider-module__wrapper #slider-module--beloved,
	.slider-holder .slider-module__wrapper #slider-module--upcoming {
		--frame-width: 2;
	}

	.slider-module__wrapper--podcasts,
	.slider-module__wrapper--inspiring-shorts {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.slider-header {
		width: 480px;
	}

	.slider-module__wrapper--podcasts .slider-header,
	.slider-module__wrapper--inspiring-shorts .slider-header {
		width: 550px;
		padding-left: 60px;
	}
}

@media (min-width: 800px) {

	.slider-holder .slider-module__wrapper #slider-module--recent,
	.slider-holder .slider-module__wrapper #slider-module--beloved,
	.slider-holder .slider-module__wrapper #slider-module--upcoming {
		--frame-width: 2;
	}

	.slider-header {
		width: 245px;
	}
}

@media (min-width: 1024px) {

	.slider-holder .slider-module__wrapper #slider-module--recent,
	.slider-holder .slider-module__wrapper #slider-module--beloved,
	.slider-holder .slider-module__wrapper #slider-module--upcoming {
		--frame-width: 3;
	}

	#slider-module--inspiring-shorts {
		--frame-width: 3;
	}

	#slider-module--podcasts {
		--frame-width: 1;
	}

	.slider-module__wrapper--inspiring-shorts .slider-header {
		width: 795px;
	}
}

@media (min-width: 1200px) {

	#slider-module--podcasts {
		--frame-width: 2;
	}

	#slider-module--inspiring-shorts {
		--content-height: 218px;
		--content-width: 321px;
	}

	.slider-module__wrapper--podcasts .slider-header,
	.slider-module__wrapper--inspiring-shorts .slider-header {
		width: 1040px;
	}
}

@media (min-width: 1250px) {

	.slider-holder .slider-module__wrapper #slider-module--recent,
	.slider-holder .slider-module__wrapper #slider-module--beloved,
	.slider-holder .slider-module__wrapper #slider-module--upcoming {
		--frame-width: 4;
	}
}

@media (min-width: 1480px) {

	.slider-holder .slider-module__wrapper #slider-module--recent,
	.slider-holder .slider-module__wrapper #slider-module--beloved,
	.slider-holder .slider-module__wrapper #slider-module--upcoming {
		--frame-width: 5;
	}

	#slider-module--inspiring-shorts {
		--frame-width: 4.3;
	}

	#slider-module--podcasts {
		--frame-width: 2.67;
	}

	.slider-module__wrapper--inspiring-shorts .slider-header {
		width: 1370px;
	}
}

@media (min-width: 1640px) {

	#slider-module--podcasts {
		--frame-width: 2.86;
	}

	.slider-module__wrapper--podcasts .slider-header {
		width: 1370px;
	}
}

/* Recent Speeches Grid Display Rules
-------------------------------------------------- */
.grid-module-wrapper {
	display: none;
}

.grid-module__show-more-button {
	font-family: var(--public-sans);
	color: var(--byu-navy);
	height: 30px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	margin-bottom: 40px;
	padding-left: 50px;
}

.grid-module__show-more-button:hover {
	cursor: pointer;
}

/* Podcast Slider CSS Rules
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.slider--podcast-items {
	margin-bottom: 5.625rem;
}

.slider--podcast-items .slider__container {
	margin: 0 auto;
}

.slider--podcast-items .podcast-items__header {
	width: 230px;
	padding-left: 1rem;
	margin: 3rem auto 1rem;
}

@media (min-width: 600px) {

	.slider__window.slider__window--podcast,
	.slider--podcast-items .podcast-items__header {
		width: 506px;
	}

	.slider--podcast-items .slider__frame-controls {
		bottom: 0;
	}

	.slider--podcast-items {
		margin-bottom: 7.8125rem;
	}
}

@media (min-width: 830px) {

	.slider__window.slider__window--podcast,
	.slider--podcast-items .podcast-items__header {
		width: 760px;
	}

	.slider__window--podcast {
		margin-right: 10px;
	}

	.grid-module__slider-view {
		display: none;
	}

	.grid-module-wrapper {
		display: flex;
		flex-direction: column;
		padding-left: 50px;
		margin-bottom: 10px;
	}

	.grid-header {
		font-family: var(--ibm-plex-sans-ssm);
		font-size: 21px;
		font-weight: 500;
		color: var(--byu-navy);
	}

	.grid-cards--container {
		display: grid;
		width: 100%;
		grid-template-columns: repeat(3, min-content);
		grid-column-gap: 25px;
		grid-row-gap: 25px;
	}
}

@media (min-width: 1100px) {

	.slider__window.slider__window--podcast,
	.slider--podcast-items .podcast-items__header {
		width: 1012px;
	}

	.slider__window--podcast {
		margin-right: 0;
	}

	.grid-cards--container {
		grid-template-columns: repeat(4, min-content);
	}
}

@media (min-width: 1400px) {

	.slider__window.slider__window--podcast,
	.slider--podcast-items .podcast-items__header {
		width: 1240px;
	}

	.slider__window--podcast {
		margin-right: 10px;
	}

	.grid-cards--container {
		grid-template-columns: repeat(5, min-content);
	}
}

/* Explore By Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.explore-by {
	background-color: var(--pgsp-grey);
}

.explore-by__grid {
	display: grid;
	grid-template: max-content repeat(2, 124px) / 1fr 1fr;
	justify-items: center;
	align-items: center;
	justify-content: space-around;
	grid-row-gap: 3.5rem;
	width: 100%;
	margin: 3rem auto 6rem auto;
}

.explore-by__header,
.explore-by__link {
	display: flex;
	justify-content: center;
	align-items: center;
}

.explore-by__header {
	width: 100%;
	grid-area: 1 / 1 / 2 / 3;
}

.explore-by__header hr {
	flex: 1 0 auto;
	border-style: unset;
	border-bottom: #fff solid 1px;
}

.explore-by__header h2 {
	font-family: var(--ibm-plex-sans-ssm);
	font-size: 0.875rem;
	font-weight: 400;
	color: #777;
	text-transform: uppercase;
	letter-spacing: 2.2px;
	margin: 0.75rem 2.25rem;
}

.explore-by__link {
	width: 124px;
	height: 124px;
	background-color: #fff;
	border-radius: 50%;
}

.explore-by__link:hover {
	background-color: #e3e3e3;
}

.explore-by__link h3 {
	font-family: var(--ibm-plex-sans-ssm);
	font-size: 1.25rem;
	font-weight: 400;
	color: var(--pgsp-theme-color);
}

@media (min-width: 450px) {

	.explore-by__grid {
		grid-template: max-content repeat(2, 186px) / 1fr 1fr;
		justify-content: space-between;
	}

	.explore-by__link {
		width: 186px;
		height: 186px;
	}

	.explore-by__link h3 {
		font-size: 1.5rem;
	}
}

@media (min-width: 800px) {

	.explore-by__grid {
		max-width: 1169px;
		grid-template: max-content auto / repeat(4, 1fr);
	}

	.explore-by__header {
		grid-area: 1 / 1 / 2 / 5;
	}
}

/* Cornerstone Collections Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.cornerstone-collections {
	background-color: #80a5d0;
	padding: 0 0 5rem 0;
}

.cornerstone-collections__grid {
	display: grid;
	grid-template: max-content repeat(4, auto) / 1fr;
	grid-row-gap: 2.5rem;
	margin: 0 auto;
}

.cornerstone-collections__header {
	display: flex;
	padding: 3rem 0 1rem;
	align-items: center;
}

.cornerstone-collections__header-rule {
	flex: 1 0 auto;
	border-style: unset;
	border-bottom: #ededed solid 1px;
}

.cornerstone-collections__header-text {
	font-family: var(--ibm-plex-sans-ssm);
	font-size: 0.875rem;
	font-weight: 300;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2.2px;
	margin: 0.75rem 2rem;
}

.cornerstone-collections__card {
	display: grid;
	grid-template-columns: 106px auto;
	grid-column-gap: 7px;
	padding: 0 20px;
	border-radius: 5px;
	transition: box-shadow 0.1s ease, background-color 0.1s ease;
}

.cornerstone-collections__link {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}

.cornerstone-collections__card-image {
	width: 90px;
	height: 90px;
	border-radius: 50%;
	grid-row: 1;
	grid-column: 1;
	align-self: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

.cornerstone-collections__title {
	color: #fff;
	font-size: 1.125rem;
	font-family: var(--ibm-plex-sans-ssm);
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0.5px;
	margin: 0;
	grid-row: 1;
	grid-column: 2;
	padding-top: 5px;
	margin-bottom: 10px;
}

.cornerstone-collections__button {
	font-family: var(--ibm-plex-sans-ssm);
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding: 0.5rem 0.9375rem;
	border: 1px solid #012e5d;
	border-radius: 3px;
	background: none;
	color: #012e5d;
	margin-top: 1rem;
}

.cornerstone-collections__card:hover .cornerstone-collections__button,
.cornerstone-collections__button:hover {
	cursor: pointer;
	background: #012e5d;
	color: #fff;
}

.cornerstone-collections__card:hover {
	box-shadow: 0 4px 8px var(--byu-grey-dark);
}

@media (min-width: 600px) {

	.cornerstone-collections__grid {
		grid-template: max-content repeat(2, auto) / 1fr 1fr;
	}

	.cornerstone-collections__header {
		grid-area: 1 / 1 / 2 / 3;
	}
}

@media (min-width: 1124px) {

	.cornerstone-collections__grid {
		max-width: 1169px;
		grid-template: max-content auto / repeat(3, 1fr);
		grid-column-gap: 1rem;
	}

	.cornerstone-collections__header {
		grid-area: 1 / 1 / 2 / 4;
	}

	.cornerstone-collections__title {
		margin: 0;
	}
	.cornerstone-collections__card {
		grid-template-columns: max-content auto;
		padding: 0 0 0 18px;
		grid-column-gap: 12px;
	}

	.cornerstone-collections__header + .cornerstone-collections__card {
		grid-template-columns: max-content 11rem;
	}
	.cornerstone-collections__header + .cornerstone-collections__card > div {
		width: 111%;
	}

}

/* Types of Speeches Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.speech-types {
	width: 100%;
	background-color: #fff;
}

.speech-types__grid {
	display: grid;
	grid-template: max-content repeat(4, auto) / 1fr;
	justify-items: center;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	margin: 0 auto;
	font-family: var(--ibm-plex-sans-ssm);
	font-weight: 300;
}

.speech-types__header,
.speech-types__link {
	display: flex;
	justify-content: center;
	align-items: center;
}

.speech-types__header {
	padding: 1rem 0 0;
	width: 100%;
	grid-area: 1 / 1 / 2 / 2;
}

.speech-types__header hr {
	flex: 1 0 auto;
	border-style: unset;
	border-bottom: var(--pgsp-grey) solid 1px;
}

.speech-types__header h2 {
	font-family: var(--ibm-plex-sans-ssm);
	font-size: 0.875rem;
	font-weight: 400;
	color: #777;
	text-transform: uppercase;
	letter-spacing: 2.2px;
	margin: 0.75rem 2.25rem;
}

.speech-types__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	width: 100vw;
	height: fit-content;
	margin: 3rem 0;
	padding: 0 55px;
	box-sizing: border-box;
	position: relative;
}

.speech-types__card img {
	width: 20%;
	max-height: 60px;
}

.speech-types__img--speaker {
	height: 53px;
}

.speech-types__img--microscope {
	height: 48px;
}

.speech-types__card h3 {
	font-size: 24px;
	font-weight: 500;
	color: #012e5d;
	margin: 20px 30px 28px;
}

.speech-types__card p {
	font-family: var(--source-serif-pro);
	font-size: 16px;
	color: #7e7e7e;
	line-height: 1.5;
	margin: 0 0 1.5rem 0;
}

.speech-types__link {
	font-weight: 400;
	font-size: 0.6875rem;
	letter-spacing: 1px;
	color: var(--pgsp-theme-color);
	text-transform: uppercase;
	width: fit-content;
	padding: 0 0 0.5rem 0;
	border-bottom: var(--pgsp-theme-color) solid 1px;
}

.speeches-types__link-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

@media (min-width: 600px) {

	.speech-types__grid {
		grid-template: max-content repeat(2, auto) / 1fr 1fr;
	}

	.speech-types__header {
		grid-area: 1 / 1 / 2 / 3;
	}

	.speech-types__card {
		width: 100%;
		max-width: 200px;
		padding: 0;
	}
}

@media (min-width: 1240px) {

	.speech-types__grid {
		grid-template: max-content auto / repeat(4, 1fr);
		max-width: 850px;
	}

	.speech-types__card {
		height: 350px;
		max-width: calc(200px + 8rem);
		padding: 0 4rem;
		border-right: 1px solid var(--pgsp-grey);
	}

	.speech-types__header {
		grid-area: 1 / 1 / 2 / 5;
	}

	.speech-types__card:nth-child(5) {
		border-right: none;
	}
}

/* Quote Banner Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.quote-banner,
.quote-banner__content,
.quote-banner__byline {
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.quote-banner {
	background-color: #000;
	color: #fff;
	padding-bottom: 3rem;
}

.quote-banner__background {
	margin: 0 0 0.75rem 0;
}

.quote-banner__content,
.quote-banner__byline {
	align-items: center;
}

.quote-banner__content > span {
	font-family: var(--ibm-plex-sans-ssm);
	font-size: 26px;
	font-weight: 400;
	text-align: center;
	line-height: 1.4;
	letter-spacing: 0.5px;
	padding: 0 1.5rem;
	margin: 0 0 3.25rem 0;
}

.quote-banner__byline {
	font-family: var(--ibm-plex-sans-ssm);
	text-transform: uppercase;
}

.quote-banner__byline span {
	font-size: 16px;
	color: #a2a2a2;
	letter-spacing: 2.25px;
	text-transform: uppercase;
}

.quote-banner__separator {
	display: none;
}

.quote-banner__content > a {
	margin: 2.5rem 0 1.5rem 0;
}

button.quote-banner__button {
	background-color: #1a63af;
	border-color: transparent;
	border-radius: 6px;
	color: var(--byu-white);
	height: unset;
	padding: 0.65rem 1.5rem;
	font-family: var(--ibm-plex-sans-ssm);
	font-size: 12px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

button.quote-banner__button:hover {
	cursor: pointer;
	background-color: rgba(2, 87, 184, 0.49);
	color: #fff;
}

@media (min-width: 475px) {

	.quote-banner__byline {
		flex-direction: row;
	}

	.quote-banner__separator {
		display: block;
		margin: 0 0.375rem;
	}
}

@media (min-width: 1080px) {

	.quote-banner {
		flex-direction: row;
		align-items: center;
	}

	.quote-banner__background {
		margin: 0;
	}

	.quote-banner__background img {
		max-width: unset;
		width: 780px;
		height: 570px;
	}

	.quote-banner__content {
		max-width: 540px;
	}

	.quote-banner__byline {
		flex-direction: column;
	}

	.quote-banner__separator {
		display: none;
	}
}

@media (min-width: 1240px) {

	.quote-banner__content {
		margin: 0 auto;
	}

	.quote-banner__byline {
		flex-direction: row;
	}

	.quote-banner__separator {
		display: block;
		margin: 0 0.375rem;
	}
}

@media (min-width: 1440px) {

	.quote-banner__content {
		margin: 0 0 0 5rem;
	}
}

@media (min-width: 1600px) {

	.quote-banner__content {
		margin: 0 0 0 10rem;
	}
}

/* Homepage Slider Overrides */
body.home .slider-module {
	position: relative;
	width: 95%;
	margin: 0 auto;
}

body.home .slider-module__frame {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: 1rem;
	padding: 1rem;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
}

body.home .slider-module__content {
	flex: 0 0 auto;
	scroll-snap-align: start;
	width: var(--content-width);
}

body.home .slider-module__arrow {
	position: absolute;
	top: 44%;
	transform: translateY(-50%);
	width: 50px;
	height: 88%;
	z-index: 10;
}

body.home .slider-module__arrow--left {
	left: -25px;
}

body.home .slider-module__arrow--right {
	right: -25px;
}

body.home .slider-module__content--empty {
	display: none;
}

/* Specific slider styling for Inspiring Shorts and Podcasts */
body.home #slider-module--inspiring-shorts {
	width: calc(var(--frame-width) * var(--content-width));
	margin: 1rem auto;  /* Add consistent margin top/bottom */
	position: relative;
	display: flex;
	align-items: center;
}

body.home #slider-module--podcasts {
	width: calc(var(--frame-width) * var(--content-width));
	margin: 0 auto;  /* Add consistent margin top/bottom */
	position: relative;
	display: flex;
	align-items: center;
}

body.home #slider-module--inspiring-shorts .slider-module__frame,
body.home #slider-module--podcasts .slider-module__frame {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	gap: var(--content-spacing);
	padding: 0;
	margin: 0 auto;
	scroll-behavior: smooth;
	width: 100%;
}

body.home #slider-module--inspiring-shorts .slider-module__content,
body.home #slider-module--podcasts .slider-module__content {
	flex: 0 0 var(--content-width);
	scroll-snap-align: start;
	min-width: var(--content-width);
}

body.home #slider-module--inspiring-shorts .slider-module__arrow,
body.home #slider-module--podcasts .slider-module__arrow {
	position: absolute;
	top: 42%;
	transform: translateY(-50%);
	width: 50px;
	height: 100%;
	z-index: 10;
}

/* Hide scrollbar but keep functionality */
body.home #slider-module--inspiring-shorts .slider-module__frame::-webkit-scrollbar,
body.home #slider-module--podcasts .slider-module__frame::-webkit-scrollbar {
	display: none;
}

/* Add space between section header and slider content */
body.home .slider-module__wrapper--inspiring-shorts .slider-header,
body.home .slider-module__wrapper--podcasts .slider-header {
	margin-bottom: 0; /* Match Recent Speeches spacing */
}

/* Remove general slider header spacing if it exists */
body.home .slider-header {
	margin-bottom: unset;
}
