/**
 * Advocate Raksha Ram Harijan - Main Stylesheet
 * Authoritative, Scholarly, Trustworthy, Modern, Minimal, Premium Legal Design System
 * Version: 1.3.0
 */

/* ==========================================================================
   Global Reset & Base Typography
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body.rrh-theme-body {
	font-family: var(--rrh-font-body);
	color: var(--rrh-navy-700);
	background-color: var(--rrh-slate-50);
	line-height: 1.65;
	font-size: 16px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.rrh-container {
	width: 100%;
	max-width: var(--rrh-container-max);
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}

a {
	color: var(--rrh-navy-900);
	text-decoration: none;
	transition: var(--rrh-transition);
}

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

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

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.rrh-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--rrh-white);
	box-shadow: 0 1px 3px 0 rgba(15, 23, 42, 0.08);
	transition: var(--rrh-transition);
}

.rrh-header.is-scrolled {
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
}

.rrh-top-bar {
	background: var(--rrh-navy-900);
	color: var(--rrh-slate-400);
	font-size: 12px;
	padding: 6px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rrh-top-bar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.rrh-top-bar-badge {
	color: var(--rrh-accent-gold);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	font-size: 11.5px;
}

.rrh-top-bar-divider {
	margin: 0 10px;
	color: rgba(255, 255, 255, 0.2);
}

.rrh-top-contact-link {
	color: var(--rrh-slate-400);
	transition: var(--rrh-transition);
}

.rrh-top-contact-link:hover {
	color: var(--rrh-white);
}

.rrh-main-nav-bar {
	padding: 16px 0;
}

.rrh-nav-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
}

.rrh-brand {
	flex-shrink: 0;
}

.rrh-brand-link {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	white-space: nowrap;
}

.rrh-brand-logo-mark {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
	border: 2px solid var(--rrh-accent-gold);
	border-radius: var(--rrh-radius-md);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rrh-accent-gold);
	font-size: 22px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
	flex-shrink: 0;
}

.rrh-brand-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.rrh-brand-name {
	font-family: var(--rrh-font-heading);
	font-size: 21px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	letter-spacing: -0.2px;
	line-height: 1.2;
	white-space: nowrap;
}

.rrh-brand-tagline {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--rrh-navy-600);
	font-weight: 600;
	margin-top: 3px;
	white-space: nowrap;
}

/* Desktop Navigation */
.rrh-nav-desktop {
	margin-left: auto;
}

.rrh-nav-desktop .rrh-menu-list {
	display: flex;
	list-style: none;
	gap: 22px;
	align-items: center;
}

.rrh-nav-desktop .rrh-menu-list li {
	position: relative;
}

.rrh-nav-desktop .rrh-menu-list a {
	font-size: 14.5px;
	font-weight: 600;
	color: var(--rrh-navy-800);
	padding: 8px 4px;
	position: relative;
	display: inline-block;
	transition: var(--rrh-transition);
}

.rrh-nav-desktop .rrh-menu-list a:hover {
	color: var(--rrh-accent-red);
}

.rrh-nav-desktop .rrh-menu-list li.current-menu-item > a,
.rrh-nav-desktop .rrh-menu-list li.current_page_item > a {
	color: var(--rrh-navy-900);
	border-bottom: 2px solid var(--rrh-accent-gold);
}

/* Dropdown Sub-menus */
.rrh-nav-desktop .rrh-menu-list .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: #0f172a;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--rrh-radius-sm);
	padding: 8px 0;
	list-style: none;
	display: none;
	flex-direction: column;
	gap: 0;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
	z-index: 100;
}

.rrh-nav-desktop .rrh-menu-list li:hover > .sub-menu,
.rrh-nav-desktop .rrh-menu-list li:focus-within > .sub-menu {
	display: flex;
}

.rrh-nav-desktop .rrh-menu-list .sub-menu a {
	color: var(--rrh-slate-300);
	padding: 8px 18px;
	display: block;
	font-size: 13px;
	white-space: nowrap;
	transition: var(--rrh-transition);
}

.rrh-nav-desktop .rrh-menu-list .sub-menu a:hover {
	color: var(--rrh-white);
	background: rgba(255, 255, 255, 0.08);
	padding-left: 22px;
}

.rrh-header-actions {
	display: flex;
	align-items: center;
}

.rrh-hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	width: 28px;
	height: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
}

.rrh-hamburger span {
	width: 100%;
	height: 2.5px;
	background: var(--rrh-navy-900);
	border-radius: 2px;
	transition: var(--rrh-transition);
}

/* Mobile Drawer */
.rrh-mobile-drawer {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100vh;
	background: var(--rrh-white);
	z-index: 2000;
	box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
	padding: 24px;
	transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
}

.rrh-mobile-drawer.is-open {
	right: 0;
}

.rrh-drawer-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--rrh-slate-200);
	margin-bottom: 20px;
}

.rrh-drawer-brand {
	font-family: var(--rrh-font-heading);
	font-weight: 700;
	color: var(--rrh-navy-900);
}

.rrh-drawer-close {
	background: transparent;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: var(--rrh-navy-900);
}

.rrh-mobile-menu-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 14px;
	overflow-y: auto;
}

.rrh-mobile-menu-list a {
	font-size: 15px;
	font-weight: 600;
	color: var(--rrh-navy-800);
}

.rrh-mobile-menu-list .sub-menu {
	list-style: none;
	padding-left: 14px;
	margin-top: 8px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	border-left: 2px solid var(--rrh-accent-red);
}

