@font-face {
	font-family: Inter;
	src: local("Inter"), local("Arial");
	font-display: swap;
}

:root {
	--rp-accent: #00566e;
	--rp-accent-2: #81d1f2;
	--rp-ink: #101c29;
	--rp-muted: #555e74;
	--rp-bg: #f8f9ff;
	--rp-soft: #eef4ff;
	--rp-line: #e1e6ee;
	--rp-card: #ffffff;
	--rp-shadow: 0 8px 22px rgba(16, 28, 41, 0.08);
	--rp-radius: 8px;
	--rp-navy: #26313f;
}

body.rp-dark {
	--rp-ink: #f8fafc;
	--rp-muted: #adb7c5;
	--rp-bg: #090d14;
	--rp-soft: #111827;
	--rp-line: #263142;
	--rp-card: #111827;
	--rp-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	background: var(--rp-bg);
	color: var(--rp-ink);
	font-family: Inter, Arial, sans-serif;
	line-height: 1.55;
}

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

a:hover {
	color: var(--rp-accent);
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
textarea {
	font: inherit;
}

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

.rp-wrap {
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.rp-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--rp-card);
	box-shadow: 0 2px 12px rgba(16, 28, 41, 0.08);
}

.rp-header-branding {
	background: var(--rp-navy);
}

.rp-header-branding__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 92px;
}

.rp-brand {
	flex: 0 0 auto;
	font-size: clamp(1.45rem, 3.2vw, 2.25rem);
	font-weight: 900;
	line-height: 1;
	text-transform: uppercase;
}

.rp-brand a {
	color: #fff;
}

.rp-brand a::first-letter {
	color: var(--rp-accent);
}

.custom-logo {
	max-height: 60px;
	width: auto;
}

.rp-header-ad {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex: 1 1 auto;
	min-height: 72px;
}

.rp-header-ad .rp-ad {
	width: min(728px, 100%);
	min-height: 72px;
	margin: 0;
	background: rgba(255, 255, 255, 0.06);
	border-color: rgba(255, 255, 255, 0.14);
	color: #d7e4f5;
}

.rp-menu-bar {
	background: var(--rp-accent);
}

.rp-header-main {
	display: flex;
	align-items: center;
	gap: 16px;
	min-height: 48px;
}

.rp-nav {
	flex: 1 1 auto;
}

.rp-nav ul {
	display: flex;
	align-items: center;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rp-nav a {
	display: block;
	padding: 0 14px;
	border-radius: 0;
	background: transparent;
	color: #fff;
	font-size: 0.92rem;
	line-height: 48px;
	font-weight: 800;
	text-transform: uppercase;
}

.rp-nav a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
}

.rp-header-actions {
	display: flex;
	gap: 8px;
	margin-left: 0;
}

.rp-icon-btn {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: #fff;
	cursor: pointer;
}

.rp-search-glyph,
.rp-dark-glyph {
	position: relative;
	display: block;
	width: 18px;
	height: 18px;
}

.rp-search-glyph::before {
	content: "";
	position: absolute;
	inset: 1px 5px 5px 1px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.rp-search-glyph::after {
	content: "";
	position: absolute;
	right: 1px;
	bottom: 1px;
	width: 8px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: center;
}

.rp-dark-glyph {
	border: 2px solid currentColor;
	border-radius: 50%;
	background: linear-gradient(90deg, currentColor 0 50%, transparent 50%);
}

.rp-menu-toggle {
	display: none;
	gap: 4px;
}

.rp-menu-toggle span:not(.screen-reader-text) {
	width: 18px;
	height: 2px;
	background: currentColor;
}

.rp-search-panel {
	padding: 16px 0;
	border-top: 1px solid var(--rp-line);
	background: var(--rp-bg);
}

.rp-ticker {
	overflow: hidden;
	background: var(--rp-accent);
	color: #fff;
}

.rp-ticker__track {
	display: inline-flex;
	gap: 28px;
	min-width: 100%;
	padding: 8px 0 8px 100%;
	white-space: nowrap;
	animation: rp-ticker 36s linear infinite;
}

.rp-ticker__track::before {
	content: "AGORA:";
	font-weight: 900;
}

.rp-ticker a {
	color: #fff;
	font-size: 0.84rem;
	font-weight: 800;
}

@keyframes rp-ticker {
	to {
		transform: translateX(-100%);
	}
}

.rp-home-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin: 28px 0 14px;
	padding: 0 0 0 14px;
	border-left: 4px solid var(--rp-accent);
	border-bottom: 0;
}

