:root {
	--hnrc-bg: #f5f7fb;
	--hnrc-surface: #ffffff;
	--hnrc-surface-alt: #eef3ff;
	--hnrc-line: #d8dfef;
	--hnrc-text: #111827;
	--hnrc-text-soft: #5b6475;
	--hnrc-primary: #2553ff;
	--hnrc-primary-dark: #1839b8;
	--hnrc-accent: #14b8a6;
	--hnrc-warm: #ff7a59;
	--hnrc-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
	--hnrc-radius-xl: 32px;
	--hnrc-radius-lg: 24px;
	--hnrc-radius-md: 18px;
	--hnrc-radius-sm: 12px;
}

body.hnrc-body {
	background: radial-gradient(circle at top, #ffffff 0%, #eef4ff 42%, #f5f7fb 100%);
	color: var(--hnrc-text);
	font-family: "Segoe UI", Arial, sans-serif;
}

.hnrc-wrap {
	width: min(1280px, calc(100% - 40px));
	margin: 0 auto;
}

.hnrc-site-content {
	padding: 32px 0 88px;
}

.hnrc-main {
	display: block;
}

.hnrc-top-strip {
	background: #0f172a;
	color: #dbe7ff;
	font-size: 13px;
	padding: 10px 0;
}

.hnrc-top-strip .widget,
.hnrc-top-strip p {
	margin: 0;
}

.hnrc-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(216, 223, 239, 0.65);
}

.hnrc-site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 84px;
}

.hnrc-branding {
	display: flex;
	align-items: center;
	gap: 14px;
}

.hnrc-branding__logo img {
	max-height: 48px;
	width: auto;
}

.hnrc-branding__title {
	display: inline-block;
	color: var(--hnrc-text);
	font-size: 24px;
	font-weight: 800;
	letter-spacing: -0.03em;
	text-decoration: none;
}

.hnrc-branding__tagline {
	margin: 4px 0 0;
	color: var(--hnrc-text-soft);
	font-size: 14px;
}

.hnrc-header-actions {
	display: flex;
	align-items: center;
	gap: 18px;
}

.hnrc-menu,
.hnrc-primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hnrc-menu a,
.hnrc-primary-nav .menu a {
	color: var(--hnrc-text);
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
}

.hnrc-header-cta,
.hnrc-secondary-button,
.hnrc-shortcode-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-radius: 999px;
	font-weight: 700;
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hnrc-header-cta,
.hnrc-shortcode-button.style-primary {
	background: linear-gradient(135deg, var(--hnrc-primary), #4b7bff);
	color: #fff;
	box-shadow: 0 18px 36px rgba(37, 83, 255, 0.25);
}

.hnrc-header-cta:hover,
.hnrc-secondary-button:hover,
.hnrc-shortcode-button:hover {
	transform: translateY(-2px);
}

.hnrc-header-cta {
	padding: 14px 22px;
}

.hnrc-secondary-button,
.hnrc-shortcode-button.style-ghost {
	background: rgba(37, 83, 255, 0.08);
	color: var(--hnrc-primary);
	padding: 14px 22px;
}

.hnrc-shortcode-button.size-sm {
	padding: 10px 16px;
	font-size: 14px;
}

.hnrc-shortcode-button.size-md {
	padding: 14px 22px;
	font-size: 15px;
}

.hnrc-shortcode-button.size-lg {
	padding: 16px 26px;
	font-size: 16px;
}

.hnrc-menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	padding: 0;
	background: transparent;
	border: 0;
}

.hnrc-menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--hnrc-text);
	border-radius: 999px;
}

.hnrc-home-hero,
.hnrc-archive-hero,
.hnrc-lead-box {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 242, 255, 0.94));
	border: 1px solid rgba(216, 223, 239, 0.75);
	border-radius: var(--hnrc-radius-xl);
	box-shadow: var(--hnrc-shadow);
}

