:root {
	--rn-black: #050505;
	--rn-off-black: #111111;
	--rn-white: #ffffff;
	--rn-off-white: #f7f5f0;
	--rn-gold: #d9a85f;
	--rn-muted-gold: #b98a45;
	--rn-grey: #6f6f6f;
	--rn-border: rgba(5, 5, 5, 0.12);
	--rn-border-light: rgba(255, 255, 255, 0.18);
	--rn-font-heading: "Inter", "Helvetica Neue", Arial, sans-serif;
	--rn-font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
	--rn-radius: 8px;
	--rn-shadow: 0 24px 80px rgba(0, 0, 0, 0.16);
	--rn-header-height: 78px;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--rn-off-white);
	color: var(--rn-black);
	font-family: var(--rn-font-body);
	font-size: 16px;
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
}

body.menu-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input {
	font: inherit;
}

button {
	cursor: pointer;
}

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

.rn-container {
	width: min(100% - 48px, 1220px);
	margin-inline: auto;
}

.rn-container--wide {
	width: min(100% - 44px, 1440px);
}

.rn-section {
	padding: 72px 0;
}

.rn-section--light {
	background: var(--rn-off-white);
}

.rn-section--dark {
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%),
		var(--rn-off-black);
	background-size: 96px 100%;
	color: var(--rn-white);
}

.rn-eyebrow {
	margin: 0 0 14px;
	color: var(--rn-grey);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: uppercase;
}

.rn-eyebrow--light {
	color: var(--rn-white);
}

.rn-eyebrow--gold {
	color: var(--rn-gold);
}

.rn-button,
.rn-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 48px;
	padding: 0 24px;
	border: 1px solid transparent;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
	transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
	white-space: nowrap;
}

.rn-button svg,
.rn-link svg {
	width: 16px;
	height: 16px;
	flex: 0 0 auto;
}

.rn-button:hover,
.rn-link:hover {
	transform: translateY(-1px);
}

