/**
 * GLF Stories 1.2.5
 *
 * A compact, server-rendered editorial publication. Everything is scoped to
 * the managed Stories views or enhanced Story articles.
 */

.glf-stories {
	--glf-green-dark: #002e22;
	--glf-green: #003f2c;
	--glf-green-mid: #0d5842;
	--glf-green-ink: #12372c;
	--glf-warm: #f4f1e8;
	--glf-warm-deep: #e9e4d8;
	--glf-coral: #c9363f;
	--glf-ink: #17342b;
	--glf-muted: #586760;
	--glf-line: rgba(0, 63, 44, 0.2);
	--glf-shell: 1280px;
	--glf-gutter: clamp(24px, 4vw, 64px);
	--glf-radius: 0;
}

.glf-stories,
.glf-stories *,
.glf-stories *::before,
.glf-stories *::after {
	box-sizing: border-box;
}

.glf-stories {
	overflow: clip;
	background: #fff;
	color: var(--glf-ink);
	font-family: inherit;
	font-size: 16px;
	line-height: 1.55;
}

.glf-stories a {
	color: inherit;
	text-decoration: none;
}

.glf-stories a:focus-visible,
.glf-stories button:focus-visible,
.glf-stories input:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 2px;
	box-shadow: 0 0 0 5px var(--glf-coral);
}

.glf-stories__skip:focus {
	position: fixed !important;
	z-index: 99999;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	clip: auto !important;
	clip-path: none !important;
	overflow: visible;
	margin: 0;
	padding: 11px 15px;
	background: #fff;
	color: var(--glf-green-ink);
	font-weight: 800;
	white-space: nowrap;
}

.glf-stories h1,
.glf-stories h2,
.glf-stories h3,
.glf-stories p {
	margin-top: 0;
}

.glf-stories h1,
.glf-stories h2,
.glf-stories h3 {
	font-family: inherit;
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.04;
	text-wrap: balance;
	text-transform: none;
}

.glf-stories__shell {
	width: min(var(--glf-shell), calc(100% - (2 * var(--glf-gutter))));
	margin-inline: auto;
}

.glf-stories__nowrap {
	white-space: nowrap;
}

.glf-stories-editorial {
	border-top: 1px solid var(--glf-line);
	padding-block: clamp(48px, 6vw, 78px);
	background: #fff;
}

.glf-stories-editorial__content {
	max-width: 850px;
}

.glf-stories-editorial__content h2 {
	margin-bottom: 22px;
	color: var(--glf-green-ink);
	font-size: clamp(34px, 4vw, 48px);
}

.glf-stories-editorial__content h3 {
	margin: 32px 0 12px;
	color: var(--glf-green-ink);
	font-size: clamp(23px, 2.3vw, 29px);
}

.glf-stories-editorial__content p,
.glf-stories-editorial__content li {
	color: var(--glf-muted);
	font-size: 17px;
	line-height: 1.68;
}

.glf-stories-editorial__content p:last-child,
.glf-stories-editorial__content ul:last-child {
	margin-bottom: 0;
}

.glf-stories__eyebrow {
	margin: 0 0 12px;
	color: var(--glf-coral);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.14em;
	line-height: 1.2;
	text-transform: uppercase;
}

.glf-stories__eyebrow--light {
	color: #ff8a73;
}

.glf-stories__button {
	display: inline-flex;
	min-height: 46px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--glf-green);
	padding: 10px 18px;
	color: var(--glf-green);
	font-size: 13px;
	font-weight: 750;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.glf-stories__button:hover {
	border-color: var(--glf-coral);
	background: var(--glf-coral);
	color: #fff;
}

