/*
 * rino_1 (template 38) — cloned from one of our own UA casino properties
 * (Rino Casino). Near-black #080b11 surface, 61px gradient header, Ubuntu type
 * and a single emerald accent (#26E176) carrying every CTA, title and link.
 *
 * Geometry follows the source: 136x190 game tiles on an 8px column-major grid,
 * 1200px content rail, 28px section titles.
 */

:root {
	--rn-green: #26e176;
	--rn-green-2: #31ea77;
	--rn-pink: #ff2f6a;
	--rn-gold: #ffc93a;

	--rn-ink: #080b11;
	--rn-ink-2: #110808;
	--rn-panel: #0f141c;
	--rn-chip-1: #1d2620;
	--rn-chip-2: #2f3d34;

	--rn-text: #f5f5f5;
	--rn-mute: rgba(245, 245, 245, .62);
	--rn-line: rgba(255, 255, 255, .08);

	--rn-wrap: 1200px;
	--rn-hdr: 61px;
	--rn-tile: 136px;
	--rn-tile-h: 190px;
}

/* Reserve the scrollbar gutter so locking scroll for the drawer never nudges
   the layout sideways. */
html {
	scrollbar-gutter: stable;
}

html.rn-lock {
	overflow: hidden;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding-top: var(--rn-hdr);
	background: var(--rn-ink);
	color: var(--rn-text);
	font-family: Ubuntu, 'Segoe UI', system-ui, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
}

.rn-wrap {
	width: 100%;
	max-width: var(--rn-wrap);
	margin: 0 auto;
	padding: 0 12px;
}

/* ---------------------------------------------------------------- buttons */

.rn-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 36px;
	padding: 0 24px;
	border: 1px solid var(--rn-green-2);
	border-radius: 8px;
	background: var(--rn-green);
	color: var(--rn-ink);
	font: 500 16px/1 Ubuntu, sans-serif;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	transition: background .18s, border-color .18s, color .18s;
}

.rn-btn:hover {
	background: var(--rn-green-2);
	border-color: var(--rn-green-2);
}

.rn-btn--ghost {
	background: transparent;
	border-color: rgba(255, 255, 255, .22);
	color: var(--rn-text);
}

.rn-btn--ghost:hover {
	background: rgba(255, 255, 255, .06);
	border-color: var(--rn-green);
	color: var(--rn-green);
}

.rn-btn--full {
	width: 100%;
}

.rn-btn--lg {
	height: 44px;
	padding: 0 32px;
	font-size: 17px;
}

/* ----------------------------------------------------------------- header */

.rn-hdr {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 60;
	height: var(--rn-hdr);
	background: linear-gradient(88.91deg, var(--rn-ink-2) 17.99%, var(--rn-ink) 99.06%);
	border-bottom: 1px solid rgba(38, 225, 118, .38);
	box-shadow: 0 6px 24px rgba(0, 0, 0, .45);
}

.rn-hdr__in {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	max-width: var(--rn-wrap);
	height: 100%;
	margin: 0 auto;
	padding: 0 12px;
}

/* Emerald bloom behind the burger, exactly like the source header light. */
.rn-hdr__glow {
	position: absolute;
	left: 18px;
	top: 14px;
	width: 130px;
	height: 33px;
	background: linear-gradient(90deg, rgba(38, 225, 118, .65) 0%, rgba(38, 225, 118, 0) 100%);
	filter: blur(20px);
	pointer-events: none;
}

.rn-burger {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 0 8px;
	border: 0;
	background: none;
	cursor: pointer;
}

.rn-burger span {
	display: block;
	height: 2px;
	border-radius: 2px;
	background: var(--rn-text);
	transition: background .18s;
}

.rn-burger:hover span {
	background: var(--rn-green);
}

.rn-hdr__nav {
	display: flex;
	align-items: center;
}

.rn-hdr__navitem {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	/* 10px, not 16px — the rail carries six items now (four offer links plus
	   the two on-site pages) and the 1200px header wrap leaves no room for
	   wider gutters before the absolutely centred logo. */
	padding: 0 10px;
	color: #fff;
	text-decoration: none;
	transition: color .18s;
}

.rn-hdr__navitem img {
	width: 32px;
	height: 32px;
}

.rn-hdr__navitem span {
	font-size: 12px;
	line-height: 12px;
	white-space: nowrap;
}

.rn-hdr__navitem:hover {
	color: var(--rn-green);
}

