@font-face {
	font-family: "Motorica Manrope";
	font-style: normal;
	font-weight: 400 700;
	font-display: optional;
	src: url("https://motorica.io/fonts/local/4c9affa5bc8f420e-s.p.woff2") format("woff2");
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: "Motorica Manrope Fallback";
	src: local("Arial");
	ascent-override: 102.96%;
	descent-override: 28.98%;
	line-gap-override: 0%;
	size-adjust: 103.53%;
}

:root {
	--site-header-height: 11.875rem;
	--font-sans: "Motorica Manrope", "Motorica Manrope Fallback", Arial, ui-sans-serif, system-ui, sans-serif;
	--brand: #ff6600;
	--brand-contrast: #c94500;
	--secondary: #0d234b;
	--neutral-200: #e7e5e4;
	--neutral-600: #57534e;
	--neutral-700: #44403c;
	--neutral-900: #18181b;
	--z-sticky: 40;
	--primary: #ff6600;
	--text: #0f172a;
	--text-muted: #64748b;
	--border: #e2e8f0;
	--bg: #f8fafc;
}

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

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

body.r-page {
	margin: 0;
	font-family: var(--font-sans);
	color: var(--neutral-900);
	background: #fff;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

body.r-nav-lock {
	overflow: hidden;
}

.r-skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.r-skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 100;
	width: auto;
	height: auto;
	padding: 0.75rem 1rem;
	background: #fff;
	color: var(--secondary);
	border-radius: 0.5rem;
	outline: 2px solid var(--brand);
}

.r-site-header {
	pointer-events: none;
	position: fixed;
	inset-inline: 0;
	top: 0;
	z-index: var(--z-sticky);
}

.r-site-header-group {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: stretch;
}

[data-offer-promo-banner] {
	pointer-events: auto;
	width: 100%;
	background: var(--brand-contrast);
	color: #fff;
	text-align: center;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	padding: 0.625rem 1rem;
}

.r-offer-inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem 0.75rem;
	max-width: 80rem;
	margin: 0 auto;
}

.r-offer-cta {
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 4px;
	text-decoration-thickness: 2px;
}

.r-offer-cta:hover {
	text-decoration-thickness: 4px;
}

.r-offer-validity {
	margin-inline-start: 0.5rem;
	font-weight: 500;
}

.r-header-shell-wrap {
	pointer-events: none;
	padding: 0.75rem 1rem 0;
}

@media (min-width: 768px) {
	.r-header-shell-wrap {
		padding-inline: 1.5rem;
	}
}

.r-header-shell-inner {
	pointer-events: auto;
	display: flex;
	margin: 0 auto;
	width: 100%;
	max-width: 80rem;
	flex-direction: column;
	align-items: center;
}

[data-site-header-shell] {
	position: relative;
	z-index: 20;
	width: 100%;
	border-radius: 1rem;
	border: 1px solid color-mix(in srgb, var(--neutral-200) 80%, transparent);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 8px 32px -8px rgb(13 35 75 / 12%);
	backdrop-filter: blur(12px);
}

[data-site-header-shell] > div {
	display: flex;
	height: 3.5rem;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	padding-inline: 0.75rem;
}

.r-breadcrumbs-dock {
	position: relative;
	z-index: 10;
	display: flex;
	width: 100%;
	justify-content: center;
	margin-top: -1px;
	pointer-events: auto;
}

.r-breadcrumbs-trail {
	display: inline-flex;
	max-width: 100%;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 0;
	padding: 0.375rem 1rem;
	list-style: none;
	border-radius: 0 0 1rem 1rem;
	background: var(--brand-contrast);
	color: #fff;
	font-size: 0.875rem;
	line-height: 1.35;
}

.r-breadcrumbs-trail li {
	display: inline-flex;
	min-width: 0;
	align-items: center;
	gap: 0.5rem;
}

.r-breadcrumbs-sep {
	color: rgb(255 255 255 / 60%);
}