.glf-stories__text-link {
	display: inline-flex;
	width: fit-content;
	min-height: 44px;
	align-items: center;
	gap: 10px;
	border-bottom: 1px solid currentColor;
	padding: 10px 0 8px;
	color: var(--glf-green);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.glf-stories__arrow {
	display: inline-grid;
	width: 16px;
	height: 16px;
	place-items: center;
	transition: transform 160ms ease;
}

.glf-stories__arrow svg {
	display: block;
	width: 16px;
	height: 16px;
}

.glf-stories__text-link:hover .glf-stories__arrow {
	transform: translateX(4px);
}

.glf-stories__text-link--light {
	color: #fff;
}

.glf-stories-hero {
	position: relative;
	min-height: clamp(380px, 29vw, 430px);
	overflow: hidden;
	background: var(--glf-green-dark);
	color: #fff;
	isolation: isolate;
}

.glf-stories-hero__image {
	position: absolute;
	z-index: -3;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 46%;
}

.glf-stories-hero__shade {
	position: absolute;
	z-index: -2;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0, 35, 25, 0.9) 0%, rgba(0, 45, 32, 0.74) 43%, rgba(0, 39, 28, 0.32) 100%),
		linear-gradient(0deg, rgba(0, 30, 21, 0.32), rgba(0, 30, 21, 0.06));
}

.glf-stories-hero__content {
	display: flex;
	min-height: inherit;
	flex-direction: column;
	justify-content: center;
	padding-block: 36px;
}

.glf-stories-hero h1 {
	max-width: 820px;
	margin: 0;
	color: #fff;
	font-size: clamp(60px, 5.4vw, 78px);
	font-weight: 750;
	letter-spacing: -0.055em;
	line-height: 0.94;
	text-transform: uppercase;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

.glf-stories-hero__intro {
	max-width: 610px;
	margin: 17px 0 0 !important;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(17px, 1.45vw, 20px);
	line-height: 1.45;
}

.glf-story-search {
	position: relative;
	display: grid;
	width: min(560px, 100%);
	min-height: 64px;
	align-items: stretch;
	grid-template-columns: 52px minmax(0, 1fr) auto;
	margin-top: 25px;
	border: 1px solid rgba(255, 255, 255, 0.7);
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 12px 34px rgba(0, 34, 24, 0.18);
	color: var(--glf-green-ink);
}

.glf-story-search__icon {
	display: grid;
	color: var(--glf-green);
	place-items: center;
}

.glf-story-search__icon svg {
	display: block;
	width: 24px;
	height: 24px;
}

.glf-story-search__field {
	display: grid;
	min-width: 0;
	align-content: center;
	grid-template-rows: auto auto;
	padding: 8px 10px 7px;
}

.glf-story-search__label {
	color: var(--glf-green);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 1.1;
	text-transform: uppercase;
}

.glf-story-search input {
	width: 100%;
	min-width: 0;
	border: 0 !important;
	padding: 2px 0 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	color: var(--glf-green-ink) !important;
	font: inherit;
	font-size: 16px !important;
}

.glf-story-search input::placeholder {
	color: #66736e;
	opacity: 1;
}

/* Enfold gives search inputs a 20px bottom margin and a theme font override. */
#top .glf-stories .glf-story-search input[type="search"] {
	display: block;
	height: 24px !important;
	min-height: 0 !important;
	align-self: auto;
	margin: 0 !important;
	font-family: inherit !important;
	font-style: normal !important;
	line-height: 1.2 !important;
}

#top .glf-stories .glf-story-search input[type="search"]::placeholder {
	font-family: inherit !important;
	font-style: normal !important;
	line-height: inherit;
}

#top .glf-stories .glf-story-search input[type="search"]:focus-visible {
	outline: 0 !important;
	box-shadow: none !important;
}

.glf-story-search__field:focus-within {
	position: relative;
	z-index: 2;
	outline: 3px solid #fff !important;
	outline-offset: 2px !important;
	box-shadow: 0 0 0 5px var(--glf-coral) !important;
}

.glf-story-search button {
	min-width: 102px;
	border: 0;
	border-left: 1px solid var(--glf-line);
	padding: 0 18px;
	background: var(--glf-green);
	color: #fff;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color 160ms ease;
}