.rn-button--gold {
	background: linear-gradient(135deg, var(--rn-gold), #edc785);
	color: var(--rn-black);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.rn-button--outline {
	border-color: var(--rn-border-light);
	color: var(--rn-white);
	background: rgba(255, 255, 255, 0.02);
}

.rn-button--outline:hover {
	border-color: var(--rn-gold);
	color: var(--rn-gold);
}

.rn-button--ghost {
	border-color: rgba(217, 168, 95, 0.45);
	color: var(--rn-muted-gold);
	background: transparent;
}

.rn-button--small {
	min-height: 50px;
	padding-inline: 26px;
}

.rn-link {
	min-height: auto;
	padding: 0;
	color: var(--rn-black);
}

.rn-section--dark .rn-link {
	color: var(--rn-white);
}

.site-header {
	position: absolute;
	z-index: 50;
	top: 0;
	left: 0;
	width: 100%;
	color: var(--rn-white);
	transition: background 180ms ease, box-shadow 180ms ease;
}

body:not(.home) .site-header,
.site-header.is-scrolled {
	position: sticky;
	background: rgba(5, 5, 5, 0.96);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
	display: grid;
	grid-template-columns: 150px 1fr auto;
	align-items: center;
	gap: 28px;
	min-height: var(--rn-header-height);
}

.site-brand {
	display: inline-flex;
	flex-direction: column;
	width: fit-content;
	font-family: var(--rn-font-heading);
	font-size: 28px;
	font-weight: 950;
	line-height: 0.86;
	text-transform: uppercase;
}

.site-brand img {
	max-height: 52px;
	width: auto;
}

.site-nav__list,
.footer-nav__list {
	display: flex;
	align-items: center;
	gap: 34px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.site-nav__list {
	justify-content: center;
}

.site-nav a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.site-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 6px;
	height: 2px;
	background: var(--rn-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 180ms ease;
}

.site-nav .current-menu-item > a::after,
.site-nav a:hover::after {
	transform: scaleX(1);
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.rn-socials {
	display: inline-flex;
	align-items: center;
	gap: 18px;
}

.rn-social-link {
	display: inline-flex;
	width: 22px;
	height: 22px;
	align-items: center;
	justify-content: center;
	color: currentColor;
	transition: color 180ms ease, transform 180ms ease;
}

.rn-social-link:hover {
	color: var(--rn-gold);
	transform: translateY(-1px);
}

.rn-social-link svg {
	width: 18px;
	height: 18px;
}

.site-nav-toggle {
	display: none;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--rn-border-light);
	border-radius: 4px;
	background: transparent;
	color: var(--rn-white);
}

.site-nav-toggle span:not(.screen-reader-text) {
	display: block;
	width: 18px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
}

.rn-hero {
	position: relative;
	overflow: hidden;
	min-height: 680px;
	background: var(--rn-black);
	color: var(--rn-white);
}

.rn-hero__backdrop {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.95) 31%, rgba(5, 5, 5, 0.56) 58%, #050505 100%),
		radial-gradient(circle at 78% 45%, rgba(217, 168, 95, 0.16), transparent 28%);
}

.rn-hero__inner {
	position: relative;
	display: grid;
	grid-template-columns: 0.88fr 1.12fr;
	align-items: end;
	min-height: 680px;
	padding-top: var(--rn-header-height);
}

.rn-hero__content {
	z-index: 2;
	max-width: 540px;
	padding: 84px 0 112px;
}

.rn-hero h1 {
	margin: 0;
	font-family: var(--rn-font-heading);
	font-size: clamp(55px, 7vw, 92px);
	font-weight: 950;
	line-height: 0.9;
	letter-spacing: 0;
	text-transform: uppercase;
}

.rn-hero h1 span {
	display: block;
}

.rn-hero h1 .is-gold {
	color: var(--rn-gold);
}

.rn-hero__copy {
	max-width: 470px;
	margin: 34px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 17px;
}

.rn-hero__copy::before {
	content: "";
	display: block;
	width: 64px;
	height: 2px;
	margin: 0 0 24px;
	background: var(--rn-gold);
}

.rn-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 34px;
}

.rn-button--play svg {
	width: 18px;
	height: 18px;
	padding: 3px;
	border-radius: 999px;
	background: var(--rn-white);
	color: var(--rn-black);
}

.rn-hero__media {
	position: relative;
	align-self: stretch;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.rn-hero__media img {
	width: min(780px, 64vw);
	max-width: none;
	max-height: 650px;
	object-fit: contain;
	object-position: bottom center;
	filter: saturate(0.96) contrast(1.04);
}

.rn-latest-video__grid {
	display: grid;
	grid-template-columns: 250px minmax(420px, 1fr) 260px;
	align-items: center;
	gap: 38px;
}

.rn-section-intro h2,
.rn-section-heading h2,
.rn-about h2,
.rn-guide h2 {
	margin: 0;
	font-family: var(--rn-font-heading);
	font-size: clamp(32px, 4vw, 45px);
	font-weight: 900;
	line-height: 1.05;
	letter-spacing: 0;
}

.rn-section-intro p:not(.rn-eyebrow) {
	margin: 24px 0 34px;
	color: var(--rn-grey);
}

.rn-featured-video {
	position: relative;
	overflow: hidden;
	border-radius: var(--rn-radius);
	background: var(--rn-black);
	box-shadow: var(--rn-shadow);
	aspect-ratio: 16 / 9;
}

.rn-featured-video img,
.rn-video-row img,
.rn-short-card img,
.rn-product-card__media img,
.rn-article-card__media img,
.rn-about__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rn-play-button {
	position: absolute;
	inset: 0;
	display: grid;
	width: 76px;
	height: 76px;
	margin: auto;
	place-items: center;
	border: 0;
	border-radius: 999px;
	background: var(--rn-white);
	color: var(--rn-black);
	box-shadow: 0 20px 55px rgba(0, 0, 0, 0.24);
}

.rn-play-button svg {
	width: 34px;
	height: 34px;
}

.rn-video-duration {
	position: absolute;
	left: 22px;
	bottom: 20px;
	color: var(--rn-white);
	font-weight: 800;
}

.rn-video-list {
	display: grid;
	gap: 22px;
}

.rn-video-row {
	display: grid;
	grid-template-columns: 96px 1fr;
	align-items: center;
	gap: 16px;
}

.rn-video-row img {
	overflow: hidden;
	aspect-ratio: 16 / 10;
	border-radius: 6px;
	background: var(--rn-black);
}

.rn-video-row strong {
	display: block;
	font-size: 14px;
	font-weight: 900;
	line-height: 1.35;
}

.rn-video-row small {
	display: block;
	margin-top: 6px;
	color: var(--rn-grey);
	font-weight: 700;
}

.rn-shorts__grid {
	display: grid;
	grid-template-columns: 220px 1fr;
	align-items: center;
	gap: 44px;
}

.rn-section-intro--dark p:not(.rn-eyebrow) {
	color: rgba(255, 255, 255, 0.68);
}

.rn-short-list {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
}

.rn-short-card {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	border: 1px solid var(--rn-border-light);
	border-radius: var(--rn-radius);
	background: var(--rn-black);
	color: var(--rn-white);
	aspect-ratio: 0.67;
}

.rn-short-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.9) 100%);
}