.hnrc-home-hero {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: 30px;
	padding: 42px;
}

.hnrc-home-hero__intro h1,
.hnrc-archive-hero h1,
.hnrc-single-hero h1 {
	font-size: clamp(34px, 4vw, 56px);
	line-height: 1.08;
	letter-spacing: -0.04em;
	margin-bottom: 18px;
	font-weight: 800;
}

.hnrc-home-hero__intro p,
.hnrc-archive-hero p,
.hnrc-single-hero__summary,
.hnrc-post-card__body p,
.hnrc-lead-box p,
.hnrc-info-box__content p,
.hnrc-cta-banner p,
.hnrc-page-content p {
	color: var(--hnrc-text-soft);
	font-size: 17px;
	line-height: 1.75;
}

.hnrc-action-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	margin-top: 28px;
}

.hnrc-stat-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 30px;
}

.hnrc-stat-grid div {
	padding: 20px 18px;
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(216, 223, 239, 0.85);
	border-radius: var(--hnrc-radius-md);
}

.hnrc-stat-grid strong {
	display: block;
	font-size: 26px;
	font-weight: 800;
	color: var(--hnrc-text);
}

.hnrc-stat-grid span {
	display: block;
	margin-top: 8px;
	color: var(--hnrc-text-soft);
	font-size: 14px;
}

.hnrc-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--hnrc-primary);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-bottom: 14px;
}

.hnrc-eyebrow::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--hnrc-primary), var(--hnrc-accent));
	box-shadow: 0 0 18px rgba(20, 184, 166, 0.35);
}

.hnrc-home-section {
	margin-top: 34px;
}

.hnrc-section-heading {
	margin-bottom: 20px;
}

.hnrc-section-heading h2 {
	font-size: clamp(28px, 3vw, 42px);
	margin-bottom: 0;
	letter-spacing: -0.03em;
	font-weight: 800;
}

.hnrc-category-rail {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	margin-top: 26px;
}

.hnrc-category-rail a {
	display: block;
	padding: 18px;
	border-radius: var(--hnrc-radius-md);
	background: rgba(255, 255, 255, 0.88);
	border: 1px solid rgba(216, 223, 239, 0.9);
	color: var(--hnrc-text);
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.hnrc-category-rail strong {
	display: block;
	font-size: 15px;
	font-weight: 700;
}

.hnrc-category-rail span {
	display: block;
	margin-top: 6px;
	font-size: 13px;
	color: var(--hnrc-text-soft);
}

.hnrc-content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 28px;
	align-items: start;
}

.hnrc-content-layout--single {
	grid-template-columns: minmax(0, 1fr) 320px;
}

.hnrc-feed > .navigation.pagination {
	margin-top: 26px;
}

.hnrc-post-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 22px;
}

.hnrc-post-card {
	display: flex;
	flex-direction: column;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(216, 223, 239, 0.9);
	border-radius: var(--hnrc-radius-lg);
	overflow: hidden;
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
	min-height: 100%;
}

.hnrc-post-card.is-featured {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.hnrc-post-card__media {
	display: block;
	background: linear-gradient(135deg, #dce7ff, #eff4ff);
	min-height: 240px;
}

.hnrc-post-card.is-featured .hnrc-post-card__media {
	min-height: 100%;
}

.hnrc-post-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hnrc-post-card__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 24px;
	color: var(--hnrc-primary-dark);
	font-size: 24px;
	font-weight: 800;
	text-align: center;
}

.hnrc-post-card__body {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 24px;
}

.hnrc-post-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	font-size: 13px;
	color: var(--hnrc-text-soft);
}

.hnrc-post-card__meta a {
	color: var(--hnrc-primary);
	font-weight: 700;
	text-decoration: none;
}

.hnrc-post-card h3 {
	font-size: 26px;
	line-height: 1.28;
	letter-spacing: -0.03em;
	margin: 0;
	font-weight: 800;
}