.glf-story-search button:hover {
	background: var(--glf-coral);
}

.glf-story-topic-bar {
	border-bottom: 1px solid var(--glf-line);
	background: #fff;
}

.glf-story-topics {
	display: flex;
	min-height: 70px;
	align-items: center;
	gap: 6px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.glf-story-topics a {
	display: inline-flex;
	min-height: 44px;
	flex: 0 0 auto;
	align-items: center;
	border: 1px solid transparent;
	padding: 8px 15px;
	color: var(--glf-green-ink);
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
}

.glf-story-topics a:hover {
	border-color: var(--glf-line);
}

.glf-story-topics a[aria-current="page"] {
	border-color: var(--glf-green);
	background: var(--glf-green);
	color: #fff;
}

.glf-story-topics__answers:hover,
.glf-story-topics__answers:focus-visible {
	border-color: var(--glf-coral) !important;
	background: var(--glf-coral);
	color: #fff !important;
}

.glf-story-topics__answers[aria-current="page"] {
	border-color: var(--glf-green) !important;
	background: var(--glf-green);
	color: #fff !important;
}

.glf-featured {
	padding-block: 48px 64px;
	background: var(--glf-warm);
}

.glf-featured-card {
	display: grid;
	min-height: clamp(380px, 31vw, 420px);
	grid-template-columns: minmax(0, 3fr) minmax(350px, 2fr);
	overflow: hidden;
	background: var(--glf-green);
	box-shadow: 0 12px 28px rgba(0, 48, 34, 0.09);
	color: #fff;
}

.glf-featured-card__image {
	position: relative;
	display: block;
	min-width: 0;
	overflow: hidden;
	background: var(--glf-green-mid);
}

.glf-featured-card__image img,
.glf-story-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 350ms ease;
}

.glf-featured-card__image > img {
	position: absolute;
	inset: 0;
}

.glf-featured-card:hover .glf-featured-card__image img,
.glf-story-card:hover .glf-story-card__image img {
	transform: scale(1.025);
}

.glf-story-image--focus-top,
picture.glf-story-image--focus-top > img {
	object-position: center top !important;
}

.glf-story-image--focus-bottom,
picture.glf-story-image--focus-bottom > img {
	object-position: center bottom !important;
}

.glf-story-image--focus-left,
picture.glf-story-image--focus-left > img {
	object-position: left center !important;
}

.glf-story-image--focus-right,
picture.glf-story-image--focus-right > img {
	object-position: right center !important;
}

.glf-featured-card__body {
	display: flex;
	min-width: 0;
	flex-direction: column;
	justify-content: center;
	padding: clamp(32px, 4vw, 58px);
}

.glf-featured-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 12px;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.glf-featured-card__meta span:first-child {
	color: #ff8a73;
}

.glf-featured-card h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(34px, 3.25vw, 48px);
	line-height: 1.02;
}

#top .glf-stories .glf-featured-card h2,
#top .glf-stories .glf-featured-card h2 a {
	font-weight: 700;
	text-transform: none;
}

.glf-featured-card__body > p {
	display: -webkit-box;
	max-width: 540px;
	margin: 20px 0 25px;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.82);
	font-size: clamp(16px, 1.35vw, 18px);
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.glf-editorial,
.glf-answer-archive {
	padding-block: 64px 90px;
	background: #fff;
}

.glf-archive-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 40px;
	margin-bottom: 38px;
	border-bottom: 1px solid var(--glf-line);
	padding-bottom: 23px;
}

.glf-archive-heading h2 {
	margin: 0;
	color: var(--glf-green-ink);
	font-size: clamp(38px, 3.4vw, 48px);
}

.glf-story-results__summary {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 16px;
	color: var(--glf-muted);
	font-size: 13px;
}

.glf-story-results__summary strong {
	color: var(--glf-green-ink);
}

