/* CTS content & landing pages — minimal, function-first styling.
   Scoped under .cts-landing so it never bleeds into theme chrome. */

.cts-landing {
	max-width: 1080px;
	margin: 0 auto;
	padding: 1.5rem 1.25rem 3rem;
	line-height: 1.6;
}

/* Breadcrumbs */
.cts-breadcrumbs {
	font-size: 0.85rem;
	margin: 0 0 1.25rem;
}
.cts-breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0;
	padding: 0;
}
.cts-breadcrumbs li + li::before {
	content: "/";
	margin-right: 0.4rem;
	opacity: 0.5;
}
.cts-breadcrumbs a {
	text-decoration: none;
}
.cts-breadcrumbs a:hover {
	text-decoration: underline;
}

/* Hero */
.cts-landing__hero {
	margin-bottom: 1.75rem;
}
.cts-landing__hero h1 {
	font-size: clamp(1.7rem, 4vw, 2.6rem);
	line-height: 1.15;
	margin: 0 0 0.6rem;
}
.cts-landing__lede {
	font-size: 1.1rem;
	max-width: 60ch;
	margin: 0 0 1rem;
}

/* Body copy */
.cts-landing__body {
	max-width: 72ch;
}
.cts-landing__body h2 {
	font-size: 1.4rem;
	margin: 2rem 0 0.6rem;
}
.cts-landing__body p {
	margin: 0 0 1rem;
}
.cts-landing__body a {
	text-decoration: underline;
}

/* Buttons */
.cts-btn {
	display: inline-block;
	padding: 0.7rem 1.3rem;
	border-radius: 6px;
	font-weight: 600;
	text-decoration: none;
	margin: 0.25rem 0.4rem 0.25rem 0;
}
.cts-btn--primary {
	background: #0b5cab;
	color: #fff;
	border: 1px solid #0b5cab;
}
.cts-btn--primary:hover {
	background: #084a8c;
}
.cts-btn--ghost {
	background: transparent;
	color: #0b5cab;
	border: 1px solid #0b5cab;
}
.cts-btn--ghost:hover {
	background: #eef4fb;
}

/* FAQ */
.cts-faq {
	margin: 2.5rem 0;
	max-width: 72ch;
}
.cts-faq dt {
	font-weight: 700;
	margin: 1.1rem 0 0.3rem;
}
.cts-faq dd {
	margin: 0;
}

/* Foot CTA */
.cts-landing__foot-cta {
	margin: 2.5rem 0 0;
	padding: 1.5rem;
	background: #f4f7fb;
	border: 1px solid #dde6f1;
	border-radius: 8px;
}
.cts-landing__foot-cta h2 {
	margin-top: 0;
}

/* Resources hub grid */
.cts-resource-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.25rem;
	margin: 2rem 0;
}
.cts-resource-card {
	border: 1px solid #dde6f1;
	border-radius: 8px;
	padding: 1.25rem;
	background: #fff;
}
.cts-resource-card h2 {
	font-size: 1.2rem;
	margin: 0 0 0.5rem;
}
.cts-resource-card h2 a {
	text-decoration: none;
}
.cts-resource-card__link {
	font-weight: 600;
	text-decoration: none;
}

/* Related */
.cts-related {
	margin: 2.5rem 0 0;
}
.cts-related ul {
	margin: 0.5rem 0 0;
	padding-left: 1.2rem;
}