.hnrc-post-card h3 a,
.hnrc-compact-post h4 a {
	color: var(--hnrc-text);
	text-decoration: none;
}

.hnrc-text-link {
	color: var(--hnrc-primary);
	font-weight: 700;
	text-decoration: none;
}

.hnrc-sidebar {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.hnrc-sidebar__section,
.hnrc-empty-state,
.hnrc-page-content,
.hnrc-single-hero,
.hnrc-single-summary-grid > *,
.hnrc-toc,
.hnrc-single-cta,
.hnrc-single-footer,
.hnrc-related-posts,
.hnrc-cta-banner,
.hnrc-info-box,
.hnrc-compare-box,
.hnrc-pattern-faq details {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(216, 223, 239, 0.9);
	border-radius: var(--hnrc-radius-lg);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
}

.hnrc-sidebar__section,
.hnrc-empty-state,
.hnrc-page-content,
.hnrc-single-hero,
.hnrc-toc,
.hnrc-single-cta,
.hnrc-single-footer,
.hnrc-related-posts,
.hnrc-cta-banner,
.hnrc-info-box {
	padding: 24px;
}

.hnrc-sidebar__widgets .widget:last-child,
.hnrc-page-content *:last-child,
.hnrc-cta-banner *:last-child,
.hnrc-info-box *:last-child {
	margin-bottom: 0;
}

.search-form {
	display: flex;
	gap: 8px;
}

.search-form label {
	flex: 1 1 auto;
	margin: 0;
}

.search-field,
.search-form input[type="search"],
.search-form input[type="text"] {
	width: 100%;
	border: 1px solid var(--hnrc-line);
	border-radius: 999px;
	background: #fff;
	padding: 14px 18px;
}

.search-submit {
	border: 0;
	border-radius: 999px;
	background: var(--hnrc-primary);
	color: #fff;
	font-weight: 700;
	padding: 0 18px;
}

.hnrc-compact-post {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid rgba(216, 223, 239, 0.85);
}

.hnrc-compact-post:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.hnrc-compact-post:first-child {
	padding-top: 0;
}

.hnrc-compact-post__category,
.hnrc-single-hero__category {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(37, 83, 255, 0.08);
	color: var(--hnrc-primary);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.hnrc-compact-post h4 {
	font-size: 16px;
	line-height: 1.45;
	margin: 8px 0 0;
}

.hnrc-compact-post__date {
	color: var(--hnrc-text-soft);
	font-size: 12px;
	white-space: nowrap;
}

.hnrc-archive-hero {
	padding: 36px 38px;
	margin-bottom: 26px;
}

.hnrc-empty-state {
	text-align: center;
}

.hnrc-empty-state h2 {
	font-size: 28px;
	font-weight: 800;
	margin-bottom: 10px;
}

.hnrc-empty-state .search-form {
	max-width: 500px;
	margin: 24px auto 0;
}

.hnrc-single-article {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.hnrc-single-hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
	gap: 28px;
}

.hnrc-single-hero__summary {
	margin: 18px 0;
}

.hnrc-single-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	color: var(--hnrc-text-soft);
	font-size: 14px;
}

.hnrc-single-hero__meta span {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.04);
}

.hnrc-single-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--hnrc-radius-md);
}

.hnrc-single-summary-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.hnrc-info-box strong,
.hnrc-compare-box__item strong {
	display: block;
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 12px;
}

.hnrc-info-box.tone-info {
	background: linear-gradient(135deg, rgba(37, 83, 255, 0.08), rgba(255, 255, 255, 0.96));
}

.hnrc-info-box.tone-success {
	background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(255, 255, 255, 0.96));
}

.hnrc-info-box.tone-warning {
	background: linear-gradient(135deg, rgba(255, 122, 89, 0.12), rgba(255, 255, 255, 0.96));
}

.hnrc-toc__header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid rgba(216, 223, 239, 0.85);
}