.r-breadcrumbs-trail a {
	display: inline-flex;
	min-height: 44px;
	align-items: center;
	color: #fff;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.r-breadcrumbs-trail a:hover,
.r-breadcrumbs-trail a:focus-visible {
	text-decoration-thickness: 2px;
}

.r-breadcrumbs-trail [aria-current="page"] {
	max-width: min(100%, 20rem);
	overflow: hidden;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media (min-width: 768px) {
	[data-site-header-shell] > div {
		height: 4.25rem;
		padding-inline: 1.5rem;
	}
}

.r-brand {
	display: flex;
	min-height: 44px;
	flex-shrink: 0;
	align-items: center;
	gap: 0.625rem;
	border-radius: 0.5rem;
	color: var(--neutral-900);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: -0.025em;
}

.r-brand:hover {
	opacity: 0.9;
}

.r-brand img {
	height: 2.25rem;
	width: 2.25rem;
	border-radius: 0.5rem;
}

.r-desktop-nav {
	display: none;
	min-width: 0;
	align-items: center;
	gap: 1.25rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--neutral-600);
}

@media (min-width: 1280px) {
	.r-desktop-nav {
		display: flex;
		gap: 1.5rem;
	}
}

.r-desktop-nav a,
.r-desktop-nav button {
	color: inherit;
	background: none;
	border: 0;
	font: inherit;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
}

.r-desktop-nav a:hover,
.r-desktop-nav button:hover {
	color: var(--neutral-900);
}

.r-dropdown {
	position: relative;
}

.r-dropdown-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	min-height: 44px;
}

.r-dropdown-menu {
	display: none;
	position: absolute;
	inset-inline-start: 0;
	top: 100%;
	z-index: 60;
	min-width: 15rem;
	padding-top: 0.5rem;
}

.r-dropdown.is-open .r-dropdown-menu,
.r-dropdown:hover .r-dropdown-menu {
	display: block;
}

.r-dropdown-menu ul {
	margin: 0;
	padding: 0.5rem;
	list-style: none;
	border-radius: 0.75rem;
	border: 1px solid color-mix(in srgb, var(--neutral-200) 80%, transparent);
	background: #fff;
	box-shadow: 0 8px 32px -8px rgb(13 35 75 / 12%);
}

.r-dropdown-menu a {
	display: block;
	border-radius: 0.5rem;
	padding: 0.5rem 0.75rem;
	color: var(--neutral-700);
	white-space: normal;
}

.r-dropdown-menu a:hover {
	background: #fafaf9;
	color: var(--neutral-900);
}

.r-header-actions {
	display: flex;
	flex-shrink: 0;
	align-items: center;
	gap: 0.375rem;
}

@media (min-width: 640px) {
	.r-header-actions {
		gap: 0.5rem;
	}
}

.r-locale {
	position: relative;
	display: none;
}

@media (min-width: 640px) {
	.r-locale {
		display: block;
	}
}

.r-locale-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.5rem 1rem;
	border: 1px solid var(--neutral-200);
	border-radius: 9999px;
	background: rgb(255 255 255 / 90%);
	color: var(--neutral-800);
	font: inherit;
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
}

.r-locale-toggle:hover {
	border-color: var(--neutral-300);
}

.r-locale-toggle-main {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.r-locale-globe,
.r-locale-chevron {
	flex-shrink: 0;
	color: var(--neutral-600);
}

.r-locale.is-open .r-locale-chevron {
	transform: rotate(180deg);
}

.r-login-link {
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	padding-inline: 0.5rem;
	border: 0;
	background: none;
	color: var(--neutral-700);
	font: inherit;
	font-size: 0.875rem;
	font-weight: 500;
	text-decoration: none;
	cursor: pointer;
}

.r-login-link {
	display: none;
}

@media (min-width: 640px) {
	.r-login-link {
		display: inline-flex;
	}
}

.r-locale-menu {
	display: none;
	position: absolute;
	inset-inline-end: 0;
	top: 100%;
	z-index: 70;
	min-width: 12rem;
	padding-top: 0.5rem;
}

.r-locale.is-open .r-locale-menu {
	display: block;
}

.r-locale-menu ul {
	margin: 0;
	padding: 0.5rem;
	list-style: none;
	max-height: 18rem;
	overflow: auto;
	border-radius: 0.75rem;
	border: 1px solid var(--neutral-200);
	background: #fff;
	box-shadow: 0 8px 32px -8px rgb(13 35 75 / 12%);
}

.r-locale-menu a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 44px;
	border-radius: 0.5rem;
	padding: 0.5rem 0.75rem;
	color: var(--neutral-700);
	text-decoration: none;
	font-size: 0.875rem;
	text-align: start;
}