.glf-story-results__summary a {
	border-bottom: 1px solid currentColor;
	color: var(--glf-coral);
	font-weight: 700;
}

.glf-editorial-layout--with-answers {
	display: grid;
	align-items: start;
	grid-template-areas:
		"first rail"
		"remaining rail";
	grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
	gap: 46px 28px;
}

.glf-editorial-group {
	display: grid;
	min-width: 0;
	align-self: start;
	align-content: start;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 46px 28px;
}

.glf-editorial-group--first {
	grid-area: first;
}

.glf-editorial-group--remaining {
	grid-area: remaining;
}

.glf-editorial-layout--results .glf-editorial-group--results {
	width: 100%;
}

.glf-story-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	border-bottom: 1px solid var(--glf-line);
	background: #fff;
}

.glf-story-card__image {
	position: relative;
	display: block;
	width: 100%;
	flex: 0 0 auto;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background:
		linear-gradient(135deg, rgba(0, 63, 44, 0.06), rgba(223, 101, 79, 0.08)),
		var(--glf-warm);
}

.glf-story-image-fallback {
	display: flex;
	width: 100%;
	height: 100%;
	align-items: flex-end;
	justify-content: flex-start;
	padding: 22px;
	background:
		linear-gradient(135deg, transparent 44%, rgba(255, 255, 255, 0.08) 44% 48%, transparent 48%),
		linear-gradient(145deg, var(--glf-green-dark), var(--glf-green-mid));
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.glf-story-card__body {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	padding: 20px 0 24px;
}

.glf-story-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px 14px;
	margin-bottom: 13px;
	color: var(--glf-muted);
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.055em;
	text-transform: uppercase;
}

.glf-story-card__meta span {
	color: var(--glf-coral);
	font-weight: 800;
}

.glf-story-card h3 {
	min-block-size: calc(3 * 1.08em);
	margin: 0;
	color: var(--glf-green-ink);
	font-size: clamp(25px, 2.15vw, 31px);
	line-height: 1.08;
}

.glf-story-card h3 a:hover,
.glf-answer-rail-item h4 a:hover,
.glf-answer-archive-card h3 a:hover {
	color: var(--glf-coral);
}