.rp-home-label span {
	color: var(--rp-navy);
	font-size: clamp(1.2rem, 2.4vw, 1.65rem);
	font-weight: 900;
	text-transform: uppercase;
}

.rp-home-label a {
	color: var(--rp-accent);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rp-search-panel form,
.rp-search-form,
.rp-newsletter form,
.rp-newsletter-band form {
	display: flex;
	gap: 8px;
}

.rp-search-panel input,
.rp-search-form input,
.rp-newsletter input,
.rp-newsletter-band input {
	flex: 1;
	min-width: 0;
	padding: 13px 14px;
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius);
	background: var(--rp-card);
	color: var(--rp-ink);
}

.rp-search-panel button,
.rp-search-form button,
.rp-newsletter button,
.rp-newsletter-band button,
.rp-reactions button {
	border: 0;
	border-radius: var(--rp-radius);
	background: var(--rp-accent);
	color: #fff;
	font-weight: 900;
	padding: 12px 16px;
	cursor: pointer;
}

.rp-search-results {
	display: grid;
	gap: 8px;
	margin-top: 12px;
}

.rp-search-results a {
	display: grid;
	grid-template-columns: 58px 1fr;
	gap: 10px;
	align-items: center;
	padding: 8px;
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius);
}

.rp-search-results img {
	width: 58px;
	height: 44px;
	object-fit: cover;
	border-radius: 6px;
}

.rp-main {
	min-height: 62vh;
}

.rp-ad {
	display: grid;
	place-items: center;
	min-height: 90px;
	margin: 18px 0;
	border: 1px dashed var(--rp-line);
	border-radius: var(--rp-radius);
	background: var(--rp-soft);
	color: var(--rp-muted);
}

.rp-hero {
	display: grid;
	gap: 20px;
	padding: 18px 0 22px;
}

.rp-home-news {
	display: grid;
	gap: 12px;
	max-width: 860px;
	padding: 0 0 28px;
}

.rp-hot-section {
	display: grid;
	grid-template-columns: minmax(0, 1.42fr) minmax(360px, 1fr);
	grid-template-rows: repeat(2, 180px);
	gap: 16px;
	margin: 30px 0;
}

.rp-hot-card {
	position: relative;
	overflow: hidden;
	border-radius: var(--rp-radius);
	background: var(--rp-navy);
}

.rp-hot-card--main {
	grid-row: span 2;
}

.rp-hot-card__media,
.rp-hot-card__image {
	display: block;
	width: 100%;
	height: 100%;
}

.rp-hot-card__image {
	object-fit: cover;
	transition: transform 0.35s ease, opacity 0.35s ease;
}

.rp-hot-card:hover .rp-hot-card__image {
	transform: scale(1.035);
	opacity: 0.92;
}

.rp-hot-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(16, 28, 41, 0.92));
	z-index: 2;
}

.rp-hot-card__content {
	position: absolute;
	inset: auto 0 0;
	z-index: 3;
	padding: 18px;
	color: #fff;
}

.rp-hot-card__content .rp-kicker {
	background: var(--rp-accent);
	color: #fff;
}

.rp-hot-card__content h2 {
	margin: 0;
	font-size: clamp(1.05rem, 2.2vw, 1.45rem);
	line-height: 1.16;
}

