:root {
	--rps-ink: #17312c;
	--rps-green: #365f50;
	--rps-green-dark: #24483d;
	--rps-accent: #b58b55;
	--rps-ivory: #f6f3ed;
	--rps-tint: #eef3f0;
	--rps-line: #d8ded9;
	--rps-white: #ffffff;
	--rps-text: #303733;
	--rps-muted: #68716c;
}

.rps-media-home #content {
	padding-top: 0;
}

.rps-media-home .l-content {
	max-width: none;
	padding: 0;
	margin: 0;
}

.rps-media-home .l-mainContent {
	width: 100%;
	max-width: none;
	padding: 0;
}

.rps-media-home .l-sidebar {
	display: none;
}

.rps-dict,
.rps-dict * {
	box-sizing: border-box;
}

.rps-dict {
	color: var(--rps-text);
	background: var(--rps-white);
	font-family: inherit;
	line-height: 1.8;
}

.rps-dict-shell {
	width: min(1180px, calc(100% - 48px));
	margin-inline: auto;
}

.rps-dict-kicker {
	margin: 0 0 18px;
	color: var(--rps-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	line-height: 1.4;
}

.rps-dict h1,
.rps-dict h2,
.rps-dict h3,
.rps-dict p {
	margin-top: 0;
}

.rps-dict h1,
.rps-dict h2,
.rps-dict h3 {
	color: var(--rps-ink);
	font-weight: 700;
	letter-spacing: .02em;
}

.rps-dict-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(70px, 9vw, 126px) 0;
	background:
		linear-gradient(105deg, rgba(246,243,237,.98) 0 58%, rgba(232,239,235,.94) 58%),
		var(--rps-ivory);
}

.rps-dict-hero::before {
	position: absolute;
	top: -180px;
	right: -100px;
	width: 480px;
	height: 480px;
	border: 1px solid rgba(181,139,85,.32);
	border-radius: 50%;
	content: "";
}

.rps-dict-hero::after {
	position: absolute;
	right: 8%;
	bottom: -220px;
	width: 420px;
	height: 420px;
	border: 80px solid rgba(255,255,255,.28);
	border-radius: 50%;
	content: "";
}

.rps-dict-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(330px, .65fr);
	gap: clamp(48px, 7vw, 92px);
	align-items: center;
}

.rps-dict-hero h1 {
	margin-bottom: 24px;
	font-size: clamp(46px, 6.2vw, 88px);
	line-height: 1.08;
	letter-spacing: .06em;
}

.rps-dict-hero__lead {
	margin-bottom: 22px;
	color: var(--rps-ink);
	font-size: clamp(19px, 2.1vw, 27px);
	font-weight: 600;
	line-height: 1.7;
}

.rps-dict-hero__text {
	max-width: 720px;
	margin-bottom: 34px;
	font-size: 16px;
	line-height: 2;
}

.rps-dict-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.rps-dict-button {
	display: inline-flex;
	min-height: 56px;
	padding: 14px 28px;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--rps-green);
	border-radius: 3px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .05em;
	text-decoration: none !important;
	transition: transform .2s ease, background .2s ease, color .2s ease;
}

.rps-dict-button:hover {
	transform: translateY(-2px);
}

.rps-dict-button--primary {
	color: #fff !important;
	background: var(--rps-green);
}

.rps-dict-button--primary:hover {
	background: var(--rps-green-dark);
}

.rps-dict-button--secondary {
	color: var(--rps-green) !important;
	background: transparent;
}

.rps-dict-button--secondary:hover {
	color: #fff !important;
	background: var(--rps-green);
}

.rps-dict-hero__panel {
	padding: clamp(30px, 4vw, 48px);
	color: #fff;
	background: var(--rps-ink);
	box-shadow: 22px 22px 0 rgba(181,139,85,.16);
}

.rps-dict-hero__panel-label {
	margin-bottom: 14px;
	color: #d9bd94;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .2em;
}

.rps-dict-hero__panel h2 {
	margin-bottom: 28px;
	color: #fff;
	font-size: clamp(25px, 2.5vw, 34px);
	line-height: 1.5;
}

.rps-dict-hero__panel ul {
	padding: 0;
	margin: 0 0 26px;
	list-style: none;
}

.rps-dict-hero__panel li {
	display: flex;
	padding: 13px 0;
	align-items: center;
	gap: 13px;
	border-bottom: 1px solid rgba(255,255,255,.14);
	font-size: 14px;
}

.rps-dict-hero__panel li span {
	color: #d9bd94;
	font-size: 11px;
	font-weight: 700;
}

.rps-dict-hero__panel > a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.rps-dict-hero__panel > a span {
	margin-left: 8px;
	color: #d9bd94;
}

.rps-dict-section {
	padding: clamp(74px, 9vw, 120px) 0;
}

.rps-dict-section--tint {
	background: var(--rps-tint);
}

.rps-dict-heading {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(300px, .7fr);
	gap: 50px;
	margin-bottom: 48px;
	align-items: end;
}