.hnrc-toc__header h2 {
	font-size: 24px;
	font-weight: 800;
	margin: 0;
}

.hnrc-toc__header span {
	color: var(--hnrc-text-soft);
	font-size: 14px;
}

.hnrc-toc-body ol {
	list-style: none;
	margin: 18px 0 0;
	padding: 0;
	display: grid;
	gap: 12px;
}

.hnrc-toc-body li {
	margin: 0;
}

.hnrc-toc-body a {
	display: block;
	padding: 14px 16px;
	border-radius: var(--hnrc-radius-sm);
	background: rgba(37, 83, 255, 0.06);
	color: var(--hnrc-text);
	font-weight: 600;
	text-decoration: none;
}

.hnrc-toc-body .is-depth-3 a {
	margin-left: 18px;
	background: rgba(20, 184, 166, 0.07);
}

.hnrc-entry-content {
	background: rgba(255, 255, 255, 0.98);
	border: 1px solid rgba(216, 223, 239, 0.9);
	border-radius: var(--hnrc-radius-xl);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
	padding: clamp(24px, 3vw, 40px);
}

.hnrc-entry-content > *:last-child {
	margin-bottom: 0;
}

.hnrc-entry-content h2,
.hnrc-page-content h2 {
	font-size: clamp(28px, 2.4vw, 38px);
	font-weight: 800;
	letter-spacing: -0.03em;
	margin-top: 40px;
	margin-bottom: 18px;
}

.hnrc-entry-content h3,
.hnrc-page-content h3 {
	font-size: clamp(22px, 1.9vw, 30px);
	font-weight: 800;
	letter-spacing: -0.02em;
	margin-top: 30px;
	margin-bottom: 16px;
}

.hnrc-entry-content h4,
.hnrc-page-content h4 {
	font-size: 20px;
	font-weight: 800;
	margin-top: 24px;
	margin-bottom: 12px;
}

.hnrc-entry-content ul,
.hnrc-entry-content ol,
.hnrc-page-content ul,
.hnrc-page-content ol {
	padding-left: 22px;
	color: var(--hnrc-text-soft);
}

.hnrc-entry-content li,
.hnrc-page-content li {
	margin-bottom: 10px;
}

.hnrc-entry-content blockquote {
	border-left: 0;
	padding: 26px;
	background: linear-gradient(135deg, rgba(37, 83, 255, 0.08), rgba(255, 255, 255, 0.96));
	border-radius: var(--hnrc-radius-md);
	font-style: normal;
	font-size: 19px;
}

.hnrc-entry-content table,
.hnrc-page-content table {
	border-collapse: collapse;
	background: #fff;
	border-radius: var(--hnrc-radius-sm);
	overflow: hidden;
}

.hnrc-entry-content th,
.hnrc-page-content th {
	background: rgba(37, 83, 255, 0.08);
	color: var(--hnrc-text);
	font-weight: 800;
}

.hnrc-single-footer .hnrc-tag-row a {
	display: inline-flex;
	align-items: center;
	padding: 10px 14px;
	margin: 0 8px 8px 0;
	border-radius: 999px;
	background: rgba(37, 83, 255, 0.08);
	color: var(--hnrc-primary);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.hnrc-related-posts h2 {
	font-size: 30px;
	letter-spacing: -0.03em;
	font-weight: 800;
}

.hnrc-cta-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.hnrc-cta-banner h3 {
	font-size: clamp(26px, 2.8vw, 36px);
	line-height: 1.2;
	margin: 0 0 14px;
	font-weight: 800;
}

.hnrc-cta-banner__extra {
	margin-top: 14px;
}

.hnrc-compare-box {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
	padding: 24px;
}

.hnrc-compare-box__item {
	padding: 22px;
	border-radius: var(--hnrc-radius-md);
	background: linear-gradient(135deg, rgba(37, 83, 255, 0.08), rgba(255, 255, 255, 0.98));
}

.hnrc-lead-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 38px 40px;
}