.rn-hdr__logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: block;
	line-height: 0;
}

.rn-hdr__logo img {
	width: auto;
	height: 42px;
}

.rn-hdr__auth {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-left: auto;
}

/* ----------------------------------------------------------------- drawer */

.rn-dim {
	position: fixed;
	inset: 0;
	z-index: 70;
	background: rgba(3, 6, 10, .68);
	opacity: 0;
	visibility: hidden;
	transition: opacity .22s, visibility .22s;
}

.rn-dim.is-on {
	opacity: 1;
	visibility: visible;
}

.rn-drawer {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	z-index: 80;
	width: 320px;
	max-width: 86vw;
	display: flex;
	flex-direction: column;
	background: linear-gradient(180deg, #101821 0%, #0a0e15 100%);
	border-right: 1px solid rgba(38, 225, 118, .22);
	box-shadow: 24px 0 60px rgba(0, 0, 0, .5);
	transform: translateX(-102%);
	transition: transform .26s ease;
	overflow-y: auto;
}

.rn-drawer.is-on {
	transform: none;
}

.rn-drawer__head {
	position: sticky;
	top: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: var(--rn-hdr);
	padding: 0 16px;
	background: linear-gradient(88.91deg, var(--rn-ink-2) 17.99%, var(--rn-ink) 99.06%);
	border-bottom: 1px solid rgba(38, 225, 118, .38);
}

.rn-drawer__ttl {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .4px;
	color: var(--rn-text);
}

.rn-drawer__x {
	width: 32px;
	height: 32px;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, .06);
	color: var(--rn-text);
	font-size: 22px;
	line-height: 1;
	cursor: pointer;
	transition: background .18s, color .18s;
}

.rn-drawer__x:hover {
	background: rgba(38, 225, 118, .16);
	color: var(--rn-green);
}

.rn-drawer__promo {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin: 16px;
	padding: 16px;
	border: 1px solid rgba(38, 225, 118, .32);
	border-radius: 12px;
	background:
		radial-gradient(120% 140% at 0% 0%, rgba(38, 225, 118, .16), transparent 62%),
		var(--rn-panel);
}

.rn-drawer__promo-tag {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .6px;
	text-transform: uppercase;
	color: var(--rn-green);
}

.rn-drawer__promo-sum {
	margin-bottom: 4px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--rn-text);
}

