:root {
	--s-brand: #1c69d4;
	--s-brand-deep: #1a1a1a;
}

/* homepage SEO zone: about text, FAQ, internal links */

.home-seo {
	margin: 46px 0 10px;
}

/* about box */

.seo-about {
	max-width: 940px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #e5e9ec;
	border-radius: 16px;
	padding: 30px 34px;
	box-shadow: 0 18px 40px -30px rgba(20, 20, 20, .35);
}

.seo-about__body {
	position: relative;
	max-height: 132px;
	overflow: hidden;
	transition: max-height .35s ease;
	color: #4b5560;
	font-size: 15px;
	line-height: 1.7;
}

.seo-about__body::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 58px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 92%);
	transition: opacity .3s ease;
	pointer-events: none;
}

.seo-about__body.is-open::after {
	opacity: 0;
}

.seo-about__body > *:first-child {
	margin-top: 0;
}

.seo-about__body h2 {
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 800;
	font-size: 22px;
	text-transform: uppercase;
	color: var(--s-brand-deep);
	margin: 24px 0 10px;
}

.seo-about__body h3 {
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 700;
	font-size: 17px;
	color: var(--s-brand-deep);
	margin: 20px 0 8px;
}

.seo-about__body p {
	margin: 0 0 12px;
}

.seo-about__body ul {
	margin: 0 0 12px;
	padding-left: 20px;
}

.seo-about__body li {
	margin: 5px 0;
}

.seo-about__body strong {
	color: #2b3640;
}

.seo-about__toggle {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 16px;
	padding: 9px 18px;
	border: 1px solid var(--s-brand);
	border-radius: 999px;
	background: #fff;
	color: var(--s-brand);
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .4px;
	cursor: pointer;
	transition: background .18s ease, color .18s ease;
}

.seo-about__toggle:hover {
	background: var(--s-brand);
	color: #fff;
}

.seo-about__toggle .chev {
	font-size: 10px;
	transition: transform .25s ease;
}

.seo-about__toggle.is-open .chev {
	transform: rotate(180deg);
}

/* FAQ */

.seo-faq {
	max-width: 940px;
	margin: 46px auto 0;
}

.seo-faq__title {
	margin: 0 0 22px;
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 800;
	font-size: 26px;
	text-transform: uppercase;
	text-align: center;
	color: var(--s-brand-deep);
}

.faq__item {
	margin-bottom: 12px;
	border: 1px solid #e5e9ec;
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
}

.faq__q {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 20px;
	border: none;
	background: #fff;
	text-align: left;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 15.5px;
	color: var(--s-brand-deep);
	cursor: pointer;
	transition: background .18s ease;
}

.faq__q:hover {
	background: #f6f9fb;
}

.faq__q .chev {
	flex: 0 0 auto;
	font-size: 12px;
	color: var(--s-brand);
	transition: transform .25s ease;
}

.faq__item.is-open .faq__q {
	background: #f6f9fb;
}

.faq__item.is-open .faq__q .chev {
	transform: rotate(180deg);
}

.faq__a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
}

.faq__a-inner {
	padding: 2px 20px 18px;
	color: #4b5560;
	font-size: 14.5px;
	line-height: 1.7;
}

.faq__a-inner p {
	margin: 0 0 10px;
}

.faq__a-inner p:last-child {
	margin-bottom: 0;
}

/* internal links */

.seo-links {
	max-width: 1120px;
	margin: 52px auto 0;
}

.seo-links__group {
	margin-bottom: 26px;
}

.seo-links__h {
	margin: 0 0 14px;
	font-family: 'Saira Condensed', sans-serif;
	font-weight: 700;
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: .6px;
	color: #8a97a3;
	text-align: center;
}

.seo-links__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.seo-links__list a {
	display: inline-block;
	padding: 6px 13px;
	border: 1px solid #e2e7eb;
	border-radius: 999px;
	background: #f6f8fa;
	color: var(--s-brand-deep);
	font-size: 12.5px;
	line-height: 1.3;
	text-decoration: none;
	transition: background .16s ease, border-color .16s ease, color .16s ease;
}

.seo-links__list a:hover {
	background: #e9f1fc;
	border-color: var(--s-brand);
	color: var(--s-brand);
}

.seo-links__ext {
	margin: 32px 0 0;
	text-align: center;
	font-size: 13px;
}

.seo-links__ext a {
	color: #8a97a3;
	text-decoration: underline;
}

.seo-links__ext a:hover {
	color: var(--s-brand);
}

@media (max-width: 760px) {
	.seo-about {
		padding: 22px 18px;
		border-radius: 12px;
	}

	.seo-about__body {
		font-size: 14.5px;
	}

	.seo-faq__title {
		font-size: 22px;
	}
}