.rp-hot-card--main .rp-hot-card__content h2 {
	font-size: clamp(1.7rem, 4vw, 2.45rem);
	line-height: 1.05;
}

.rp-hot-card__content .rp-meta {
	color: #e9f1ff;
}

.rp-card,
.rp-widget,
.rp-newsletter-band,
.rp-comments,
.rp-author-box {
	border: 0;
	border-radius: 0;
	background: var(--rp-card);
	box-shadow: none;
}

.rp-hero-main {
	overflow: hidden;
	border: 0;
	box-shadow: none;
}

.rp-hero-main__media,
.rp-card__media,
.rp-video-card a:first-child {
	display: block;
	overflow: hidden;
	background: var(--rp-soft);
}

.rp-hero-main__image {
	width: 100%;
	aspect-ratio: 16 / 9.3;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.rp-hero-main:hover .rp-hero-main__image,
.rp-card:hover .rp-card__image,
.rp-video-card:hover img {
	transform: scale(1.035);
}

.rp-hero-main__body {
	padding: 16px 0 0;
}

.rp-hero-main h1,
.rp-single h1 {
	margin: 8px 0 10px;
	font-size: clamp(2rem, 5.1vw, 3.2rem);
	line-height: 1.04;
	letter-spacing: 0;
}

.rp-hero-main p,
.rp-lead {
	color: var(--rp-muted);
	font-size: 1.08rem;
}

.rp-hero-side,
.rp-section__grid,
.rp-list-grid,
.rp-video-grid {
	display: grid;
	gap: 16px;
}

.rp-card {
	overflow: hidden;
	background: var(--rp-card);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.rp-card:hover {
	transform: none;
	border-color: var(--rp-line);
}

.rp-card__image,
.rp-video-card__image,
.rp-mini-list__image {
	width: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.rp-card__image {
	aspect-ratio: 16 / 9;
}

.rp-card--spotlight {
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius);
	box-shadow: var(--rp-shadow);
}

.rp-card--spotlight .rp-card__media {
	border-radius: var(--rp-radius) var(--rp-radius) 0 0;
}

.rp-card--spotlight .rp-card__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.rp-card--spotlight .rp-card__body {
	padding: 14px;
}

.rp-card--spotlight .rp-card__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: clamp(1.14rem, 2.4vw, 1.45rem);
	line-height: 1.14;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.rp-card--spotlight .rp-card__excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.rp-card--lead {
	display: grid;
	gap: 16px;
	padding: 0 0 22px;
	border-bottom: 1px solid var(--rp-line);
}

.rp-card--lead .rp-card__media {
	border-radius: 6px;
}

.rp-card--lead .rp-card__image {
	width: 100%;
	max-height: 430px;
	aspect-ratio: 16 / 8.8;
	object-fit: cover;
}

.rp-card--lead .rp-card__body {
	padding: 0;
}

.rp-card--lead .rp-card__title {
	font-size: clamp(1.75rem, 4.3vw, 2.65rem);
	line-height: 1.05;
}

.rp-card--lead .rp-card__excerpt {
	font-size: 1.03rem;
}

.rp-card--compact,
.rp-card--list {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 18px;
	min-height: 170px;
	padding: 0 0 20px;
	border: 0;
	border-bottom: 1px solid var(--rp-line);
	border-radius: 0;
	box-shadow: none;
}

.rp-card--compact .rp-card__image,
.rp-card--list .rp-card__image {
	width: 250px;
	height: 160px;
	aspect-ratio: auto;
	border-radius: 6px;
}

.rp-card__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	padding: 0;
}

.rp-kicker {
	display: inline-flex;
	align-self: flex-start;
	margin-bottom: 8px;
	padding: 2px 7px;
	border-radius: 4px;
	background: var(--rp-soft);
	color: var(--rp-accent);
	font-size: 0.72rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rp-card__title {
	margin: 0;
	font-size: clamp(1.02rem, 2.2vw, 1.32rem);
	line-height: 1.18;
}

.rp-card--compact .rp-card__title,
.rp-card--list .rp-card__title {
	display: -webkit-box;
	overflow: hidden;
	font-size: clamp(1.08rem, 2vw, 1.35rem);
	line-height: 1.18;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.rp-card__excerpt {
	margin: 8px 0 0;
	color: var(--rp-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}

.rp-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-top: 10px;
	color: var(--rp-muted);
	font-size: 0.76rem;
}

.rp-meta span:not(:last-child)::after,
.rp-meta time::after {
	content: "";
	display: inline-block;
	width: 3px;
	height: 3px;
	margin-left: 8px;
	border-radius: 50%;
	background: currentColor;
	vertical-align: middle;
}

.rp-section {
	padding: 26px 0;
	border-top: 0;
}

.rp-section__grid .rp-card--compact {
	grid-template-columns: 150px minmax(0, 1fr);
	min-height: 108px;
	padding: 12px 0;
}

.rp-section__grid .rp-card--compact .rp-card__image {
	width: 150px;
	height: 92px;
}

.rp-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 3px solid var(--rp-navy);
}

.rp-section__head h2,
.rp-widget h2,
.rp-related h2,
.rp-comments h2 {
	margin: 0;
	font-size: clamp(1.28rem, 2.7vw, 1.82rem);
	line-height: 1.08;
	text-transform: uppercase;
}

.rp-section__head h2::before,
.rp-widget h2::before,
.rp-related h2::before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 1em;
	margin-right: 9px;
	border-radius: 3px;
	background: var(--rp-accent);
	vertical-align: -0.12em;
}

.rp-section__head a {
	color: var(--rp-accent);
	font-size: 0.82rem;
	font-weight: 900;
	text-transform: uppercase;
}

.rp-sidebar {
	display: grid;
	align-content: start;
	gap: 18px;
}

.rp-widget {
	padding: 16px;
	border-color: #dce3eb;
	box-shadow: none;
}

.rp-widget--ranked {
	border-top: 4px solid var(--rp-accent);
}

.rp-widget ol {
	margin: 14px 0 0;
	padding: 0;
	list-style: none;
	counter-reset: ranked;
}

.rp-widget li {
	display: grid;
	grid-template-columns: 34px 1fr;
	gap: 10px;
	padding: 12px 0;
	border-top: 1px solid var(--rp-line);
	counter-increment: ranked;
}

.rp-widget li::before {
	content: counter(ranked);
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: var(--rp-accent);
	color: #fff;
	font-weight: 900;
}

.rp-widget li span {
	grid-column: 2;
	color: var(--rp-muted);
	font-size: 0.78rem;
}

.rp-mini-list {
	display: grid;
	gap: 12px;
	margin-top: 14px;
}

.rp-mini-list article {
	display: grid;
	grid-template-columns: 82px 1fr;
	gap: 10px;
}

.rp-mini-list__image {
	width: 82px;
	height: 64px;
	border-radius: 6px;
}

.rp-mini-list h3 {
	margin: 0;
	font-size: 0.93rem;
	line-height: 1.15;
}

.rp-mini-list time {
	color: var(--rp-muted);
	font-size: 0.76rem;
}

.rp-videos {
	border-top: 0;
}

.rp-video-card {
	position: relative;
}

.rp-video-card a:first-child {
	position: relative;
	border-radius: var(--rp-radius);
}

.rp-video-card__image {
	aspect-ratio: 16 / 9;
}

.rp-play {
	position: absolute;
	left: 12px;
	bottom: 12px;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--rp-accent);
	color: #fff;
}