.rn-drawer__nav ul {
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.rn-drawer__nav a {
	display: block;
	padding: 12px 16px;
	border-left: 2px solid transparent;
	color: var(--rn-text);
	font-size: 16px;
	font-weight: 300;
	text-decoration: none;
	transition: padding-left .18s, color .18s, border-color .18s, background .18s;
}

.rn-drawer__nav a:hover {
	padding-left: 24px;
	border-left-color: var(--rn-green);
	background: rgba(38, 225, 118, .07);
	color: var(--rn-green);
}

/* ------------------------------------------------------------------- hero */

.rn-hero {
	line-height: 0;
}

.rn-hero img {
	display: block;
	width: 100%;
	height: auto;
}

/* -------------------------------------------------------------- providers */

.rn-provs {
	display: flex;
	gap: 8px;
	margin: 16px 0 0;
	padding-bottom: 4px;
	overflow-x: auto;
	scrollbar-width: none;
}

.rn-provs::-webkit-scrollbar {
	display: none;
}

.rn-prov {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 170px;
	height: 68px;
	padding: 8px 12px;
	border-radius: 8px;
	text-decoration: none;
	transition: background .18s;
}

.rn-prov:hover {
	background: rgba(255, 255, 255, .05);
}

.rn-prov img {
	max-width: 100%;
	max-height: 46px;
	object-fit: contain;
}

.rn-prov__lbl {
	position: absolute;
	top: 2px;
	right: 12px;
	padding: 1px 8px;
	border-radius: 1px 8px;
	background: var(--rn-pink);
	color: #fff;
	font-size: 11px;
	line-height: 15px;
	font-weight: 500;
}

/* ------------------------------------------------------------- chips rail */

.rn-chips {
	display: flex;
	gap: 8px;
	margin: 12px 0 4px;
	padding-bottom: 4px;
	overflow-x: auto;
	scrollbar-width: none;
}

.rn-chips::-webkit-scrollbar {
	display: none;
}

/* Chips share the row evenly so the strip always spans its full width; below
   the point where 98px each no longer fits they stop shrinking and scroll. */
.rn-chip {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	min-width: 98px;
	height: 44px;
	padding: 4px 10px;
	border: 1px solid transparent;
	border-radius: 8px;
	background: linear-gradient(90deg, var(--rn-chip-1), var(--rn-chip-2));
	color: var(--rn-text);
	text-decoration: none;
	transition: border-color .18s, color .18s;
}

.rn-chip img {
	width: 22px;
	height: 22px;
}

.rn-chip span {
	font-size: 11px;
	line-height: 12px;
	white-space: nowrap;
}

.rn-chip:hover,
.rn-chip.is-on {
	border-color: rgba(38, 225, 118, .55);
	color: var(--rn-green);
}

/* ---------------------------------------------------------- section heads */

.rn-shead {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 24px 0 12px;
}

.rn-shead__ico {
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.rn-shead__ttl {
	font-size: 28px;
	font-weight: 500;
	letter-spacing: -.56px;
	line-height: 36px;
	color: var(--rn-text);
}

.rn-shead__act {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
}

.rn-shead__all {
	padding: 2px 8px;
	color: var(--rn-green);
	font-size: 16px;
	text-decoration: none;
}

.rn-shead__all:hover {
	text-decoration: underline;
}

.rn-arr {
	width: 32px;
	height: 32px;
	border: 1px solid var(--rn-line);
	border-radius: 8px;
	background: var(--rn-panel);
	color: var(--rn-text);
	font-size: 15px;
	line-height: 1;
	cursor: pointer;
	transition: background .18s, color .18s, border-color .18s;
}

.rn-arr:hover {
	border-color: rgba(38, 225, 118, .5);
	background: rgba(38, 225, 118, .12);
	color: var(--rn-green);
}

/* -------------------------------------------------------------- game rail */

.rn-rail {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: var(--rn-tile);
	grid-template-rows: var(--rn-tile-h);
	gap: 8px;
	padding-bottom: 6px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.rn-rail--two {
	grid-template-rows: var(--rn-tile-h) var(--rn-tile-h);
}

.rn-rail::-webkit-scrollbar {
	display: none;
}

.rn-gc {
	position: relative;
	display: block;
	border-radius: 6px;
	overflow: hidden;
	background: var(--rn-panel);
	text-decoration: none;
	transition: transform .18s, box-shadow .18s;
}

.rn-gc img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.rn-gc:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .5), 0 0 0 1px rgba(38, 225, 118, .45);
}

.rn-gc__lbl {
	position: absolute;
	top: 6px;
	left: 6px;
	padding: 1px 8px;
	border-radius: 1px 8px;
	background: var(--rn-pink);
	color: #fff;
	font-size: 11px;
	line-height: 15px;
	font-weight: 500;
}

.rn-gc__lbl--top {
	background: var(--rn-green);
	color: var(--rn-ink);
}

/* ----------------------------------------------------------- winners line */

.rn-wins {
	display: flex;
	gap: 8px;
	padding-bottom: 6px;
	overflow-x: auto;
	scrollbar-width: none;
}

.rn-wins::-webkit-scrollbar {
	display: none;
}

.rn-win {
	display: flex;
	flex: 1 1 0;
	align-items: center;
	gap: 12px;
	min-width: 208px;
	padding: 8px;
	border: 1px solid var(--rn-line);
	border-radius: 10px;
	background: var(--rn-panel);
	text-decoration: none;
	transition: border-color .18s;
}

.rn-win:hover {
	border-color: rgba(38, 225, 118, .45);
}

.rn-win img {
	width: 64px;
	height: 64px;
	border-radius: 6px;
	object-fit: cover;
}

.rn-win__meta {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

.rn-win__id {
	font-size: 12px;
	color: var(--rn-mute);
}

.rn-win__name {
	overflow: hidden;
	color: var(--rn-text);
	font-size: 15px;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.rn-win__sum {
	color: var(--rn-green);
	font-size: 16px;
	font-weight: 700;
}

/* --------------------------------------------------------- page head/copy */

.rn-phead {
	margin: 40px 0 0;
}

.rn-phead h1 {
	margin: 0;
	color: var(--rn-green);
	font-size: 29px;
	font-weight: 700;
	line-height: 1.25;
}

.rn-content {
	margin: 0 0 56px;
	padding: 8px 0 0;
	color: var(--rn-text);
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
}

.rn-content h1 {
	margin: 24px 0 12px;
	color: var(--rn-green);
	font-size: 29px;
	font-weight: 700;
	line-height: 1.25;
}

.rn-content h2 {
	margin: 28px 0 12px;
	color: var(--rn-green);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.3;
}

.rn-content h3 {
	margin: 24px 0 10px;
	color: var(--rn-text);
	font-size: 19px;
	font-weight: 700;
}

.rn-content h4 {
	margin: 20px 0 8px;
	color: var(--rn-text);
	font-size: 17px;
	font-weight: 500;
}

.rn-content p {
	margin: 0 0 16px;
}

.rn-content ul,
.rn-content ol {
	margin: 0 0 16px;
	padding-left: 22px;
}

.rn-content li {
	margin-bottom: 6px;
}

.rn-content li::marker {
	color: var(--rn-green);
}

.rn-content a {
	color: var(--rn-green);
	text-decoration: underline;
}

.rn-content a:hover {
	color: var(--rn-green-2);
}

.rn-content a.rn-btn {
	color: var(--rn-ink);
	text-decoration: none;
}

.rn-content a.rn-btn--ghost {
	color: var(--rn-text);
}

.rn-content strong,
.rn-content b {
	font-weight: 700;
}

/* Body imagery: never wider than 812px, centred, and shrinking with the
   layout on narrow screens. */
.rn-content img {
	display: block;
	width: auto;
	max-width: min(100%, 812px);
	height: auto;
	margin: 24px auto;
	border-radius: 10px;
}

.rn-content figure {
	margin: 24px 0;
}

.rn-content figcaption {
	margin-top: 8px;
	color: var(--rn-mute);
	font-size: 14px;
	text-align: center;
}

.rn-content blockquote {
	margin: 24px 0;
	padding: 14px 18px;
	border-left: 3px solid var(--rn-green);
	border-radius: 0 10px 10px 0;
	background: rgba(255, 255, 255, .05);
	color: var(--rn-text);
}

.rn-content blockquote p:last-child {
	margin-bottom: 0;
}

.rn-tscroll {
	margin: 24px 0;
	overflow-x: auto;
}

.rn-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 15px;
}

.rn-content th,
.rn-content td {
	padding: 10px 14px;
	border: 1px solid rgba(255, 255, 255, .14);
	text-align: left;
}

.rn-content th {
	background: rgba(38, 225, 118, .12);
	color: var(--rn-text);
	font-weight: 500;
}

.rn-content tbody tr:nth-child(even) td {
	background: rgba(255, 255, 255, .03);
}

/* ---------------------------------------------------------- toplist cards */

.rn-tlhead {
	margin: 32px 0 8px;
}

.rn-tlhead h1 {
	margin: 0 0 8px;
	color: var(--rn-green);
	font-size: 29px;
	font-weight: 700;
	line-height: 1.25;
}

.rn-tlhead p {
	margin: 0;
	max-width: 820px;
	color: var(--rn-mute);
	font-size: 16px;
	font-weight: 300;
}

.rn-promo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin: 24px 0 0;
	padding: 18px 24px;
	border: 1px solid rgba(38, 225, 118, .28);
	border-radius: 14px;
	background:
		radial-gradient(140% 180% at 0% 0%, rgba(38, 225, 118, .14), transparent 60%),
		var(--rn-panel);
	flex-wrap: wrap;
}

.rn-promo__txt {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rn-promo__tag {
	color: var(--rn-green);
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .6px;
	text-transform: uppercase;
}

.rn-promo__sum {
	font-size: 20px;
	font-weight: 700;
}

/* ------------------------------------------------------------ review head */

.rn-rv {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: 24px;
	margin: 32px 0 0;
}

.rn-rv h1 {
	margin: 0 0 10px;
	color: var(--rn-green);
	font-size: 29px;
	font-weight: 700;
	line-height: 1.25;
}

.rn-rv__stars {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	color: var(--rn-gold);
	font-size: 18px;
}

.rn-rv__stars b {
	color: var(--rn-text);
	font-size: 16px;
}

.rn-rv__votes {
	color: var(--rn-mute);
	font-size: 12px;
}

.rn-lead {
	max-width: 720px;
	margin: 0 0 18px;
	color: var(--rn-mute);
	font-size: 16px;
	font-weight: 300;
}

.rn-rv__cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

.rn-rv__facts {
	padding: 18px 20px;
	border: 1px solid var(--rn-line);
	border-radius: 14px;
	background: var(--rn-panel);
}

.rn-rv__facts dl {
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 8px 16px;
	margin: 0;
	font-size: 15px;
}

.rn-rv__facts dt {
	color: var(--rn-mute);
	font-weight: 300;
}

.rn-rv__facts dd {
	margin: 0;
	color: var(--rn-text);
	text-align: right;
}

/* --------------------------------------------------------- landing header */

.rn-lhero {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
	margin: 32px 0 8px;
	padding: 40px 24px;
	border: 1px solid rgba(38, 225, 118, .26);
	border-radius: 18px;
	background:
		radial-gradient(120% 160% at 50% 0%, rgba(38, 225, 118, .18), transparent 62%),
		var(--rn-panel);
	text-align: center;
}

.rn-lhero__ttl {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.2;
	color: var(--rn-text);
}

.rn-lhero__sub {
	max-width: 720px;
	color: var(--rn-mute);
	font-size: 17px;
	font-weight: 300;
}

.rn-lcta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin: 0 0 56px;
	padding: 32px 24px;
	border-radius: 16px;
	background: linear-gradient(90deg, rgba(38, 225, 118, .16), rgba(38, 225, 118, .04));
	text-align: center;
}

.rn-lcta__ttl {
	font-size: 22px;
	font-weight: 700;
}

/* ----------------------------------------------------------------- footer */

.rn-foot {
	margin-top: 24px;
	padding: 32px 0 40px;
	background: linear-gradient(88.91deg, var(--rn-ink-2) 17.99%, var(--rn-ink) 99.06%);
	border-top: 1px solid var(--rn-line);
	color: var(--rn-text);
	font-weight: 300;
}

.rn-foot__in {
	display: grid;
	grid-template-columns: 266px 1fr 1fr 355px;
	gap: 24px;
	width: 100%;
	max-width: var(--rn-wrap);
	margin: 0 auto;
	padding: 0 12px;
}

.rn-foot__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}