.rrh-mobile-menu-list .sub-menu a {
	font-size: 13.5px;
	color: var(--rrh-navy-600);
	font-weight: 500;
}

.rrh-drawer-cta {
	margin-top: auto;
	padding-top: 20px;
}

/* ==========================================================================
   Breadcrumbs Bar
   ========================================================================== */
.rrh-breadcrumbs-bar {
	background: var(--rrh-white);
	border-bottom: 1px solid var(--rrh-slate-200);
	padding: 12px 0;
	font-size: 13px;
}

.rrh-breadcrumb-list {
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0;
	margin: 0;
	padding: 0;
}

.rrh-breadcrumb-item {
	display: flex;
	align-items: center;
	color: var(--rrh-navy-600);
}

.rrh-breadcrumb-item + .rrh-breadcrumb-item::before {
	content: "/";
	margin: 0 10px;
	color: #94a3b8;
	font-weight: 400;
}

.rrh-bc-link {
	color: var(--rrh-navy-600);
	text-decoration: none;
	font-weight: 500;
	transition: var(--rrh-transition);
}

.rrh-bc-link:hover {
	color: var(--rrh-accent-red);
}

.rrh-bc-current {
	color: var(--rrh-navy-900);
	font-weight: 600;
}

/* ==========================================================================
   Buttons & Badges
   ========================================================================== */
.rrh-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 26px;
	border-radius: var(--rrh-radius-sm);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0.3px;
	cursor: pointer;
	border: 1px solid transparent;
	transition: var(--rrh-transition);
	text-decoration: none;
}

.rrh-btn-primary {
	background: var(--rrh-navy-900);
	color: var(--rrh-white);
	border-color: var(--rrh-navy-900);
}

.rrh-btn-primary:hover {
	background: var(--rrh-accent-red);
	border-color: var(--rrh-accent-red);
	color: var(--rrh-white);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(239, 83, 80, 0.25);
}

.rrh-btn-secondary {
	background: transparent;
	color: var(--rrh-navy-900);
	border-color: var(--rrh-navy-900);
}

.rrh-btn-secondary:hover {
	background: var(--rrh-navy-900);
	color: var(--rrh-white);
}

.rrh-btn-outline {
	background: transparent;
	color: var(--rrh-navy-800);
	border-color: var(--rrh-slate-200);
}

.rrh-btn-outline:hover {
	border-color: var(--rrh-navy-900);
	color: var(--rrh-navy-900);
}

.rrh-btn-sm {
	padding: 7px 16px;
	font-size: 12px;
}

.rrh-btn-block {
	width: 100%;
}

.rrh-btn-text {
	background: none;
	border: none;
	color: var(--rrh-accent-red);
	font-weight: 600;
	padding: 6px 0;
	cursor: pointer;
}

.rrh-btn-text:hover {
	text-decoration: underline;
}

.rrh-badge {
	display: inline-block;
	background: var(--rrh-slate-100);
	color: var(--rrh-navy-800);
	font-size: 11px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: var(--rrh-radius-sm);
}

.rrh-court-badge {
	display: inline-block;
	background: #fef2f2;
	color: var(--rrh-accent-red-dk);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: var(--rrh-radius-sm);
	border: 1px solid #fca5a5;
}

.rrh-date-badge {
	display: inline-block;
	background: var(--rrh-slate-100);
	color: var(--rrh-navy-700);
	font-size: 12px;
	font-weight: 500;
	padding: 4px 10px;
	border-radius: var(--rrh-radius-sm);
}

.rrh-card-link {
	font-weight: 600;
	font-size: 13.5px;
	color: var(--rrh-navy-900);
	display: inline-flex;
	align-items: center;
	gap: 6px;
	transition: var(--rrh-transition);
}

.rrh-card-link:hover {
	color: var(--rrh-accent-red);
	padding-left: 2px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.rrh-section {
	padding: 80px 0;
}

.rrh-section-header {
	margin-bottom: 48px;
}

.rrh-text-center {
	text-align: center;
}

.rrh-subheading {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--rrh-accent-red);
	margin-bottom: 8px;
}

.rrh-subheading-gold {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--rrh-accent-gold);
	margin-bottom: 8px;
}

.rrh-heading {
	font-family: var(--rrh-font-heading);
	font-size: 34px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	line-height: 1.25;
	letter-spacing: -0.3px;
}

.rrh-heading-white {
	font-family: var(--rrh-font-heading);
	font-size: 34px;
	font-weight: 700;
	color: var(--rrh-white);
	line-height: 1.25;
}

.rrh-heading-divider {
	width: 50px;
	height: 3px;
	background: var(--rrh-accent-red);
	margin: 16px auto 0 auto;
	border-radius: 2px;
}

.rrh-section-intro {
	max-width: 680px;
	margin: 16px auto 0 auto;
	color: var(--rrh-navy-600);
	font-size: 16px;
	line-height: 1.6;
}

/* ==========================================================================
   1. Hero Section
   ========================================================================== */