.rps-dict-heading h2 {
	margin: 0;
	font-size: clamp(32px, 4vw, 52px);
	line-height: 1.3;
}

.rps-dict-heading > p {
	margin: 0;
	color: var(--rps-muted);
	font-size: 15px;
	line-height: 1.9;
}

.rps-dict-topic-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-top: 1px solid var(--rps-line);
	border-left: 1px solid var(--rps-line);
}

.rps-dict-topic {
	position: relative;
	min-height: 270px;
	padding: 30px 26px;
	color: inherit !important;
	background: #fff;
	border-right: 1px solid var(--rps-line);
	border-bottom: 1px solid var(--rps-line);
	text-decoration: none !important;
	transition: background .2s ease, transform .2s ease;
}

.rps-dict-topic:hover {
	z-index: 1;
	background: var(--rps-ivory);
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(23,49,44,.08);
}

.rps-dict-topic__number {
	display: block;
	margin-bottom: 30px;
	color: var(--rps-accent);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .15em;
}

.rps-dict-topic h3 {
	margin-bottom: 12px;
	font-size: 20px;
	line-height: 1.45;
}

.rps-dict-topic p {
	margin-bottom: 24px;
	color: var(--rps-muted);
	font-size: 13px;
	line-height: 1.75;
}

.rps-dict-topic__arrow {
	position: absolute;
	right: 26px;
	bottom: 25px;
	color: var(--rps-green);
	font-size: 13px;
	font-weight: 700;
}

.rps-dict-bridge {
	padding: 62px 0;
	color: #fff;
	background: var(--rps-ink);
}

.rps-dict-bridge__inner {
	display: grid;
	grid-template-columns: 1.25fr .75fr;
	gap: 70px;
	align-items: center;
}

.rps-dict-bridge h2 {
	margin-bottom: 18px;
	color: #fff;
	font-size: clamp(28px, 3.5vw, 44px);
	line-height: 1.45;
}

.rps-dict-bridge p:not(.rps-dict-kicker) {
	max-width: 720px;
	margin-bottom: 0;
	color: rgba(255,255,255,.78);
}

.rps-dict-bridge__actions {
	display: flex;
	flex-direction: column;
	gap: 17px;
	align-items: stretch;
}

.rps-dict-button--light {
	color: var(--rps-ink) !important;
	background: #fff;
	border-color: #fff;
}

.rps-dict-bridge__actions > a:not(.rps-dict-button) {
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.rps-dict-route-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.rps-dict-route {
	min-height: 270px;
	padding: clamp(28px, 4vw, 45px);
	background: #fff;
	border-top: 4px solid var(--rps-green);
}

.rps-dict-route__eyebrow {
	margin-bottom: 18px;
	color: var(--rps-accent);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .18em;
}

.rps-dict-route h3 {
	margin-bottom: 13px;
	font-size: 25px;
}

.rps-dict-route > p:not(.rps-dict-route__eyebrow) {
	max-width: 480px;
	margin-bottom: 28px;
	color: var(--rps-muted);
	font-size: 14px;
}

.rps-dict-route a {
	color: var(--rps-green);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.rps-dict-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 32px 22px;
}

.rps-dict-post {
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--rps-line);
	transition: transform .2s ease, box-shadow .2s ease;
}

.rps-dict-post:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(23,49,44,.09);
}

.rps-dict-post__image {
	display: flex;
	overflow: hidden;
	aspect-ratio: 16 / 10;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,.76) !important;
	background:
		linear-gradient(135deg, rgba(23,49,44,.93), rgba(54,95,80,.72));
	text-align: center;
	text-decoration: none !important;
}

.rps-dict-post__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .4s ease;
}

.rps-dict-post:hover .rps-dict-post__image img {
	transform: scale(1.035);
}

.rps-dict-post__image span {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .2em;
	line-height: 1.7;
}

.rps-dict-post__body {
	padding: 23px 23px 25px;
}

.rps-dict-post__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 13px;
	margin-bottom: 12px;
	color: var(--rps-muted);
	font-size: 11px;
}

.rps-dict-post__meta span {
	color: var(--rps-green);
	font-weight: 700;
}

.rps-dict-post h3 {
	margin-bottom: 12px;
	font-size: 18px;
	line-height: 1.6;
}

.rps-dict-post h3 a {
	color: var(--rps-ink);
	text-decoration: none;
}

.rps-dict-post__body > p {
	margin-bottom: 17px;
	color: var(--rps-muted);
	font-size: 13px;
	line-height: 1.75;
}