.rp-video-card h3 {
	margin: 10px 0 0;
	line-height: 1.16;
}

.rp-newsletter-band {
	display: grid;
	gap: 16px;
	margin: 24px 0 34px;
	padding: clamp(18px, 4vw, 32px);
	background:
		linear-gradient(135deg, rgba(0, 86, 110, 0.92), rgba(0, 86, 110, 0) 42%),
		linear-gradient(135deg, #101c29, #26313f);
	color: #fff;
}

.rp-newsletter-band span {
	color: #dceeff;
	font-weight: 900;
	text-transform: uppercase;
}

.rp-newsletter-band h2 {
	margin: 6px 0 0;
	font-size: clamp(1.5rem, 5vw, 2.7rem);
	line-height: 1.02;
}

.rp-breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 18px 0 8px;
	color: var(--rp-muted);
	font-size: 0.86rem;
}

.rp-page-head {
	padding: 20px 0;
}

.rp-page-head h1 {
	margin: 0;
	font-size: clamp(2rem, 6vw, 3.2rem);
	line-height: 1;
}

.rp-archive {
	padding-bottom: 34px;
}

.rp-single-wrap {
	width: min(980px, calc(100% - 32px));
	margin-inline: auto;
}

.rp-single__head {
	padding: 24px 0 14px;
}