.rrh-hero-section {
	background: linear-gradient(135deg, #090e1a 0%, #0f172a 60%, #1e293b 100%);
	color: var(--rrh-white);
	padding: 95px 0 105px 0;
	position: relative;
	overflow: hidden;
}

.rrh-hero-background-pattern {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.04;
	background-image: radial-gradient(#ffffff 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
}

.rrh-hero-container {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 60px;
	align-items: center;
	position: relative;
	z-index: 2;
}

.rrh-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 13px;
	font-weight: 600;
	color: var(--rrh-accent-gold);
	margin-bottom: 20px;
}

.rrh-badge-dot {
	width: 8px;
	height: 8px;
	background: var(--rrh-accent-red);
	border-radius: 50%;
}

.rrh-hero-title {
	font-family: var(--rrh-font-heading);
	font-size: 46px;
	font-weight: 800;
	color: var(--rrh-white);
	line-height: 1.15;
	margin-bottom: 12px;
	letter-spacing: -0.5px;
}

.rrh-hero-subtitle {
	font-size: 18px;
	font-weight: 500;
	color: var(--rrh-accent-gold);
	margin-bottom: 18px;
	letter-spacing: 0.3px;
}

.rrh-hero-statement {
	font-size: 16.5px;
	line-height: 1.7;
	color: var(--rrh-slate-400);
	max-width: 540px;
	margin-bottom: 32px;
}

.rrh-hero-actions {
	display: flex;
	gap: 16px;
	margin-bottom: 36px;
	flex-wrap: wrap;
}

.rrh-hero-actions .rrh-btn-primary {
	background: var(--rrh-accent-red);
	border-color: var(--rrh-accent-red);
	box-shadow: 0 4px 14px rgba(239, 83, 80, 0.3);
}

.rrh-hero-actions .rrh-btn-primary:hover {
	background: #dc2626;
	border-color: #dc2626;
}

.rrh-hero-actions .rrh-btn-secondary {
	border-color: rgba(255, 255, 255, 0.3);
	color: var(--rrh-white);
	background: rgba(255, 255, 255, 0.05);
}

.rrh-hero-actions .rrh-btn-secondary:hover {
	background: var(--rrh-white);
	color: var(--rrh-navy-900);
}

.rrh-hero-credentials {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rrh-cred-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--rrh-slate-400);
	font-weight: 500;
}

.rrh-cred-icon {
	color: var(--rrh-accent-gold);
	font-size: 16px;
}

/* Portrait Visual Frame */
.rrh-portrait-frame {
	position: relative;
	max-width: 360px;
	margin: 0 auto;
}

.rrh-portrait-inner {
	background: #1e293b;
	border: 2px solid rgba(217, 119, 6, 0.4);
	border-radius: var(--rrh-radius-lg);
	padding: 24px;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
	text-align: center;
	overflow: hidden;
}

.rrh-portrait-frame.has-photo .rrh-portrait-inner {
	padding: 8px;
	background: #0f172a;
	border: 3px solid var(--rrh-accent-gold);
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.rrh-hero-portrait-img {
	width: 100%;
	height: 390px;
	object-fit: cover;
	object-position: top center;
	border-radius: calc(var(--rrh-radius-lg) - 6px);
	display: block;
}

.rrh-portrait-placeholder {
	padding: 40px 20px;
}

.rrh-svg-crest {
	width: 90px;
	height: 90px;
	margin-bottom: 16px;
}

.rrh-portrait-name {
	font-family: var(--rrh-font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--rrh-white);
	margin-bottom: 4px;
}

.rrh-portrait-desig {
	font-size: 13px;
	color: var(--rrh-accent-gold);
	font-weight: 600;
}

.rrh-portrait-badge {
	position: absolute;
	bottom: -18px;
	right: -18px;
	background: var(--rrh-white);
	color: var(--rrh-navy-900);
	padding: 12px 18px;
	border-radius: var(--rrh-radius-md);
	box-shadow: var(--rrh-shadow-lg);
	display: flex;
	align-items: center;
	gap: 12px;
	border-left: 4px solid var(--rrh-accent-red);
}

.rrh-badge-num {
	font-size: 24px;
	font-weight: 800;
	color: var(--rrh-accent-red);
	line-height: 1;
}

.rrh-badge-text {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1.2;
	color: var(--rrh-navy-800);
}

/* ==========================================================================
   2. Statistics Counter Bar
   ========================================================================== */
.rrh-stats-bar {
	background: var(--rrh-white);
	padding: 40px 0;
	box-shadow: var(--rrh-shadow-sm);
	border-bottom: 1px solid var(--rrh-slate-200);
}

.rrh-stats-flex {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	text-align: center;
}

.rrh-stat-item,
.rrh-stat-card {
	padding: 10px 16px;
	border-right: 1px solid var(--rrh-slate-200);
}

.rrh-stat-item:last-child,
.rrh-stat-card:last-child {
	border-right: none;
}

.rrh-stat-val,
.rrh-stat-number {
	font-family: var(--rrh-font-heading);
	font-size: 42px;
	font-weight: 800;
	color: var(--rrh-navy-900);
	line-height: 1;
	margin-bottom: 6px;
	letter-spacing: -0.5px;
}

.rrh-stat-desc,
.rrh-stat-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--rrh-navy-600);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* ==========================================================================
   3. About Preview & Four Pillars
   ========================================================================== */
.rrh-bio-preview-section {
	background: var(--rrh-slate-50);
}

.rrh-bio-grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: start;
}

.rrh-bio-main {
	display: flex;
	flex-direction: column;
}

.rrh-quote-box {
	background: var(--rrh-navy-900);
	border-left: 4px solid var(--rrh-accent-gold);
	border-radius: 0 var(--rrh-radius-lg) var(--rrh-radius-lg) 0;
	padding: 28px 32px;
	color: var(--rrh-white);
	box-shadow: var(--rrh-shadow-md);
	margin-bottom: 24px;
}