.rn-short-card__title,
.rn-short-card__views {
	position: absolute;
	z-index: 2;
	left: 16px;
	right: 16px;
}

.rn-short-card__title {
	bottom: 44px;
	font-size: clamp(17px, 1.6vw, 24px);
	font-weight: 900;
	line-height: 1.05;
}

.rn-short-card__views {
	bottom: 16px;
	display: flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 800;
}

.rn-short-card__views svg {
	width: 14px;
	height: 14px;
}

.rn-about {
	padding-top: 86px;
	padding-bottom: 32px;
}

.rn-about__grid {
	display: grid;
	grid-template-columns: minmax(320px, 0.95fr) 1.05fr;
	align-items: center;
	gap: 76px;
}

.rn-about__image {
	overflow: hidden;
	margin: 0;
	border-radius: 12px;
	box-shadow: var(--rn-shadow);
	aspect-ratio: 1.46;
}

.rn-about__content > p:not(.rn-eyebrow) {
	max-width: 630px;
	margin: 24px 0 32px;
	color: var(--rn-grey);
}

.rn-credentials {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	margin: 32px 0;
}

.rn-credentials div {
	display: grid;
	grid-template-columns: 28px 1fr;
	column-gap: 10px;
	align-items: start;
}

.rn-credentials svg {
	grid-row: span 2;
	width: 26px;
	height: 26px;
	color: var(--rn-muted-gold);
}

.rn-credentials strong {
	font-size: 13px;
	line-height: 1.25;
}

.rn-credentials span {
	color: var(--rn-grey);
	font-size: 11px;
	line-height: 1.35;
}

.rn-guide {
	padding-top: 0;
}

.rn-guide__panel {
	display: grid;
	grid-template-columns: 300px 1fr 340px;
	align-items: center;
	gap: 32px;
	overflow: hidden;
	padding: 34px;
	border-radius: 10px;
	background:
		linear-gradient(90deg, rgba(217, 168, 95, 0.08), transparent 38%),
		var(--rn-off-black);
	color: var(--rn-white);
}

.rn-guide__image {
	align-self: stretch;
	min-height: 210px;
}

.rn-guide__image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: left center;
}

.rn-guide__copy p:not(.rn-eyebrow) {
	max-width: 570px;
	color: rgba(255, 255, 255, 0.78);
}

.rn-guide__form > p,
.site-footer__form > p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.56);
	font-size: 12px;
	text-align: center;
}

.rn-newsletter-form {
	display: grid;
	gap: 12px;
}

.rn-newsletter-form input {
	width: 100%;
	min-height: 48px;
	padding: 0 18px;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 4px;
	outline: 0;
	background: transparent;
	color: var(--rn-white);
}

.rn-newsletter-form input::placeholder {
	color: rgba(255, 255, 255, 0.62);
}

.rn-newsletter-form input:focus {
	border-color: var(--rn-gold);
}

.rn-newsletter-form--footer {
	grid-template-columns: minmax(220px, 1fr) auto;
	align-items: center;
}

.rn-newsletter-form--footer input {
	background: var(--rn-white);
	color: var(--rn-black);
}

.rn-newsletter-form--footer input::placeholder {
	color: var(--rn-grey);
}

.rn-section-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 34px;
}

.rn-product-grid,
.rn-article-grid,
.rn-card-grid--three {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
}

.rn-product-card {
	display: grid;
	grid-template-columns: 0.9fr 1.25fr;
	overflow: hidden;
	min-height: 230px;
	border: 1px solid var(--rn-border);
	border-radius: var(--rn-radius);
	background: rgba(255, 255, 255, 0.54);
}

.rn-product-card__media {
	min-height: 230px;
	background: var(--rn-black);
}