.glf-story-card__body > p {
	display: -webkit-box;
	min-block-size: calc(3 * 1.55em);
	margin: 15px 0 0;
	overflow: hidden;
	color: var(--glf-muted);
	font-size: 16px;
	line-height: 1.55;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.glf-story-card .glf-stories__text-link {
	margin-top: 22px;
}

.glf-answers-rail {
	align-self: start;
	grid-area: rail;
	border-top: 4px solid var(--glf-coral);
	padding: clamp(28px, 3vw, 42px);
	background: var(--glf-warm);
	color: var(--glf-green-ink);
}

.glf-answers-rail__header h3 {
	margin: 0;
	font-size: clamp(32px, 2.8vw, 40px);
	text-transform: uppercase;
}

.glf-answers-rail__header > p:last-child {
	margin: 15px 0 0;
	color: var(--glf-muted);
	font-size: 16px;
	line-height: 1.55;
}

.glf-answers-rail__list {
	margin-top: 27px;
	border-top: 1px solid var(--glf-line);
}

.glf-answer-rail-item {
	padding-block: 25px;
}

.glf-answer-rail-item + .glf-answer-rail-item {
	border-top: 1px solid var(--glf-line);
}

.glf-answer-rail-item__label {
	margin: 0 0 9px !important;
	color: var(--glf-coral);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.glf-answer-rail-item h4 {
	margin: 0;
	color: var(--glf-green-ink);
	font-family: inherit;
	font-size: clamp(24px, 2vw, 29px);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.12;
}

.glf-answer-rail-item__answer {
	margin: 15px 0 20px !important;
	color: #465b53;
	font-size: 16px;
	line-height: 1.58;
}

.glf-answers-rail > .glf-stories__button {
	width: 100%;
	margin-top: 3px;
}

.glf-story-pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 54px;
}

.glf-featured-card h2,
.glf-story-card h3,
.glf-answers-rail h3,
.glf-answer-rail-item h4,
.glf-answer-archive-card h3 {
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

.glf-story-pagination a {
	display: inline-flex;
	min-width: 44px;
	min-height: 44px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--glf-line);
	padding: 8px 13px;
	color: var(--glf-green-ink);
	font-size: 13px;
	font-weight: 750;
}

.glf-story-pagination a:hover,
.glf-story-pagination a[aria-current="page"] {
	border-color: var(--glf-green);
	background: var(--glf-green);
	color: #fff;
}

.glf-story-empty {
	border: 1px solid var(--glf-line);
	padding: clamp(34px, 5vw, 64px);
	text-align: center;
}

.glf-story-empty h3 {
	margin-bottom: 12px;
	color: var(--glf-green-ink);
	font-size: 32px;
}

.glf-story-empty p {
	max-width: 620px;
	margin: 0 auto 25px;
	color: var(--glf-muted);
}

.glf-answers-hero {
	padding-block: clamp(62px, 7vw, 94px);
	background: var(--glf-green-dark);
	color: #fff;
}

.glf-answers-hero__inner {
	display: grid;
	align-items: end;
	grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
	gap: 18px 60px;
}

.glf-answers-hero h1 {
	margin: 0;
	color: #fff;
	font-size: clamp(52px, 5.4vw, 74px);
	line-height: 0.96;
	text-transform: uppercase;
	overflow-wrap: normal;
	word-break: normal;
	hyphens: none;
}

.glf-answers-hero__inner > p:not(.glf-stories__eyebrow) {
	max-width: 600px;
	margin: 0;
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
}

.glf-story-search--answers {
	grid-column: 2;
	grid-row: 1 / span 3;
	align-self: end;
	margin: 0;
}

.glf-answer-archive__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 28px;
}

.glf-answer-archive-card {
	display: flex;
	min-height: 340px;
	flex-direction: column;
	border-top: 4px solid var(--glf-coral);
	padding: clamp(28px, 3.5vw, 46px);
	background: var(--glf-warm);
}

.glf-answer-archive-card h3 {
	margin: 0;
	color: var(--glf-green-ink);
	font-size: clamp(28px, 2.8vw, 38px);
}

.glf-answer-archive-card > p:not(.glf-stories__eyebrow) {
	margin: 20px 0 26px;
	color: var(--glf-muted);
	font-size: 17px;
	line-height: 1.6;
}

.glf-answer-archive-card .glf-stories__text-link {
	margin-top: auto;
}

@media (max-width: 1100px) {
	.glf-stories {
		--glf-gutter: 30px;
	}

	.glf-editorial-layout--with-answers,
	.glf-editorial-group {
		column-gap: 22px;
	}

	.glf-featured-card {
		grid-template-columns: minmax(0, 1.25fr) minmax(350px, 0.9fr);
	}

	.glf-answers-rail {
		padding: 28px;
	}

	.glf-answer-rail-item h4,
	.glf-story-card h3 {
		font-size: 25px;
	}

	.glf-story-card h3 {
		min-block-size: calc(4 * 1.08em);
	}
}