.rrh-quote-box p {
	font-family: var(--rrh-font-heading);
	font-size: 18px;
	font-style: italic;
	line-height: 1.6;
	color: var(--rrh-slate-100);
	margin: 0;
}

.rrh-bio-paragraphs p {
	font-size: 15.5px;
	color: var(--rrh-navy-700);
	line-height: 1.75;
	margin-bottom: 16px;
}

.rrh-bio-cta {
	margin-top: 12px;
}

.rrh-bio-pillars {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rrh-pillar-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-md);
	padding: 20px 24px;
	box-shadow: var(--rrh-shadow-sm);
	display: flex;
	align-items: flex-start;
	gap: 18px;
	transition: var(--rrh-transition);
}

.rrh-pillar-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--rrh-shadow-md);
	border-color: var(--rrh-accent-gold);
}

.rrh-pillar-icon {
	width: 44px;
	height: 44px;
	background: #f8fafc;
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rrh-accent-red);
	font-size: 20px;
	flex-shrink: 0;
}

.rrh-pillar-content h4 {
	font-family: var(--rrh-font-heading);
	font-size: 17px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	margin-bottom: 4px;
}

.rrh-pillar-content p {
	font-size: 13.5px;
	color: var(--rrh-navy-600);
	line-height: 1.55;
	margin: 0;
}

/* ==========================================================================
   4. Practice Areas Grid
   ========================================================================== */
.rrh-practice-section {
	background: var(--rrh-white);
}

.rrh-practice-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
}

.rrh-practice-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-md);
	padding: 32px 28px;
	box-shadow: var(--rrh-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: var(--rrh-transition);
}

.rrh-practice-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--rrh-shadow-md);
	border-color: var(--rrh-accent-gold);
}

.rrh-practice-icon-box {
	width: 48px;
	height: 48px;
	background: #f8fafc;
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rrh-accent-red);
	font-size: 22px;
	margin-bottom: 18px;
}

.rrh-practice-title {
	font-family: var(--rrh-font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	margin-bottom: 10px;
}

.rrh-practice-excerpt {
	font-size: 14px;
	color: var(--rrh-navy-600);
	line-height: 1.6;
	margin-bottom: 18px;
}

.rrh-practice-sublist {
	list-style: none;
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rrh-practice-sublist li {
	font-size: 13px;
	color: var(--rrh-navy-700);
	padding-left: 14px;
	position: relative;
	line-height: 1.4;
}

.rrh-practice-sublist li::before {
	content: '•';
	color: var(--rrh-accent-gold);
	font-weight: bold;
	position: absolute;
	left: 0;
}

/* ==========================================================================
   5. Judicial & Professional Timeline
   ========================================================================== */
.rrh-timeline-section {
	background: var(--rrh-slate-50);
}

.rrh-timeline-track {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.rrh-timeline-track::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 30px;
	width: 2px;
	background: var(--rrh-slate-200);
}

.rrh-timeline-item {
	position: relative;
	padding-left: 70px;
	margin-bottom: 36px;
}

.rrh-timeline-dot {
	position: absolute;
	left: 23px;
	top: 6px;
	width: 16px;
	height: 16px;
	background: var(--rrh-white);
	border: 3px solid var(--rrh-accent-red);
	border-radius: 50%;
	z-index: 2;
}

.rrh-timeline-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-md);
	padding: 24px 28px;
	box-shadow: var(--rrh-shadow-sm);
}

.rrh-timeline-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	flex-wrap: wrap;
	gap: 8px;
}

.rrh-timeline-period {
	font-size: 13px;
	font-weight: 700;
	color: var(--rrh-accent-red);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rrh-timeline-title {
	font-family: var(--rrh-font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	margin-bottom: 4px;
}

.rrh-timeline-institution {
	font-size: 14px;
	font-weight: 600;
	color: var(--rrh-navy-600);
	margin-bottom: 10px;
}

.rrh-timeline-body p {
	font-size: 14px;
	color: var(--rrh-navy-700);
	line-height: 1.6;
}

/* ==========================================================================
   6. Supreme Court Cases Showcase
   ========================================================================== */
.rrh-cases-section {
	background: var(--rrh-white);
}

.rrh-cases-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 28px;
	width: 100%;
}

.rrh-case-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-lg);
	padding: 28px;
	box-shadow: var(--rrh-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: var(--rrh-transition);
}

.rrh-case-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rrh-shadow-md);
	border-color: var(--rrh-navy-800);
}

.rrh-case-citation-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px;
	flex-wrap: wrap;
	gap: 6px;
}

.rrh-case-court-badge {
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--rrh-accent-red-dk);
	background: #fef2f2;
	padding: 3px 8px;
	border-radius: 4px;
}

.rrh-case-date {
	font-size: 12px;
	color: var(--rrh-navy-600);
}

.rrh-case-title {
	font-family: var(--rrh-font-heading);
	font-size: 19px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	line-height: 1.35;
	margin-bottom: 10px;
}

.rrh-case-citation-text {
	font-size: 13px;
	color: var(--rrh-navy-600);
	margin-bottom: 14px;
	background: var(--rrh-slate-50);
	padding: 6px 10px;
	border-radius: var(--rrh-radius-sm);
	border: 1px solid var(--rrh-slate-200);
}