.r-locale-menu a[aria-current="true"],
.r-locale-menu a:hover {
	background: #fafaf9;
	color: var(--neutral-900);
}

.r-cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	border-radius: 9999px;
	background: var(--brand-contrast);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
	padding: 0 1rem;
}

.r-cta:hover {
	filter: brightness(1.05);
}

.r-cta--header {
	width: 2.75rem;
	padding: 0;
	position: relative;
	gap: 0.25rem;
}

.r-cta-check {
	flex-shrink: 0;
}

@media (min-width: 640px) {
	.r-cta--header {
		width: auto;
		padding-inline: 1rem;
	}

	.r-cta--header .r-cta-label {
		position: static;
		width: auto;
		height: auto;
		clip: auto;
		overflow: visible;
		white-space: nowrap;
	}
}

.r-cta-label {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.r-burger {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	min-width: 44px;
	border: 0;
	background: none;
	color: var(--secondary);
	cursor: pointer;
}

@media (min-width: 1280px) {
	.r-burger {
		display: none;
	}
}

.r-header-spacer {
	flex-shrink: 0;
	height: var(--site-header-height, 11.875rem);
}

.r-mobile-panel {
	position: fixed;
	inset: 0;
	z-index: 80;
	background: rgba(15, 23, 42, 0.4);
}

.r-mobile-panel[hidden] {
	display: none;
}

.r-mobile-drawer {
	position: absolute;
	inset-block: 0;
	inset-inline-end: 0;
	width: min(100%, 22rem);
	overflow-y: auto;
	background: #fff;
	padding: 1rem 1.25rem 2rem;
	box-shadow: -8px 0 32px rgb(13 35 75 / 12%);
}

.r-mobile-drawer a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 44px;
	padding: 0.5rem 0;
	color: var(--secondary);
	text-decoration: none;
	font-weight: 500;
}

.r-mobile-group {
	margin: 0.75rem 0;
	padding: 0;
	border: 0;
}

.r-mobile-group legend {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--secondary);
}

.r-mobile-close {
	display: flex;
	margin-inline-start: auto;
	min-height: 44px;
	min-width: 44px;
	align-items: center;
	justify-content: center;
	border: 0;
	background: none;
	cursor: pointer;
	color: var(--secondary);
}

.r-site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: var(--brand-contrast);
	color: #fff;
}

.r-site-footer a {
	color: #fff;
	text-decoration: none;
}

.r-site-footer a:hover {
	text-decoration: underline;
}

.r-site-footer a:focus-visible {
	outline: 2px solid #fff;
	outline-offset: 2px;
}

.r-footer-inner {
	margin: 0 auto;
	max-width: 80rem;
	padding: 3.5rem 1rem 0;
}