.rps-dict-post__more {
	color: var(--rps-green);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.rps-dict-why {
	padding: clamp(74px, 9vw, 115px) 0;
	background: var(--rps-ivory);
}

.rps-dict-why__grid {
	display: grid;
	grid-template-columns: .85fr 1.15fr;
	gap: clamp(50px, 8vw, 110px);
}

.rps-dict-why h2 {
	font-size: clamp(30px, 4vw, 49px);
	line-height: 1.5;
}

.rps-dict-why__grid > div:last-child {
	padding-top: 35px;
	border-top: 1px solid var(--rps-accent);
}

.rps-dict-why__grid > div:last-child p {
	margin-bottom: 19px;
	font-size: 15px;
	line-height: 2;
}

.rps-dict-why a {
	color: var(--rps-green);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.rps-dict-final {
	padding: clamp(80px, 10vw, 130px) 0;
	text-align: center;
	background: #fff;
}

.rps-dict-final__inner {
	max-width: 900px;
}

.rps-dict-final h2 {
	margin-bottom: 20px;
	font-size: clamp(34px, 5vw, 59px);
	line-height: 1.4;
}

.rps-dict-final__inner > p:not(.rps-dict-kicker) {
	margin: 0 auto 34px;
	color: var(--rps-muted);
	font-size: 16px;
	line-height: 2;
}

.rps-dict-actions--center {
	justify-content: center;
}

.rps-dict-final__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 28px;
	margin-top: 34px;
	justify-content: center;
}

.rps-dict-final__links a {
	color: var(--rps-green);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.rps-dict-mobile-cta {
	display: none;
}

@media (max-width: 960px) {
	.rps-dict-hero__grid,
	.rps-dict-heading,
	.rps-dict-bridge__inner,
	.rps-dict-why__grid {
		grid-template-columns: 1fr;
	}

	.rps-dict-hero {
		background: var(--rps-ivory);
	}

	.rps-dict-hero__panel {
		max-width: 650px;
	}

	.rps-dict-heading {
		gap: 20px;
	}

	.rps-dict-topic-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rps-dict-post-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rps-dict-bridge__inner {
		gap: 35px;
	}

	.rps-dict-why__grid {
		gap: 25px;
	}

	.rps-dict-why__grid > div:last-child {
		padding-top: 28px;
	}
}

@media (max-width: 600px) {
	.rps-media-home {
		padding-bottom: 65px;
	}

	.rps-dict-shell {
		width: min(100% - 32px, 1180px);
	}

	.rps-dict-hero {
		padding: 55px 0 64px;
	}

	.rps-dict-hero__grid {
		gap: 38px;
	}

	.rps-dict-hero h1 {
		margin-bottom: 20px;
		font-size: clamp(40px, 13vw, 58px);
		line-height: 1.2;
	}

	.rps-dict-hero__lead {
		font-size: 18px;
	}

	.rps-dict-hero__lead br {
		display: none;
	}

	.rps-dict-hero__text {
		font-size: 14px;
		line-height: 1.9;
	}

	.rps-dict-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.rps-dict-button {
		width: 100%;
		min-height: 54px;
	}

	.rps-dict-hero__panel {
		padding: 29px 24px;
		box-shadow: 12px 12px 0 rgba(181,139,85,.16);
	}

	.rps-dict-hero__panel h2 {
		font-size: 25px;
	}

	.rps-dict-section {
		padding: 68px 0;
	}

	.rps-dict-heading {
		margin-bottom: 32px;
	}

	.rps-dict-heading h2 {
		font-size: 32px;
	}

	.rps-dict-heading > p {
		font-size: 14px;
	}

	.rps-dict-topic-grid,
	.rps-dict-route-grid,
	.rps-dict-post-grid {
		grid-template-columns: 1fr;
	}

	.rps-dict-topic {
		min-height: 225px;
	}

	.rps-dict-bridge {
		padding: 52px 0;
	}

	.rps-dict-bridge h2 {
		font-size: 29px;
	}

	.rps-dict-bridge h2 br {
		display: none;
	}

	.rps-dict-route {
		min-height: 0;
	}

	.rps-dict-post-grid {
		gap: 18px;
	}

	.rps-dict-why {
		padding: 68px 0;
	}

	.rps-dict-why h2 {
		font-size: 30px;
	}

	.rps-dict-final {
		padding: 72px 0;
	}

	.rps-dict-final h2 {
		font-size: 33px;
	}

	.rps-dict-final__links {
		flex-direction: column;
		gap: 13px;
	}

	.rps-dict-mobile-cta {
		position: fixed;
		z-index: 99999;
		right: 0;
		bottom: 0;
		left: 0;
		display: grid;
		grid-template-columns: .8fr 1.2fr;
		padding: 7px;
		gap: 7px;
		background: rgba(255,255,255,.97);
		border-top: 1px solid var(--rps-line);
		box-shadow: 0 -5px 20px rgba(23,49,44,.1);
	}

	.rps-dict-mobile-cta a {
		display: flex;
		min-height: 48px;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--rps-green);
		border-radius: 3px;
		color: var(--rps-green);
		font-size: 13px;
		font-weight: 700;
		text-decoration: none;
	}

	.rps-dict-mobile-cta a:last-child {
		color: #fff;
		background: var(--rps-green);
	}
}