.rrh-case-principle-box {
	background: #fafaf9;
	border-left: 3px solid var(--rrh-accent-gold);
	padding: 12px 14px;
	border-radius: 0 var(--rrh-radius-sm) var(--rrh-radius-sm) 0;
	margin-bottom: 18px;
}

.rrh-ratio-tag {
	display: block;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--rrh-accent-gold-dk);
	margin-bottom: 4px;
}

.rrh-case-principle-box p {
	font-size: 13px;
	color: var(--rrh-navy-700);
	line-height: 1.5;
	margin: 0;
}

.rrh-case-footer {
	margin-top: auto;
	padding-top: 14px;
	border-top: 1px solid var(--rrh-slate-100);
}

/* ==========================================================================
   7. Publications & Books Grid (Full-Width Responsive)
   ========================================================================== */
.rrh-publications-section {
	background: var(--rrh-slate-50);
}

.rrh-publications-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
	gap: 32px;
	width: 100%;
}

.rrh-pub-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-lg);
	overflow: hidden;
	box-shadow: var(--rrh-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: var(--rrh-transition);
}

.rrh-pub-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--rrh-shadow-md);
	border-color: var(--rrh-accent-gold);
}

.rrh-pub-cover {
	background: #0f172a;
	padding: 24px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 250px;
	max-height: 280px;
	overflow: hidden;
}

.rrh-pub-cover img {
	max-height: 220px;
	width: auto;
	object-fit: contain;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
	border-radius: 4px;
}

.rrh-book-cover-mockup {
	width: 160px;
	height: 220px;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border: 2px solid var(--rrh-accent-gold);
	border-radius: 4px 10px 10px 4px;
	position: relative;
	padding: 16px 12px;
	color: var(--rrh-white);
	box-shadow: 6px 6px 18px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.rrh-mockup-spine {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 10px;
	background: rgba(255, 255, 255, 0.1);
	border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.rrh-mockup-type {
	font-size: 9px;
	font-weight: 700;
	color: #fbbf24;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-left: 6px;
	margin-bottom: 2px;
}

.rrh-mockup-author {
	font-size: 10px;
	font-weight: 600;
	color: var(--rrh-accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-left: 6px;
}

.rrh-mockup-title {
	font-family: var(--rrh-font-heading);
	font-size: 13px;
	font-weight: 700;
	color: var(--rrh-white);
	line-height: 1.3;
	margin: 10px 0 10px 6px;
}

.rrh-mockup-pub {
	font-size: 9px;
	color: var(--rrh-slate-400);
	margin-left: 6px;
}

.rrh-pub-details {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.rrh-pub-meta-top {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.rrh-pub-meta-top .rrh-badge {
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 4px;
}

.rrh-pub-meta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	font-size: 12px;
	color: var(--rrh-navy-600);
	margin-bottom: 8px;
}

.rrh-meta-coauthors {
	color: var(--rrh-navy-700);
	font-weight: 500;
}

.rrh-pub-title {
	font-family: var(--rrh-font-heading);
	font-size: 19px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	margin-bottom: 10px;
	line-height: 1.35;
}

.rrh-pub-excerpt {
	font-size: 14px;
	color: var(--rrh-navy-600);
	line-height: 1.6;
	margin-bottom: 20px;
}

.rrh-pub-actions {
	margin-top: auto;
	display: flex;
	gap: 12px;
	align-items: center;
}

/* ==========================================================================
   8. Research Grid
   ========================================================================== */
.rrh-research-section {
	background: var(--rrh-white);
}

.rrh-research-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 28px;
	width: 100%;
}

.rrh-research-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-lg);
	padding: 32px;
	box-shadow: var(--rrh-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: var(--rrh-transition);
}

.rrh-research-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rrh-shadow-md);
}

.rrh-research-badge {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--rrh-navy-800);
	background: var(--rrh-slate-100);
	padding: 4px 10px;
	border-radius: var(--rrh-radius-sm);
	display: inline-block;
	margin-bottom: 12px;
	align-self: flex-start;
}

.rrh-research-title {
	font-family: var(--rrh-font-heading);
	font-size: 21px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	line-height: 1.35;
	margin-bottom: 12px;
}

.rrh-research-abstract {
	font-size: 14px;
	color: var(--rrh-navy-600);
	line-height: 1.65;
	margin-bottom: 20px;
}

.rrh-research-actions {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid var(--rrh-slate-100);
}

/* ==========================================================================
   9. Articles Grid
   ========================================================================== */
.rrh-articles-section {
	background: var(--rrh-slate-50);
}

.rrh-articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	width: 100%;
}

.rrh-article-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-md);
	overflow: hidden;
	box-shadow: var(--rrh-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: var(--rrh-transition);
}

.rrh-article-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rrh-shadow-md);
}

.rrh-article-content {
	padding: 24px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.rrh-article-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
	font-size: 12px;
	color: var(--rrh-navy-600);
}

.rrh-article-title {
	font-family: var(--rrh-font-heading);
	font-size: 19px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	line-height: 1.35;
	margin-bottom: 10px;
}

.rrh-article-excerpt {
	font-size: 14px;
	color: var(--rrh-navy-600);
	line-height: 1.6;
	margin-bottom: 20px;
}

.rrh-article-card-footer {
	margin-top: auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 14px;
	border-top: 1px solid var(--rrh-slate-100);
}

/* ==========================================================================
   10. Legal Education Hub
   ========================================================================== */
.rrh-education-section {
	background: var(--rrh-white);
}