@media (min-width: 768px) {
	.r-footer-inner {
		padding-inline: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.r-footer-inner {
		padding-inline: 2rem;
	}
}

.r-footer-brand {
	margin-bottom: 2.5rem;
}

.r-footer-brand p {
	margin: 0;
	font-size: 1.125rem;
	font-weight: 700;
}

.r-footer-social {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	margin-top: 1.5rem;
}

.r-footer-social a {
	display: inline-flex;
	min-height: 44px;
	min-width: 44px;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
}

.r-footer-play {
	display: inline-block;
	margin-top: 1rem;
}

.r-footer-play img {
	height: 2.5rem;
	width: auto;
}

.r-footer-grid {
	display: grid;
	gap: 2.5rem;
}

@media (min-width: 768px) {
	.r-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.r-footer-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.r-footer-grid p {
	margin: 0;
	font-weight: 700;
}

.r-footer-grid ul {
	margin: 0.75rem 0 0;
	padding: 0;
	list-style: none;
	font-size: 0.875rem;
}

.r-footer-grid li {
	margin: 0.5rem 0;
}

.r-footer-copy {
	margin-top: 2.5rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 1.25rem 0;
	text-align: center;
	font-size: 0.75rem;
}

.r-fullscreen-hero {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
	margin-top: calc(-1 * var(--site-header-height, 5.75rem));
	padding-top: var(--site-header-height, 5.75rem);
	background: var(--secondary);
}

.r-fullscreen-hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.r-fullscreen-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, #0d234b 0%, #0d234b 14%, rgba(13, 35, 75, 0.64) 62%, rgba(13, 35, 75, 0.25) 100%);
}

.r-fullscreen-hero--plain .r-fullscreen-hero-overlay {
	background: linear-gradient(to top, #0d234b 0%, #122a54 100%);
}

.r-fullscreen-hero-inner {
	position: relative;
	margin: 0 auto;
	display: flex;
	min-height: calc(100vh - var(--site-header-height, 5.75rem));
	max-width: 64rem;
	flex-direction: column;
	justify-content: flex-end;
	padding: 6rem 1rem 3rem;
}

@media (min-width: 768px) {
	.r-fullscreen-hero-inner {
		padding: 8rem 1.5rem 4rem;
	}
}

.r-hero-eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.8);
}

.r-fullscreen-hero h1 {
	margin: 0;
	max-width: 56rem;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.15;
	color: #fff;
}

@media (min-width: 768px) {
	.r-fullscreen-hero h1 {
		font-size: 3rem;
	}
}

@media (min-width: 1024px) {
	.r-fullscreen-hero h1 {
		font-size: 3.75rem;
	}
}

.r-hero-excerpt {
	margin: 1rem 0 0;
	max-width: 48rem;
	font-size: 1.125rem;
	line-height: 1.625;
	color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
	.r-hero-excerpt {
		font-size: 1.25rem;
	}
}

.r-hero-meta {
	margin: 1rem 0 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.85);
}

.r-fullscreen-hero .r-article-hero-credit {
	margin: 1.5rem 0 0;
	padding: 0;
	font-size: 0.75rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.45;
	text-align: start;
}

.r-fullscreen-hero .r-article-hero-credit a {
	color: rgba(255, 255, 255, 0.7);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.r-fullscreen-hero .r-article-hero-credit a:hover {
	color: #fff;
}

.r-main {
	max-width: 1100px;
	margin: 0 auto;
	padding: 2rem 1.5rem 3rem;
}

.r-breadcrumb {
	font-size: 0.875rem;
	color: var(--text-muted);
	margin-bottom: 1.5rem;
}

.r-breadcrumb a {
	color: var(--primary);
	text-decoration: none;
}

.r-breadcrumb a:hover {
	text-decoration: underline;
}

.r-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.r-card {
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.r-card img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	display: block;
}

.r-card-body {
	padding: 1rem 1.25rem 1.25rem;
}

.r-card h2 {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
	line-height: 1.35;
}

.r-card h2 a {
	color: var(--text);
	text-decoration: none;
}

.r-card h2 a:hover {
	color: var(--primary);
}

.r-meta {
	font-size: 0.8125rem;
	color: var(--text-muted);
}

.r-tag {
	display: inline-block;
	margin: 0.15rem 0.25rem 0 0;
	padding: 0.15rem 0.5rem;
	background: #f1f5f9;
	border-radius: 4px;
	font-size: 0.75rem;
}

.r-pagination {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 2rem;
	flex-wrap: wrap;
}

.r-pagination a,
.r-pagination span {
	padding: 0.4rem 0.75rem;
	border-radius: 8px;
	border: 1px solid var(--border);
	text-decoration: none;
	color: var(--text);
	font-size: 0.875rem;
}

.r-pagination a:hover {
	border-color: var(--primary);
	color: var(--primary);
}

.r-pagination .active {
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}

.r-share {
	margin: 2.5rem 0 0;
	padding: 1.25rem 1.5rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
}

.r-share-heading {
	margin: 0 0 1rem;
	font-size: 1rem;
	font-weight: 700;
	color: var(--secondary);
}

.r-share-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.r-share-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 44px;
	min-width: 44px;
	padding: 0.5rem 0.85rem;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: #fff;
	color: var(--secondary);
	font-family: inherit;
	font-size: 0.8125rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.r-share-btn:hover {
	border-color: var(--primary);
	color: var(--primary);
	background: #fff7f0;
}

.r-share-btn:focus-visible {
	outline: 2px solid var(--primary);
	outline-offset: 2px;
}

.r-share-btn--native {
	display: none;
}

.r-share-btn--native.is-visible {
	display: inline-flex;
}

.r-share-btn-label {
	line-height: 1.2;
}

.r-share-toast {
	margin: 0.75rem 0 0;
	font-size: 0.8125rem;
	color: var(--primary);
	font-weight: 600;
}

.r-share-toast[hidden] {
	display: none;
}

@media (max-width: 639px) {
	.r-share-btn {
		position: relative;
		padding: 0.5rem;
	}

	.r-share-btn-label {
		position: absolute;
		width: 1px;
		height: 1px;
		padding: 0;
		margin: -1px;
		overflow: hidden;
		clip: rect(0, 0, 0, 0);
		white-space: nowrap;
		border: 0;
	}
}

.r-article-layout {
	display: block;
}

.r-article-sidebar {
	display: block;
	margin: 0 0 1.5rem;
}

.r-toc {
	margin: 0 0 1.5rem;
	padding: 1rem 1.25rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
}

.r-toc-title {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--secondary);
}