.rp-single__figure {
	margin: 0 0 22px;
}

.rp-single__image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: var(--rp-radius);
}

.rp-single__figure figcaption {
	margin-top: 8px;
	color: var(--rp-muted);
	font-size: 0.82rem;
}

.rp-single-layout {
	display: grid;
	gap: 18px;
}

.rp-share {
	display: flex;
	gap: 8px;
}

.rp-share a {
	display: grid;
	place-items: center;
	width: 40px;
	height: 40px;
	border-radius: var(--rp-radius);
	background: var(--rp-soft);
	font-weight: 900;
}

.rp-content {
	font-size: 1.08rem;
}

.rp-content > * {
	margin-top: 0;
	margin-bottom: 1.15em;
}

.rp-content h2 {
	margin-top: 1.55em;
	font-size: clamp(1.45rem, 4vw, 2rem);
	line-height: 1.08;
}

.rp-content a {
	color: var(--rp-accent);
	font-weight: 800;
}

.rp-content img {
	border-radius: var(--rp-radius);
}

.rp-toc {
	padding: 16px;
	margin: 0 0 20px;
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius);
	background: var(--rp-soft);
}

.rp-toc ol {
	margin-bottom: 0;
}

.rp-reactions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	padding: 16px;
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius);
	background: var(--rp-soft);
}

.rp-author-box {
	display: flex;
	gap: 14px;
	align-items: center;
	margin: 26px 0;
	padding: 16px;
	box-shadow: none;
}

.rp-author-box img {
	border-radius: 50%;
}

.rp-author-box p {
	margin: 4px 0 0;
	color: var(--rp-muted);
}

.rp-related {
	padding: 20px 0;
}

.rp-comments {
	margin: 24px 0 34px;
	padding: 18px;
	box-shadow: none;
}

.rp-comments ol {
	padding-left: 20px;
}

.rp-comments textarea,
.rp-comments input:not([type="submit"]) {
	width: 100%;
	padding: 12px;
	border: 1px solid var(--rp-line);
	border-radius: var(--rp-radius);
	background: var(--rp-card);
	color: var(--rp-ink);
}

.rp-comments input[type="submit"] {
	border: 0;
	border-radius: var(--rp-radius);
	background: var(--rp-accent);
	color: #fff;
	font-weight: 900;
	padding: 12px 16px;
}

.rp-empty {
	padding: 48px 0;
}

.rp-image-placeholder {
	min-height: 120px;
	background:
		linear-gradient(135deg, rgba(0, 86, 110, 0.16), rgba(129, 209, 242, 0.22)),
		var(--rp-soft);
}

.rp-footer {
	margin-top: 30px;
	background: #172033;
	color: #eef2f7;
}

.rp-footer__grid {
	display: grid;
	gap: 24px;
	padding: 34px 0;
}

.rp-footer h2 {
	margin: 0 0 10px;
	font-size: 1.1rem;
}

.rp-footer p {
	color: #cbd5e1;
}