.rn-product-card__body {
	padding: 28px;
}

.rn-card__meta {
	margin: 0 0 12px;
	color: var(--rn-grey);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.rn-product-card h3,
.rn-article-card h3,
.rn-content-card h2 {
	margin: 0;
	font-family: var(--rn-font-heading);
	font-size: 20px;
	font-weight: 900;
	line-height: 1.15;
}

.rn-product-card p:not(.rn-card__meta) {
	margin: 16px 0 20px;
	color: var(--rn-grey);
	font-size: 14px;
	line-height: 1.5;
}

.rn-price-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 900;
}

.rn-price-link svg {
	width: 14px;
	height: 14px;
}

.rn-article-card__media,
.rn-card__image {
	display: block;
	overflow: hidden;
	border-radius: var(--rn-radius);
	background: var(--rn-black);
	aspect-ratio: 16 / 7.3;
}

.rn-article-card h3 {
	font-size: 21px;
}

.rn-article-card .rn-card__meta {
	margin-top: 18px;
}

.site-footer {
	padding: 54px 0 38px;
	background:
		linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%),
		var(--rn-off-black);
	background-size: 96px 100%;
	color: var(--rn-white);
}

.site-footer__top {
	display: grid;
	grid-template-columns: 1fr 520px;
	align-items: center;
	gap: 52px;
}

.site-footer h2 {
	margin: 0;
	font-family: var(--rn-font-heading);
	font-size: clamp(34px, 4vw, 45px);
	font-weight: 900;
	line-height: 1.05;
}

.site-footer__top p {
	max-width: 530px;
	color: rgba(255, 255, 255, 0.76);
}

.site-footer__bottom {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
	margin-top: 66px;
	color: rgba(255, 255, 255, 0.6);
	font-size: 13px;
}

.site-footer__bottom .rn-socials {
	color: var(--rn-white);
}

.footer-nav__list {
	justify-content: end;
	gap: 24px;
}

.footer-nav a:hover {
	color: var(--rn-gold);
}

.rn-page {
	padding: calc(var(--rn-header-height) + 64px) 0 90px;
}

body:not(.home) .rn-page {
	padding-top: 70px;
}

.rn-page-header,
.rn-archive-header,
.rn-single__header {
	max-width: 820px;
	margin: 0 auto 42px;
	text-align: center;
}

.rn-page-header h1,
.rn-archive-header h1,
.rn-single__header h1 {
	margin: 0;
	font-family: var(--rn-font-heading);
	font-size: clamp(42px, 6vw, 74px);
	font-weight: 950;
	line-height: 0.98;
	letter-spacing: 0;
}

.rn-content-page,
.rn-single {
	max-width: 960px;
}

.rn-prose,
.entry-content {
	color: #242424;
}

.rn-prose p,
.entry-content p {
	margin: 0 0 1.2em;
}

.rn-single__media {
	overflow: hidden;
	margin: 0 0 42px;
	border-radius: 12px;
}

.rn-meta {
	color: var(--rn-grey);
	font-weight: 700;
}

.rn-content-card {
	overflow: hidden;
	border: 1px solid var(--rn-border);
	border-radius: var(--rn-radius);
	background: rgba(255, 255, 255, 0.58);
}

.rn-content-card .rn-card__image {
	border-radius: 0;
}

.rn-content-card .rn-card__body {
	padding: 24px;
}

.rn-content-card p:not(.rn-card__meta) {
	color: var(--rn-grey);
}

.rn-empty {
	padding: 52px;
	border: 1px solid var(--rn-border);
	border-radius: var(--rn-radius);
	text-align: center;
}

.nav-links {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-top: 48px;
}

.page-numbers {
	display: inline-flex;
	min-width: 38px;
	height: 38px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--rn-border);
	border-radius: 4px;
	font-weight: 800;
}

.page-numbers.current {
	background: var(--rn-black);
	color: var(--rn-white);
}

.rn-video-modal {
	position: fixed;
	z-index: 100;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: rgba(0, 0, 0, 0.82);
}

.rn-video-modal.is-open {
	display: flex;
}

.rn-video-modal__dialog {
	position: relative;
	width: min(100%, 960px);
	aspect-ratio: 16 / 9;
	background: var(--rn-black);
}