.r-toc ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.r-toc li {
	margin: 0.35rem 0;
	font-size: 0.9375rem;
	line-height: 1.4;
}

.r-toc a {
	color: var(--secondary);
	text-decoration: none;
}

.r-toc a:hover {
	color: var(--primary);
	text-decoration: underline;
}

.r-toc--sidebar {
	margin: 0;
}

.r-article-content h2 {
	margin: 2rem 0 0.75rem;
	font-size: 1.375rem;
	scroll-margin-top: calc(var(--site-header-height, 5.75rem) + 0.75rem);
}

.r-article-content h3 {
	margin: 1.25rem 0 0.5rem;
	font-size: 1.125rem;
	scroll-margin-top: calc(var(--site-header-height, 5.75rem) + 0.75rem);
}

.r-article-content p {
	margin: 0 0 1rem;
}

.r-article-content ul,
.r-article-content ol {
	margin: 0 0 1rem 1.25rem;
}

.r-article-content blockquote {
	margin: 0 0 1rem;
	padding: 0.75rem 1rem;
	border-left: 3px solid var(--primary);
	background: #fff;
	color: var(--text-muted);
}

.r-article-content hr {
	margin: 1.5rem 0;
	border: 0;
	border-top: 1px solid var(--border);
}

.r-article-content ul.r-checklist {
	list-style: none;
	margin-left: 0;
	padding-left: 0;
}

.r-article-content ul.r-checklist li {
	position: relative;
	padding-left: 1.75rem;
	margin-bottom: 0.5rem;
}

.r-article-content ul.r-checklist li::before {
	content: "☐";
	position: absolute;
	left: 0;
	color: var(--primary);
}

.r-article-content ul.r-checklist li.is-checked::before {
	content: "☑";
}

.r-article-content a {
	color: var(--primary);
}

.r-article-content img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.r-cta-panel {
	margin: 2.5rem 0 0;
	padding: 1.5rem;
	background: #fff;
	border: 1px solid var(--border);
	border-radius: 12px;
}

@media (min-width: 1024px) {
	.r-article-layout:has(.r-article-sidebar) {
		display: grid;
		grid-template-columns: 240px minmax(0, 1fr);
		gap: 2rem;
		align-items: start;
	}

	.r-article-layout:has(.r-article-sidebar) .r-article-sidebar {
		margin: 0;
		position: sticky;
		top: calc(var(--site-header-height, 5.75rem) + 0.75rem);
	}
}