.rn-foot__brand img {
	width: auto;
	max-width: 190px;
	height: 54px;
	object-fit: contain;
	object-position: left center;
}

.rn-foot__age {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, .28);
	border-radius: 50%;
	font-size: 14px;
	font-weight: 500;
}

.rn-foot__col {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.rn-foot__col a {
	color: var(--rn-text);
	font-size: 16px;
	text-decoration: none;
	transition: color .18s;
}

.rn-foot__col a:hover {
	color: var(--rn-green);
}

.rn-foot__side {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rn-foot__bot {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 14px 16px;
	border-radius: 10px;
	background: linear-gradient(90deg, #0f5a31 0%, #17784a 100%);
	color: #fff;
	text-decoration: none;
	transition: filter .18s;
}

.rn-foot__bot:hover {
	filter: brightness(1.12);
}

.rn-foot__bot img {
	width: 56px;
	height: auto;
}

.rn-foot__bot-txt {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.35;
}

.rn-foot__bot-txt b {
	font-weight: 700;
}

.rn-foot__bot-arrow {
	margin-left: auto;
	font-size: 18px;
}

.rn-foot__copy {
	color: var(--rn-mute);
	font-size: 15px;
	line-height: 1.5;
}

.rn-foot__legal {
	width: 100%;
	max-width: var(--rn-wrap);
	margin: 28px auto 0;
	padding: 20px 12px 0;
	border-top: 1px solid var(--rn-line);
	color: rgba(245, 245, 245, .5);
	font-size: 13px;
	line-height: 1.6;
}

.rn-foot__legal p {
	margin: 0 0 10px;
}

/* ------------------------------------------------------------ breakpoints */

@media (max-width: 1100px) {
	.rn-hdr__nav {
		display: none;
	}

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

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

@media (max-width: 760px) {
	.rn-hdr__logo img {
		height: 34px;
	}

	.rn-hdr__auth .rn-btn--ghost {
		display: none;
	}

	.rn-btn {
		height: 34px;
		padding: 0 16px;
		font-size: 15px;
	}

	.rn-shead__ttl {
		font-size: 22px;
		line-height: 30px;
	}

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

	.rn-phead h1,
	.rn-content h1,
	.rn-tlhead h1,
	.rn-rv h1 {
		font-size: 24px;
	}

	.rn-lhero__ttl {
		font-size: 26px;
	}
}