.rn-video-modal iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.rn-video-modal__close {
	position: absolute;
	top: -46px;
	right: 0;
	width: 38px;
	height: 38px;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 4px;
	background: transparent;
	color: var(--rn-white);
	font-size: 22px;
	line-height: 1;
}

.rn-elementor-full-width,
.rn-elementor-canvas {
	width: 100%;
}

.rn-canvas-template {
	background: var(--rn-off-white);
}

@media (max-width: 1180px) {
	.site-header__inner {
		grid-template-columns: 120px 1fr auto;
		gap: 18px;
	}

	.site-nav__list {
		gap: 22px;
	}

	.site-header__actions .rn-socials {
		display: none;
	}

	.rn-latest-video__grid {
		grid-template-columns: 230px 1fr;
	}

	.rn-video-list {
		grid-column: 2;
		grid-template-columns: repeat(3, 1fr);
	}

	.rn-video-row {
		grid-template-columns: 1fr;
	}

	.rn-guide__panel {
		grid-template-columns: 220px 1fr;
	}

	.rn-guide__form {
		grid-column: 1 / -1;
	}

	.rn-newsletter-form--guide {
		grid-template-columns: 1fr 1fr auto;
	}

	.rn-product-card {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 960px) {
	.rn-container,
	.rn-container--wide {
		width: min(100% - 32px, 100%);
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
	}

	.site-nav-toggle {
		display: block;
		justify-self: end;
	}

	.site-nav {
		position: fixed;
		inset: var(--rn-header-height) 0 auto;
		display: none;
		padding: 24px 16px 32px;
		background: rgba(5, 5, 5, 0.98);
		border-top: 1px solid var(--rn-border-light);
	}

	.site-nav.is-open {
		display: block;
	}

	.site-nav__list {
		display: grid;
		gap: 4px;
	}

	.site-nav a {
		min-height: 50px;
		font-size: 15px;
	}

	.site-header__actions {
		display: none;
	}

	.rn-hero__inner {
		grid-template-columns: 1fr;
		align-items: end;
		min-height: auto;
		padding-top: 112px;
	}

	.rn-hero__content {
		padding: 32px 0 34px;
	}

	.rn-hero__media {
		min-height: 380px;
	}

	.rn-hero__media img {
		width: min(100%, 640px);
		max-height: 420px;
	}

	.rn-latest-video__grid,
	.rn-shorts__grid,
	.rn-about__grid,
	.site-footer__top,
	.site-footer__bottom {
		grid-template-columns: 1fr;
	}

	.rn-video-list {
		grid-column: auto;
	}

	.rn-short-list,
	.rn-product-grid,
	.rn-article-grid,
	.rn-card-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rn-short-list {
		overflow-x: auto;
		grid-auto-flow: column;
		grid-auto-columns: minmax(190px, 1fr);
		grid-template-columns: none;
		padding-bottom: 6px;
	}

	.rn-credentials {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rn-guide__panel {
		grid-template-columns: 1fr;
	}

	.rn-guide__image {
		max-width: 360px;
	}

	.rn-newsletter-form--guide,
	.rn-newsletter-form--footer {
		grid-template-columns: 1fr;
	}

	.site-footer__bottom {
		text-align: center;
	}

	.site-footer__bottom .rn-socials,
	.footer-nav__list {
		justify-content: center;
	}
}

@media (max-width: 640px) {
	.rn-section {
		padding: 54px 0;
	}

	.rn-hero h1 {
		font-size: clamp(46px, 15vw, 72px);
	}

	.rn-hero__copy {
		font-size: 15px;
	}

	.rn-hero__actions,
	.rn-section-heading {
		align-items: stretch;
		flex-direction: column;
	}

	.rn-button {
		width: 100%;
	}

	.rn-latest-video__grid {
		gap: 26px;
	}

	.rn-video-list,
	.rn-product-grid,
	.rn-article-grid,
	.rn-card-grid--three,
	.rn-credentials {
		grid-template-columns: 1fr;
	}

	.rn-video-row {
		grid-template-columns: 112px 1fr;
	}

	.rn-about__grid {
		gap: 34px;
	}

	.rn-guide__panel {
		padding: 24px;
	}

	.rn-product-card__body {
		padding: 22px;
	}

	.site-footer {
		padding-top: 42px;
	}

	.footer-nav__list {
		flex-wrap: wrap;
	}
}