.hnrc-lead-box__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hnrc-pattern-faq details {
	padding: 20px 22px;
	margin-bottom: 14px;
}

.hnrc-pattern-faq summary {
	cursor: pointer;
	font-size: 17px;
	font-weight: 700;
	color: var(--hnrc-text);
}

.hnrc-pattern-faq p {
	margin: 14px 0 0;
}

.page-links a,
.page-links span,
.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	margin-right: 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(216, 223, 239, 0.9);
	color: var(--hnrc-text);
	text-decoration: none;
}

.nav-links .current {
	background: var(--hnrc-primary);
	border-color: var(--hnrc-primary);
	color: #fff;
}

.hnrc-site-footer {
	background: #0f172a;
	color: #dbe7ff;
}

.hnrc-site-footer__grid {
	display: grid;
	grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
	gap: 30px;
	padding: 60px 0 34px;
}

.hnrc-site-footer h2,
.hnrc-site-footer h3 {
	color: #fff;
	font-size: 24px;
	font-weight: 800;
	margin-bottom: 16px;
}

.hnrc-site-footer p,
.hnrc-site-footer li,
.hnrc-site-footer span,
.hnrc-site-footer .widget {
	color: #c4d2f4;
}

.hnrc-site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.hnrc-site-footer li + li {
	margin-top: 10px;
}

.hnrc-site-footer a {
	color: #f8fbff;
	text-decoration: none;
}

.hnrc-footer-bottom {
	border-top: 1px solid rgba(148, 163, 184, 0.18);
	padding: 18px 0;
}

.hnrc-footer-bottom .hnrc-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
}