@media (max-width: 900px) {
	.glf-stories {
		--glf-gutter: 28px;
	}

	.glf-stories-hero {
		min-height: 360px;
	}

	.glf-featured-card {
		min-height: 0;
		grid-template-columns: 1fr;
	}

	.glf-featured-card__image {
		aspect-ratio: 16 / 9;
	}

	.glf-featured-card__body {
		min-height: 330px;
	}

	.glf-editorial-layout--with-answers {
		grid-template-areas:
			"first"
			"rail"
			"remaining";
		grid-template-columns: minmax(0, 1fr);
		row-gap: 42px;
	}

	.glf-editorial-group {
		grid-template-columns: minmax(0, 1fr);
		row-gap: 42px;
	}

	.glf-story-card h3,
	.glf-story-card__body > p {
		min-block-size: 0;
	}

	.glf-answers-rail {
		position: static;
	}

	.glf-answers-hero__inner {
		grid-template-columns: 1fr;
	}

	.glf-story-search--answers {
		grid-column: auto;
		grid-row: auto;
		margin-top: 10px;
	}

	.glf-answer-archive__grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.glf-stories {
		--glf-gutter: 20px;
	}

	.glf-stories-hero {
		min-height: 340px;
	}

	.glf-stories-hero__content {
		padding-block: 28px;
	}

	.glf-stories-hero h1 {
		font-size: clamp(48px, 14vw, 62px);
	}

	.glf-stories-hero__intro {
		margin-top: 12px !important;
		font-size: 16px;
		line-height: 1.4;
	}

	.glf-story-search {
		min-height: 58px;
		grid-template-columns: 46px minmax(0, 1fr) auto;
		margin-top: 18px;
	}

	.glf-story-search button {
		min-width: 78px;
		padding-inline: 12px;
		font-size: 11px;
	}

	.glf-story-search__field {
		padding-right: 7px;
		padding-left: 7px;
	}

	.glf-story-topics {
		min-height: 66px;
	}

	.glf-story-topics a {
		min-height: 44px;
		padding-inline: 13px;
	}

	.glf-featured {
		padding-block: 36px 48px;
	}

	.glf-featured-card__body {
		min-height: 0;
		padding: 30px 24px 34px;
	}

	.glf-featured-card h2 {
		font-size: clamp(30px, 9.4vw, 38px);
	}

	.glf-featured-card__body > p {
		margin-block: 16px 22px;
		font-size: 16px;
	}

	.glf-editorial,
	.glf-answer-archive {
		padding-block: 48px 68px;
	}

	.glf-archive-heading {
		align-items: flex-start;
		flex-direction: column;
		gap: 15px;
		margin-bottom: 30px;
	}

	.glf-archive-heading h2 {
		font-size: 38px;
	}

	.glf-editorial-layout--with-answers,
	.glf-editorial-group {
		row-gap: 38px;
	}

	.glf-story-card h3 {
		font-size: 27px;
	}

	.glf-story-card__body > p {
		-webkit-line-clamp: 3;
	}

	.glf-answers-rail {
		padding: 27px 23px 25px;
	}

	.glf-answers-rail__header h3 {
		font-size: 34px;
	}

	.glf-answer-rail-item h4 {
		font-size: 26px;
	}

	.glf-answers-hero {
		padding-block: 56px;
	}

	.glf-answers-hero h1 {
		font-size: 50px;
	}
}

@media (max-width: 400px) {
	.glf-stories {
		--glf-gutter: 17px;
	}

	.glf-stories-hero {
		min-height: 330px;
	}

	.glf-stories-hero h1 {
		font-size: 47px;
	}

	.glf-stories-hero__intro {
		max-width: 310px;
	}

	#top .glf-stories .glf-story-search input[type="search"] {
		font-size: 15px !important;
	}

	.glf-story-search button {
		min-width: 70px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.glf-stories *,
	.glf-stories *::before,
	.glf-stories *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
	}
}

@media print {
	.glf-story-search,
	.glf-story-topic-bar,
	.glf-story-pagination {
		display: none !important;
	}

	.glf-stories,
	.glf-featured,
	.glf-featured-card,
	.glf-answers-rail,
	.glf-stories-hero,
	.glf-answers-hero {
		background: #fff !important;
		color: #000 !important;
	}

	.glf-stories-hero {
		min-height: 0;
		padding-block: 30px;
	}

	.glf-stories-hero__image,
	.glf-stories-hero__shade {
		display: none;
	}
}