.rrh-education-box {
	background: linear-gradient(135deg, #090e1a 0%, #0f172a 60%, #1e293b 100%);
	border-radius: var(--rrh-radius-lg);
	padding: 48px;
	color: var(--rrh-white);
	box-shadow: var(--rrh-shadow-lg);
}

.rrh-edu-header {
	margin-bottom: 36px;
}

.rrh-edu-intro {
	max-width: 680px;
	margin: 12px auto 0 auto;
	color: var(--rrh-slate-300);
	font-size: 15px;
	line-height: 1.6;
}

.rrh-edu-modules-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.rrh-edu-module {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--rrh-radius-md);
	padding: 24px;
	display: flex;
	flex-direction: column;
	transition: var(--rrh-transition);
}

.rrh-edu-module:hover {
	background: rgba(255, 255, 255, 0.09);
	transform: translateY(-2px);
}

.rrh-edu-num {
	font-family: var(--rrh-font-heading);
	font-size: 28px;
	font-weight: 800;
	color: var(--rrh-accent-gold);
	margin-bottom: 12px;
	line-height: 1;
}

.rrh-edu-module h3 {
	font-family: var(--rrh-font-heading);
	font-size: 18px;
	font-weight: 700;
	color: var(--rrh-white);
	margin-bottom: 8px;
}

.rrh-edu-module p {
	font-size: 13.5px;
	color: var(--rrh-slate-300);
	line-height: 1.55;
	margin-bottom: 16px;
}

.rrh-edu-module a {
	margin-top: auto;
	color: var(--rrh-accent-gold);
	font-weight: 600;
	font-size: 13px;
}

.rrh-edu-module a:hover {
	color: var(--rrh-white);
}

/* ==========================================================================
   11. Media & Video Grid
   ========================================================================== */
.rrh-media-section {
	background: var(--rrh-slate-50);
}

.rrh-media-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 28px;
	width: 100%;
}

.rrh-media-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-lg);
	overflow: hidden;
	box-shadow: var(--rrh-shadow-sm);
	display: flex;
	flex-direction: column;
	transition: var(--rrh-transition);
}

.rrh-media-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--rrh-shadow-md);
}

.rrh-media-frame {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
}

.rrh-media-frame iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.rrh-media-mock {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #1e293b, #0f172a);
	display: flex;
	align-items: center;
	justify-content: center;
}

.rrh-play-btn {
	width: 50px;
	height: 50px;
	background: var(--rrh-accent-red);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	padding-left: 4px;
}

.rrh-media-info {
	padding: 22px;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.rrh-media-channel {
	font-size: 12px;
	font-weight: 600;
	color: var(--rrh-accent-red);
	margin-bottom: 6px;
	text-transform: uppercase;
}

.rrh-media-title {
	font-family: var(--rrh-font-heading);
	font-size: 17px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	line-height: 1.35;
}

/* ==========================================================================
   12. Chamber Consultation & Contact Section
   ========================================================================== */
.rrh-contact-section {
	background: linear-gradient(135deg, #090e1a 0%, #0f172a 60%, #1e293b 100%);
	color: var(--rrh-white);
}

.rrh-contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 50px;
	align-items: start;
}

.rrh-contact-lead {
	font-size: 15.5px;
	color: var(--rrh-slate-300);
	line-height: 1.65;
	margin: 16px 0 28px 0;
}

.rrh-contact-details-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
}

.rrh-cd-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--rrh-radius-sm);
	padding: 14px 18px;
}

.rrh-cd-icon {
	font-size: 20px;
	color: var(--rrh-accent-gold);
	flex-shrink: 0;
	margin-top: 2px;
}

