/**
 * MIDHATI — Default inner page styles (Phase 6)
 * About, Internship, RTI, Blogs, Services, and other non-home pages.
 */

:root {
	--navy: var(--color-navy-dark);
	--navy-hover: #15315B;
	--gold: var(--color-gold);
	--gold-hover: var(--color-gold-hover);
	--white: var(--color-white);
	--bg-light: var(--color-off-white);
	--text-dark: var(--color-text-dark);
	--text-secondary: var(--color-text-muted);
	--border: var(--color-border);
	--gold-tint: rgba(201, 163, 45, 0.1);
	--font-display: var(--font-primary);
	--font-body: var(--font-primary);
	--radius-sm: var(--border-radius-md);
	--radius-md: 14px;
	--transition: var(--transition-base);
}

.section {
	padding: 88px 0;
}

.bg-light {
	background: var(--bg-light);
}

.bg-white {
	background: var(--color-white);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-body);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--navy);
	margin: 0 0 14px;
}

.eyebrow-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--gold);
	display: inline-block;
	flex: none;
}

/* Inner page navy hero with breadcrumb */
.page-hero {
	background: linear-gradient(135deg, var(--navy) 0%, var(--navy-hover) 100%);
	padding: 64px 0 56px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.page-hero-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.page-hero-bg svg {
	width: 100%;
	height: 100%;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	font-size: 0.82rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.6);
	margin-bottom: 28px;
	letter-spacing: 0.04em;
}

.breadcrumb-nav a {
	color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav a:hover {
	color: var(--gold);
}

.breadcrumb-sep {
	color: rgba(255, 255, 255, 0.3);
}

.page-hero-eyebrow {
	color: var(--gold);
	margin-bottom: 18px;
}

.page-hero-eyebrow .eyebrow-dot {
	background: var(--gold);
}

.page-hero h1 {
	font-size: clamp(1.9rem, 1.4rem + 2.2vw, 3rem);
	color: var(--white);
	margin-bottom: 0.4em;
	line-height: 1.15;
}

.page-hero-tagline {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--gold);
	margin-bottom: 18px;
	letter-spacing: 0.04em;
}

.page-hero-sub {
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.82);
	max-width: 680px;
	margin: 0 auto 36px;
	line-height: 1.7;
}

.page-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.page-hero-divider {
	display: block;
	width: 100%;
	height: 42px;
}

.btn-ghost-white {
	background: transparent;
	color: var(--white);
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: var(--border-radius-pill);
	font-weight: 700;
	font-size: 0.95rem;
	padding: 13px 26px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	transition: background var(--transition), border-color var(--transition);
}

.btn-ghost-white:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.7);
	color: var(--white);
}

.cta-banner {
	background: linear-gradient(120deg, var(--navy) 0%, var(--navy-hover) 100%);
	padding: 80px 0;
	text-align: center;
}

.cta-heading {
	color: var(--white);
	margin-bottom: 14px;
	font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem);
}

.cta-sub {
	color: rgba(255, 255, 255, 0.78);
	max-width: 52ch;
	margin: 0 auto 30px;
}

.practice-card p {
	text-align: justify;
	text-justify: inter-word;
}