@media (max-width: 1100px) {
	.hnrc-home-hero,
	.hnrc-single-hero,
	.hnrc-post-card.is-featured,
	.hnrc-site-footer__grid,
	.hnrc-content-layout,
	.hnrc-content-layout--single,
	.hnrc-lead-box {
		grid-template-columns: 1fr;
	}

	.hnrc-site-footer__grid,
	.hnrc-lead-box,
	.hnrc-cta-banner {
		display: grid;
	}

	.hnrc-category-rail {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.hnrc-site-header__inner {
		min-height: 74px;
	}

	.hnrc-menu-toggle {
		display: inline-flex;
	}

	.hnrc-header-actions {
		position: relative;
	}

	.hnrc-primary-nav {
		display: none;
		position: absolute;
		top: calc(100% + 14px);
		right: 0;
		width: min(320px, calc(100vw - 40px));
		padding: 18px;
		background: rgba(255, 255, 255, 0.98);
		border: 1px solid rgba(216, 223, 239, 0.95);
		border-radius: var(--hnrc-radius-md);
		box-shadow: var(--hnrc-shadow);
	}

	.hnrc-primary-nav.is-open {
		display: block;
	}

	.hnrc-menu,
	.hnrc-primary-nav .menu {
		flex-direction: column;
		align-items: flex-start;
	}

	.hnrc-header-cta {
		display: none;
	}

	.hnrc-post-grid,
	.hnrc-single-summary-grid,
	.hnrc-compare-box,
	.hnrc-stat-grid {
		grid-template-columns: 1fr;
	}

	.hnrc-home-hero,
	.hnrc-archive-hero,
	.hnrc-lead-box,
	.hnrc-entry-content,
	.hnrc-single-hero {
		padding: 26px;
	}
}

@media (max-width: 640px) {
	.hnrc-wrap {
		width: min(100% - 24px, 1280px);
	}

	.hnrc-site-content {
		padding: 20px 0 72px;
	}

	.hnrc-branding__title {
		font-size: 20px;
	}

	.hnrc-branding__tagline {
		display: none;
	}

	.hnrc-home-hero__intro h1,
	.hnrc-archive-hero h1,
	.hnrc-single-hero h1 {
		font-size: 32px;
	}

	.hnrc-category-rail {
		grid-template-columns: 1fr 1fr;
	}

	.hnrc-cta-banner,
	.hnrc-footer-bottom .hnrc-wrap {
		display: block;
	}

	.hnrc-footer-bottom span {
		display: block;
	}

	.hnrc-footer-bottom span + span {
		margin-top: 6px;
	}
}

/* Structural overhaul */
.hnrc-site-content {
	padding: 20px 0 88px;
}

.hnrc-wrap--narrow {
	width: min(960px, calc(100% - 40px));
}

.hnrc-header-search {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid rgba(216, 223, 239, 0.95);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.85);
	color: var(--hnrc-text);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.hnrc-home-hero {
	align-items: stretch;
	grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
}

.hnrc-home-hero__intro {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.hnrc-home-hero__feature .hnrc-post-card {
	height: 100%;
}

.hnrc-home-hero__feature .hnrc-post-card__body {
	justify-content: center;
}

.hnrc-category-rail {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnrc-post-grid--three {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hnrc-archive-hero {
	padding: 34px 38px;
}

.hnrc-archive-hero__description p {
	margin: 0;
}

.hnrc-breadcrumbs {
	margin-bottom: -6px;
}

.hnrc-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.hnrc-breadcrumbs li {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--hnrc-text-soft);
	font-size: 13px;
}

.hnrc-breadcrumbs li:not(:last-child)::after {
	content: "/";
	color: rgba(91, 100, 117, 0.65);
}

.hnrc-breadcrumbs a {
	color: var(--hnrc-text-soft);
	text-decoration: none;
}

.hnrc-breadcrumbs [aria-current="page"] {
	color: var(--hnrc-text);
	font-weight: 700;
}

.hnrc-sidebar__heading {
	font-size: 22px;
	line-height: 1.3;
	letter-spacing: -0.03em;
	margin: 0 0 18px;
	font-weight: 800;
}

.hnrc-topic-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.hnrc-topic-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	border-radius: 999px;
	background: rgba(37, 83, 255, 0.08);
	color: var(--hnrc-primary);
	font-size: 13px;
	font-weight: 700;
	text-decoration: none;
}

.hnrc-term-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.hnrc-term-card {
	display: block;
	padding: 22px;
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(216, 223, 239, 0.9);
	border-radius: var(--hnrc-radius-lg);
	box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
	color: var(--hnrc-text);
	text-decoration: none;
}

.hnrc-term-card strong {
	display: block;
	font-size: 18px;
	font-weight: 800;
	letter-spacing: -0.03em;
}

.hnrc-term-card span {
	display: block;
	margin-top: 8px;
	font-size: 14px;
	color: var(--hnrc-text-soft);
}

.hnrc-single-summary-grid {
	grid-template-columns: 1fr;
}

.hnrc-toc.is-empty {
	display: none;
}

.hnrc-single-hero__meta time,
.hnrc-single-hero__meta span {
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.04);
}

.hnrc-single-hero__meta time {
	color: var(--hnrc-text-soft);
	text-decoration: none;
}

.hnrc-footer-column p {
	line-height: 1.7;
}

@media (max-width: 1100px) {
	.hnrc-post-grid--three,
	.hnrc-term-grid,
	.hnrc-category-rail {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.hnrc-header-search,
	.hnrc-header-cta {
		display: inline-flex;
	}

	.hnrc-header-actions {
		gap: 10px;
	}

	.hnrc-header-search {
		padding: 10px 14px;
		font-size: 13px;
	}

	.hnrc-header-cta {
		padding: 11px 16px;
		font-size: 13px;
	}

	.hnrc-post-grid--three,
	.hnrc-term-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.hnrc-category-rail {
		grid-template-columns: 1fr;
	}

	.hnrc-wrap--narrow {
		width: min(100% - 24px, 960px);
	}

	.hnrc-header-search {
		display: none;
	}
}