.rp-footer ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.rp-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	color: #cbd5e1;
	font-size: 0.84rem;
}

@media (min-width: 720px) {
	.rp-list-grid,
	.rp-video-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rp-section__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
	}

	.rp-newsletter-band,
	.rp-footer__grid {
		grid-template-columns: 1.3fr 1fr 1fr;
		align-items: center;
	}
}

@media (min-width: 900px) {
	.rp-rail-grid {
		display: grid;
		grid-template-columns: minmax(0, 1fr) 310px;
		gap: 28px;
		align-items: start;
	}

	.rp-sidebar {
		position: sticky;
		top: 92px;
	}

	.rp-list-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.rp-list-grid--four,
	.rp-video-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.rp-single-layout {
		grid-template-columns: 58px minmax(0, 1fr);
	}

	.rp-share {
		position: sticky;
		top: 96px;
		flex-direction: column;
		align-self: start;
	}
}

@media (max-width: 899px) {
	.rp-header-branding__inner {
		justify-content: center;
		min-height: 78px;
	}

	.rp-header-ad {
		display: none;
	}

	.rp-menu-toggle {
		display: grid;
	}

	.rp-nav {
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 70;
		display: none;
		width: min(86vw, 330px);
		padding: 18px;
		background: var(--rp-card);
		box-shadow: 18px 0 50px rgba(16, 28, 41, 0.18);
	}

	body.rp-menu-open .rp-nav {
		display: block;
	}

	.rp-nav ul {
		display: grid;
		gap: 8px;
	}

	.rp-nav a {
		padding: 13px 14px;
		border-radius: var(--rp-radius);
		background: var(--rp-soft);
		color: var(--rp-ink);
		line-height: 1.2;
	}

	.rp-hot-section {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 12px;
		margin: 18px 0;
	}

	.rp-hot-card,
	.rp-hot-card--main {
		grid-row: auto;
		min-height: 220px;
	}

	.rp-hot-card--small {
		min-height: 170px;
	}
}

@media (max-width: 560px) {
	.rp-wrap,
	.rp-single-wrap {
		width: min(100% - 22px, 1180px);
	}

	.rp-header-main {
		gap: 10px;
		min-height: 66px;
	}

	.rp-brand {
		font-size: 1.08rem;
	}

	.rp-icon-btn {
		width: 38px;
		height: 38px;
	}

	.rp-home-label {
		margin-top: 16px;
	}

	.rp-hero {
		padding-top: 14px;
	}

	.rp-card--compact,
	.rp-card--list {
		grid-template-columns: 96px minmax(0, 1fr);
		min-height: 106px;
		gap: 10px;
		padding: 8px;
		border: 1px solid color-mix(in srgb, var(--rp-line) 70%, transparent);
		border-radius: var(--rp-radius);
	}

	.rp-card--compact .rp-card__image,
	.rp-card--list .rp-card__image {
		width: 96px;
		height: 96px;
	}

	.rp-card__body {
		padding: 0;
	}

	.rp-card--compact .rp-kicker,
	.rp-card--list .rp-kicker {
		margin-bottom: 5px;
		font-size: 0.66rem;
	}

	.rp-card--compact .rp-card__title,
	.rp-card--list .rp-card__title {
		font-size: 0.9rem;
		-webkit-line-clamp: 3;
	}

	.rp-card--compact .rp-meta span:nth-child(n+3),
	.rp-card--list .rp-meta span:nth-child(n+3),
	.rp-card--list .rp-meta time::after,
	.rp-card--compact .rp-meta time::after {
		display: none;
	}

	.rp-card--list .rp-card__excerpt {
		display: none;
	}

	.rp-meta {
		gap: 6px;
	}

	.rp-search-panel form,
	.rp-search-form,
	.rp-newsletter form,
	.rp-newsletter-band form {
		flex-direction: column;
	}

	.rp-footer__bottom {
		flex-direction: column;
	}
}

@media (prefers-reduced-motion: reduce) {
	* {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}