.rrh-cd-text strong {
	display: block;
	font-size: 13px;
	color: var(--rrh-accent-gold);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.rrh-cd-text p {
	font-size: 14px;
	color: var(--rrh-slate-300);
	line-height: 1.4;
	margin: 0;
}

.rrh-confidential-badge {
	display: flex;
	align-items: center;
	gap: 10px;
	background: rgba(217, 119, 6, 0.12);
	border: 1px solid rgba(217, 119, 6, 0.3);
	padding: 10px 16px;
	border-radius: var(--rrh-radius-sm);
	font-size: 12.5px;
	color: var(--rrh-accent-gold);
}

.rrh-contact-form-panel {
	background: var(--rrh-white);
	border-radius: var(--rrh-radius-lg);
	padding: 36px;
	color: var(--rrh-navy-900);
	box-shadow: var(--rrh-shadow-lg);
}

.rrh-form-title {
	font-family: var(--rrh-font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--rrh-navy-900);
	margin-bottom: 20px;
	border-bottom: 2px solid var(--rrh-slate-100);
	padding-bottom: 8px;
}

/* ==========================================================================
   13. Footer
   ========================================================================== */
.rrh-footer {
	background: #090e1a;
	color: var(--rrh-slate-400);
	padding: 70px 0 0 0;
	border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.rrh-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 50px;
}

.rrh-footer-brand-title {
	font-family: var(--rrh-font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--rrh-white);
	margin-bottom: 4px;
}

.rrh-footer-brand-sub {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	color: var(--rrh-accent-gold);
	font-weight: 600;
	margin-bottom: 14px;
}

.rrh-footer-desc {
	font-size: 13.5px;
	line-height: 1.65;
	color: var(--rrh-slate-400);
	margin-bottom: 20px;
}

.rrh-footer-heading {
	font-family: var(--rrh-font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--rrh-white);
	margin-bottom: 16px;
}

.rrh-footer-links {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.rrh-footer-links a {
	color: var(--rrh-slate-400);
	font-size: 13.5px;
	transition: var(--rrh-transition);
}

.rrh-footer-links a:hover {
	color: var(--rrh-white);
	padding-left: 3px;
}

.rrh-footer-socials {
	display: flex;
	gap: 10px;
}

.rrh-social-icon {
	width: 36px;
	height: 36px;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: var(--rrh-radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--rrh-slate-300);
	font-size: 14px;
	transition: var(--rrh-transition);
}

.rrh-social-icon:hover {
	background: var(--rrh-accent-red);
	color: var(--rrh-white);
	border-color: var(--rrh-accent-red);
}

.rrh-footer-disclaimer-bar {
	background: #060a14;
	padding: 20px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rrh-disclaimer-text {
	color: #cbd5e1;
	font-size: 13.5px;
	line-height: 1.7;
	margin: 0;
	text-align: center;
	max-width: 1060px;
	margin-left: auto;
	margin-right: auto;
}

.rrh-disclaimer-label {
	color: var(--rrh-accent-gold);
	font-weight: 700;
	letter-spacing: 0.2px;
}

.rrh-footer-bottom {
	padding: 20px 0;
	font-size: 12.5px;
	color: var(--rrh-slate-400);
}

.rrh-footer-bottom-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}

.rrh-footer-legal-links a {
	color: var(--rrh-slate-400);
}

.rrh-footer-legal-links a:hover {
	color: var(--rrh-white);
}

.rrh-sep {
	margin: 0 8px;
	color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Full Width Page & Archive Layouts
   ========================================================================== */
.rrh-archive-layout {
	display: block;
	width: 100%;
	padding-top: 48px;
	padding-bottom: 80px;
}

.rrh-page-content-layout {
	display: block;
	width: 100%;
	padding-top: 48px;
	padding-bottom: 80px;
}

.rrh-single-content-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	padding-top: 50px;
	padding-bottom: 80px;
	width: 100%;
}

.rrh-single-hero,
.rrh-page-hero,
.rrh-archive-hero {
	background: linear-gradient(135deg, #090e1a 0%, #0f172a 60%, #1e293b 100%);
	color: var(--rrh-white);
	padding: 56px 0 60px 0;
}

.rrh-archive-badge,
.rrh-single-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: var(--rrh-accent-gold);
	font-size: 12px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.rrh-single-badge-wrap {
	display: flex;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.rrh-single-case-title,
.rrh-page-title,
.rrh-archive-title {
	font-family: var(--rrh-font-heading);
	font-size: 34px;
	font-weight: 700;
	color: var(--rrh-white);
	line-height: 1.25;
	margin-bottom: 12px;
}

.rrh-archive-desc {
	font-size: 16px;
	color: var(--rrh-slate-300);
	max-width: 720px;
	line-height: 1.6;
}

.rrh-single-citation-banner {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(255, 255, 255, 0.06);
	padding: 10px 16px;
	border-radius: var(--rrh-radius-sm);
	border: 1px solid rgba(255, 255, 255, 0.12);
	margin-top: 18px;
	flex-wrap: wrap;
}

.rrh-cit-label {
	font-size: 12px;
	color: var(--rrh-accent-gold);
	font-weight: 600;
	text-transform: uppercase;
}

.rrh-cit-code {
	background: rgba(0, 0, 0, 0.3);
	color: var(--rrh-white);
	padding: 4px 8px;
	border-radius: 3px;
	font-size: 13px;
}

.rrh-btn-copy-cit {
	background: var(--rrh-accent-gold);
	color: var(--rrh-navy-900);
	border: none;
	font-weight: 700;
	font-size: 12px;
	padding: 5px 12px;
	border-radius: 3px;
	cursor: pointer;
	margin-left: auto;
}

.rrh-btn-copy-cit:hover {
	background: #d4af37;
}

.rrh-single-main {
	min-width: 0;
}

.rrh-case-docket-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-md);
	padding: 24px;
	margin-bottom: 28px;
	box-shadow: var(--rrh-shadow-sm);
}

.rrh-case-docket-card h3 {
	font-family: var(--rrh-font-heading);
	font-size: 18px;
	color: var(--rrh-navy-900);
	margin-bottom: 16px;
	border-bottom: 2px solid var(--rrh-slate-100);
	padding-bottom: 8px;
}

.rrh-docket-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.rrh-docket-table th {
	text-align: left;
	color: var(--rrh-navy-600);
	width: 35%;
	padding: 8px 0;
	font-weight: 600;
	vertical-align: top;
}

.rrh-docket-table td {
	color: var(--rrh-navy-900);
	padding: 8px 0;
	vertical-align: top;
}

.rrh-case-issue-box {
	background: #f8fafc;
	border: 1px solid #cbd5e1;
	border-left: 4px solid #3b82f6;
	border-radius: 0 var(--rrh-radius-md) var(--rrh-radius-md) 0;
	padding: 24px;
	margin-bottom: 28px;
}

.rrh-box-heading {
	font-family: var(--rrh-font-heading);
	font-size: 18px;
	color: var(--rrh-navy-900);
	margin-bottom: 10px;
}

.rrh-case-ratio-callout {
	background: #fefce8;
	border: 1px solid #fef08a;
	border-left: 4px solid var(--rrh-accent-gold);
	border-radius: 0 var(--rrh-radius-md) var(--rrh-radius-md) 0;
	padding: 24px;
	margin-bottom: 32px;
}

.rrh-ratio-heading {
	font-family: var(--rrh-font-heading);
	font-size: 18px;
	color: #854d0e;
	margin-bottom: 8px;
}

.rrh-ratio-text {
	font-size: 16px;
	color: #713f12;
	line-height: 1.6;
	font-weight: 500;
	margin: 0;
}

.rrh-prose-content {
	color: var(--rrh-navy-800);
	line-height: 1.75;
	font-size: 16px;
}

.rrh-prose-content h2 {
	font-family: var(--rrh-font-heading);
	font-size: 24px;
	color: var(--rrh-navy-900);
	margin: 32px 0 16px 0;
}

.rrh-prose-content p {
	margin-bottom: 18px;
}

/* Publication Specific Single Layout */
.rrh-pub-hero-card {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-lg);
	padding: 32px;
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 32px;
	margin-bottom: 32px;
	box-shadow: var(--rrh-shadow-sm);
}

.rrh-book-cover-mockup.large-mockup {
	width: 220px;
	height: 300px;
	padding: 20px 16px;
}

.rrh-book-cover-mockup.large-mockup .rrh-mockup-title {
	font-size: 16px;
	margin: 14px 0 14px 6px;
}

.rrh-single-author-lead {
	font-size: 16px;
	color: var(--rrh-slate-300);
	margin-top: 10px;
}

.rrh-single-author-lead strong {
	color: var(--rrh-white);
}

.rrh-coauthors-span {
	margin-left: 10px;
	color: var(--rrh-slate-300);
}

.rrh-citation-box {
	background: #f8fafc;
	border: 1px solid var(--rrh-slate-200);
	border-left: 4px solid var(--rrh-accent-gold);
	border-radius: 0 var(--rrh-radius-md) var(--rrh-radius-md) 0;
	padding: 20px 24px;
	margin: 28px 0;
}

.rrh-citation-box h4 {
	font-family: var(--rrh-font-heading);
	font-size: 16px;
	color: var(--rrh-navy-900);
	margin-bottom: 8px;
}

.rrh-citation-str {
	font-family: monospace, serif;
	font-size: 13px;
	color: var(--rrh-navy-800);
	background: var(--rrh-white);
	padding: 10px 14px;
	border: 1px dashed var(--rrh-slate-300);
	border-radius: var(--rrh-radius-sm);
	margin-bottom: 12px;
	line-height: 1.5;
}

/* Sidebar */
.rrh-single-sidebar {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.rrh-sidebar-widget {
	background: var(--rrh-white);
	border: 1px solid var(--rrh-slate-200);
	border-radius: var(--rrh-radius-md);
	padding: 24px;
	box-shadow: var(--rrh-shadow-sm);
}

.rrh-widget-title {
	font-family: var(--rrh-font-heading);
	font-size: 17px;
	color: var(--rrh-navy-900);
	margin-bottom: 16px;
	border-bottom: 2px solid var(--rrh-slate-100);
	padding-bottom: 8px;
}

.rrh-sidebar-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.rrh-sidebar-list a {
	color: var(--rrh-navy-900);
	font-size: 14px;
	font-weight: 500;
	display: block;
}

.rrh-sidebar-list a:hover {
	color: var(--rrh-accent-red);
}

.rrh-sidebar-meta {
	font-size: 12px;
	color: var(--rrh-navy-600);
	display: block;
	margin-top: 2px;
}

.rrh-consultation-callout-widget {
	background: var(--rrh-navy-900);
	color: var(--rrh-white);
	border-color: var(--rrh-navy-900);
}

.rrh-consultation-callout-widget .rrh-widget-title {
	color: var(--rrh-accent-gold);
	border-bottom-color: rgba(255, 255, 255, 0.1);
}

.rrh-consultation-callout-widget p {
	font-size: 14px;
	color: var(--rrh-slate-300);
	line-height: 1.6;
	margin-bottom: 16px;
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
	.rrh-hero-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rrh-hero-statement {
		margin-left: auto;
		margin-right: auto;
	}

	.rrh-hero-actions {
		justify-content: center;
	}

	.rrh-hero-credentials {
		justify-content: center;
	}

	.rrh-stats-flex {
		grid-template-columns: repeat(2, 1fr);
	}

	.rrh-stat-item:nth-child(2),
	.rrh-stat-card:nth-child(2) {
		border-right: none;
	}

	.rrh-bio-grid,
	.rrh-contact-wrapper {
		grid-template-columns: 1fr;
	}

	.rrh-footer-grid {
		grid-template-columns: 1fr 1fr;
	}

	.rrh-single-content-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.rrh-nav-desktop {
		display: none;
	}

	.rrh-hamburger {
		display: flex;
	}

	.rrh-top-bar {
		display: none;
	}

	.rrh-pub-hero-card {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.rrh-pub-hero-thumb {
		display: flex;
		justify-content: center;
	}

	.rrh-education-box {
		padding: 28px 20px;
	}
}

@media (max-width: 480px) {
	.rrh-stats-flex {
		grid-template-columns: 1fr;
	}

	.rrh-stat-item,
	.rrh-stat-card {
		border-right: none;
		border-bottom: 1px solid var(--rrh-slate-200);
	}

	.rrh-stat-item:last-child,
	.rrh-stat-card:last-child {
		border-bottom: none;
	}

	.rrh-footer-grid {
		grid-template-columns: 1fr;
	}

	.rrh-contact-form-panel {
		padding: 24px 18px;
	}
}
