/**
 * AlexaHire Reusable UI Components Stylesheet
 *
 * Implements exact visual components matching the approved AlexaHire concept:
 * Header, Hero, Job Cards, Company Cards, Search Box, Modals, Newsletter, and Footer.
 *
 * @package AlexaHire
 */

/* ==========================================================================
   1. BUTTONS & BADGES
   ========================================================================== */
.ah-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.6875rem 1.375rem;
	font-family: var(--ah-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1;
	border-radius: var(--ah-radius-full);
	border: 1px solid transparent;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
}

.ah-btn--primary {
	background-color: var(--ah-primary);
	color: #ffffff !important;
	box-shadow: 0 2px 4px rgba(26, 86, 219, 0.2);
}

.ah-btn--primary:hover, .ah-btn--primary:focus {
	background-color: var(--ah-primary-dark);
	box-shadow: 0 4px 8px rgba(26, 86, 219, 0.3);
	transform: translateY(-1px);
}

.ah-btn--outline {
	background-color: transparent;
	color: var(--ah-primary) !important;
	border-color: #bfdbfe;
}

.ah-btn--outline:hover, .ah-btn--outline:focus {
	background-color: var(--ah-surface-blue);
	border-color: var(--ah-primary);
}

.ah-btn--sm {
	padding: 0.45rem 1rem;
	font-size: 0.8125rem;
}

.ah-btn--lg {
	padding: 0.875rem 1.75rem;
	font-size: 1.0625rem;
}

.ah-btn--disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
	background-color: #94a3b8 !important;
	color: #ffffff !important;
	border-color: transparent !important;
}

/* Badges */
.ah-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.25rem 0.6875rem;
	border-radius: var(--ah-radius-full);
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
}

.ah-badge--featured, .ah-badge--custom {
	background-color: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
}

.ah-badge--new {
	background-color: #eff6ff;
	color: #1d4ed8;
	border: 1px solid #bfdbfe;
}

.ah-badge--trending {
	background-color: #fffbeb;
	color: #b45309;
	border: 1px solid #fde68a;
}

.ah-badge--wfh {
	background-color: #f5f3ff;
	color: #6d28d9;
	border: 1px solid #ddd6fe;
}

.ah-badge--success {
	background-color: var(--ah-success-bg);
	color: var(--ah-success);
}

.ah-badge--warning {
	background-color: var(--ah-warning-bg);
	color: var(--ah-warning);
}

.ah-badge--danger {
	background-color: var(--ah-danger-bg);
	color: var(--ah-danger);
}

/* Filter Tab Pills */
.ah-tab-pill {
	display: inline-flex;
	align-items: center;
	padding: 0.45rem 1.1rem;
	border-radius: var(--ah-radius-full);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ah-text-light);
	background-color: #ffffff;
	border: 1px solid var(--ah-border);
	text-decoration: none;
	transition: all 0.15s ease;
	cursor: pointer;
}

.ah-tab-pill:hover {
	color: var(--ah-primary);
	border-color: var(--ah-primary);
	background-color: var(--ah-surface-blue);
}

.ah-tab-pill.active {
	color: #ffffff;
	background-color: var(--ah-primary);
	border-color: var(--ah-primary);
	box-shadow: 0 2px 4px rgba(26, 86, 219, 0.2);
}

/* ==========================================================================
   2. TOP UTILITY BAR
   ========================================================================== */
.ah-utility-bar {
	background-color: #ffffff;
	border-bottom: 1px solid var(--ah-border);
	font-size: 0.8125rem;
	padding: 0.4rem 0;
	color: var(--ah-muted);
}

.ah-utility-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ah-utility-bar__links {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	list-style: none;
}

.ah-utility-bar__links a {
	color: var(--ah-muted);
	transition: color 0.15s;
}

.ah-utility-bar__links a:hover {
	color: var(--ah-primary);
}

.ah-utility-bar__socials {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-left: 1rem;
	border-left: 1px solid var(--ah-border);
	padding-left: 1rem;
}

.ah-utility-bar__social-icon {
	color: var(--ah-muted);
	display: inline-flex;
}

.ah-utility-bar__social-icon:hover {
	color: var(--ah-primary);
}

/* ==========================================================================
   3. MAIN HEADER & NAVBAR
   ========================================================================== */
.ah-header {
	background-color: #ffffff;
	border-bottom: 1px solid var(--ah-border);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: var(--ah-shadow-sm);
}

.ah-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 4.5rem;
	gap: 1.5rem;
}

/* Logo */
.ah-logo {
	display: flex;
	flex-direction: column;
	text-decoration: none;
}

.ah-logo__text {
	font-family: var(--ah-font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--ah-text);
	letter-spacing: -0.02em;
	line-height: 1;
}

.ah-logo__text span {
	color: var(--ah-primary);
}

.ah-logo__tagline {
	font-size: 0.6875rem;
	color: var(--ah-muted);
	font-weight: 500;
	margin-top: 3px;
	letter-spacing: 0.04em;
}

/* Navigation */
.ah-nav {
	display: flex;
	align-items: center;
}

.ah-nav__menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 1.25rem;
}

.ah-nav__item {
	position: relative;
}

.ah-nav__link {
	font-family: var(--ah-font-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--ah-text);
	padding: 0.5rem 0.25rem;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	text-decoration: none;
	transition: color 0.15s ease;
}

.ah-nav__link:hover, .ah-nav__link:focus, .ah-nav__item.current-menu-item > .ah-nav__link {
	color: var(--ah-primary);
}

/* Header Actions */
.ah-header__actions {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}

.ah-header__search-toggle {
	background: none;
	border: none;
	cursor: pointer;
	color: var(--ah-text);
	padding: 0.5rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--ah-radius-full);
	transition: background 0.15s;
}

.ah-header__search-toggle:hover {
	background-color: var(--ah-surface);
	color: var(--ah-primary);
}

.ah-hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0.5rem;
	color: var(--ah-text);
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.ah-hero {
	background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
	padding-top: 4rem;
	padding-bottom: 4rem;
	position: relative;
	overflow: hidden;
}

.ah-hero__grid {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 3.5rem;
	align-items: center;
}

.ah-hero__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background-color: #ffffff;
	border: 1px solid #bfdbfe;
	padding: 0.375rem 1rem;
	border-radius: var(--ah-radius-full);
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ah-text);
	margin-bottom: 1.5rem;
	box-shadow: var(--ah-shadow-sm);
}

.ah-hero__pill-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background-color: var(--ah-success);
	display: inline-block;
}

.ah-hero__title {
	font-size: clamp(2.25rem, 4vw, 3.25rem);
	font-weight: 800;
	color: var(--ah-text);
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin-bottom: 1.25rem;
}

.ah-hero__title span {
	color: var(--ah-primary);
}

.ah-hero__subtitle {
	font-size: 1.125rem;
	color: var(--ah-muted);
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 540px;
}

/* Hero Search Box */
.ah-hero-search {
	background-color: #ffffff;
	border: 1px solid #cbd5e1;
	border-radius: var(--ah-radius-full);
	padding: 0.5rem 0.5rem 0.5rem 1.25rem;
	display: flex;
	align-items: center;
	box-shadow: var(--ah-shadow-md);
	transition: border-color 0.2s, box-shadow 0.2s;
	margin-bottom: 1.25rem;
}

.ah-hero-search:focus-within {
	border-color: var(--ah-primary);
	box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

.ah-hero-search__icon {
	color: var(--ah-muted);
	margin-right: 0.75rem;
}

.ah-hero-search__input {
	flex: 1;
	border: none;
	background: transparent;
	font-family: var(--ah-font-main);
	font-size: 1rem;
	color: var(--ah-text);
	outline: none;
}

.ah-hero-search__input::placeholder {
	color: #94a3b8;
}

.ah-hero-search__btn {
	padding: 0.75rem 1.5rem;
	font-size: 0.9375rem;
}

/* Popular Searches */
.ah-popular-searches {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: var(--ah-muted);
}

.ah-popular-searches__label {
	font-weight: 600;
	color: var(--ah-text);
	margin-right: 0.25rem;
}

.ah-popular-tag {
	background-color: #ffffff;
	border: 1px solid var(--ah-border);
	padding: 0.25rem 0.75rem;
	border-radius: var(--ah-radius-full);
	color: var(--ah-text-light);
	font-weight: 500;
	transition: all 0.15s;
}

.ah-popular-tag:hover {
	border-color: var(--ah-primary);
	color: var(--ah-primary);
	background-color: var(--ah-surface-blue);
}

/* Hero Right Stats & Candidate Showcase */
.ah-hero__visual {
	position: relative;
	display: block;
}

.ah-hero__showcase {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	position: relative;
}

.ah-hero__person-col {
	position: relative;
	flex: 0 0 270px;
	max-width: 270px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}

.ah-hero__backdrop-shape {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 260px;
	height: 330px;
	background: radial-gradient(circle at 50% 30%, #dbeafe 0%, #bfdbfe 60%, rgba(191, 219, 254, 0) 100%);
	border-radius: 130px 130px 0 0;
	z-index: 0;
}

.ah-hero__person-photo {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 260px;
	height: auto;
	object-fit: contain;
	border-radius: 20px 20px 0 0;
	filter: drop-shadow(0 14px 28px rgba(37, 99, 235, 0.16));
	display: block;
}

.ah-hero__speech-bubble {
	position: absolute;
	top: 15px;
	right: -15px;
	z-index: 2;
	background: #ffffff;
	border: 1px solid #bfdbfe;
	border-radius: 14px;
	padding: 0.45rem 0.8rem;
	box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.18), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
	display: flex;
	flex-direction: column;
	line-height: 1.2;
	animation: ah-float 3.5s ease-in-out infinite;
	white-space: nowrap;
}

.ah-hero__speech-bubble::after {
	content: '';
	position: absolute;
	bottom: -6px;
	left: 18px;
	width: 10px;
	height: 10px;
	background: #ffffff;
	border-right: 1px solid #bfdbfe;
	border-bottom: 1px solid #bfdbfe;
	transform: rotate(45deg);
}

.ah-bubble-top {
	font-size: 0.6875rem;
	font-weight: 600;
	color: var(--ah-muted);
}

.ah-bubble-bottom {
	font-size: 0.8125rem;
	font-weight: 800;
	color: var(--ah-primary);
}

@keyframes ah-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-5px); }
}

.ah-hero__stats-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	z-index: 1;
}

.ah-hero-stat-card {
	background-color: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	padding: 1.125rem 1.375rem;
	display: flex;
	align-items: center;
	gap: 1rem;
	box-shadow: var(--ah-shadow);
	transition: transform 0.2s, box-shadow 0.2s;
}

.ah-hero-stat-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ah-shadow-md);
}

.ah-hero-stat-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ah-hero-stat-icon--blue { background-color: #eff6ff; color: #2563eb; }
.ah-hero-stat-icon--cyan { background-color: #ecfeff; color: #0891b2; }
.ah-hero-stat-icon--green { background-color: #f0fdf4; color: #16a34a; }

.ah-hero-stat-number {
	font-family: var(--ah-font-heading);
	font-size: 1.375rem;
	font-weight: 800;
	color: var(--ah-text);
	line-height: 1.1;
}

.ah-hero-stat-desc {
	font-size: 0.8125rem;
	color: var(--ah-muted);
}

/* ==========================================================================
   5. CATEGORY PILLS / CARDS GRID
   ========================================================================== */
.ah-categories-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 1rem;
}

.ah-cat-card {
	background-color: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	padding: 1.25rem 0.875rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: var(--ah-shadow-sm);
}

.ah-cat-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ah-shadow-md);
	border-color: #bfdbfe;
}

.ah-cat-icon-wrap {
	width: 46px;
	height: 46px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 0.75rem;
	transition: transform 0.2s;
}

.ah-cat-card:hover .ah-cat-icon-wrap {
	transform: scale(1.08);
}

.ah-cat-title {
	font-family: var(--ah-font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--ah-text);
	line-height: 1.25;
}

/* Soft Tint Backgrounds for Category Icons */
.ah-cat-tint--1 { background-color: #e0f2fe; color: #0284c7; }
.ah-cat-tint--2 { background-color: #dcfce7; color: #16a34a; }
.ah-cat-tint--3 { background-color: #f3e8ff; color: #7e22ce; }
.ah-cat-tint--4 { background-color: #ffedd5; color: #c2410c; }
.ah-cat-tint--5 { background-color: #d1fae5; color: #059669; }
.ah-cat-tint--6 { background-color: #e0e7ff; color: #4338ca; }
.ah-cat-tint--7 { background-color: #ffe4e6; color: #e11d48; }
.ah-cat-tint--8 { background-color: #cffafe; color: #0e7490; }
.ah-cat-tint--9 { background-color: #fef3c7; color: #d97706; }

/* ==========================================================================
   6. TOP HIRING COMPANIES GRID
   ========================================================================== */
.ah-companies-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
	gap: 1rem;
}

.ah-company-card {
	background-color: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius);
	padding: 1rem 0.75rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	min-height: 80px;
	box-shadow: var(--ah-shadow-sm);
	transition: all 0.2s ease;
}

.ah-company-card:hover {
	transform: translateY(-2px);
	box-shadow: var(--ah-shadow-md);
	border-color: #93c5fd;
}

.ah-company-card__logo {
	max-height: 38px;
	max-width: 90px;
	object-fit: contain;
}

.ah-company-card__name {
	font-family: var(--ah-font-heading);
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--ah-text);
	margin-top: 0.5rem;
}

/* Company Single Header Card */
.ah-company-header-card {
	background: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	padding: 2rem;
	margin-bottom: 2rem;
	box-shadow: var(--ah-shadow-sm);
	display: flex;
	gap: 1.75rem;
	align-items: flex-start;
}

.ah-company-header-logo-wrap {
	flex-shrink: 0;
}

.ah-company-header-logo {
	width: 72px;
	height: 72px;
	border-radius: 14px;
	object-fit: contain;
	border: 1px solid var(--ah-border);
	padding: 6px;
	background: #ffffff;
	display: block;
}

.ah-company-header-content {
	flex: 1;
	min-width: 0;
}

.ah-company-header-title-row {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
}

.ah-company-title {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	color: var(--ah-text);
	margin: 0;
	line-height: 1.25;
}

.ah-company-tagline {
	font-size: 0.9375rem;
	color: var(--ah-muted);
	margin-top: 0.35rem;
	margin-bottom: 0.875rem;
	line-height: 1.5;
}

.ah-company-meta-pills {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin-top: 0.75rem;
}

.ah-company-meta-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background-color: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: var(--ah-radius-full);
	padding: 0.35rem 0.75rem;
	font-size: 0.8125rem;
	color: var(--ah-text-light);
	font-weight: 500;
	text-decoration: none;
}

.ah-company-meta-pill--link {
	color: var(--ah-primary);
	font-weight: 600;
}

.ah-company-meta-pill--link:hover {
	background-color: var(--ah-surface-blue);
	border-color: #bfdbfe;
}

.ah-company-about {
	background: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	padding: 2rem;
	margin-bottom: 2.5rem;
	box-shadow: var(--ah-shadow-sm);
}

/* Company Directory Archive Grid */
.ah-companies-archive-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 1.5rem;
}

.ah-company-profile-card {
	background: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	padding: 1.75rem;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	box-shadow: var(--ah-shadow-sm);
	transition: transform 0.2s, box-shadow 0.2s;
}

.ah-company-profile-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ah-shadow-md);
	border-color: #93c5fd;
}

.ah-company-profile-logo-wrap {
	margin-bottom: 1rem;
}

.ah-company-profile-logo {
	height: 48px;
	width: auto;
	max-width: 120px;
	margin: 0 auto;
	object-fit: contain;
	display: block;
}

/* Custom Logo in Navbar */
.ah-logo-wrap {
	display: flex;
	align-items: center;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	max-height: 44px;
	width: auto;
	object-fit: contain;
	display: block;
}

/* ==========================================================================
   7. MAIN CONTENT & SIDEBAR LAYOUT
   ========================================================================== */
.ah-main-grid {
	display: grid;
	grid-template-columns: 1fr 340px;
	gap: 2.5rem;
	align-items: start;
}

/* ==========================================================================
   8. JOB CARDS
   ========================================================================== */
.ah-job-list {
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}

.ah-job-card {
	background-color: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	padding: 1.25rem 1.5rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	box-shadow: var(--ah-shadow-sm);
	transition: all 0.2s ease;
	position: relative;
}

.ah-job-card:hover {
	border-color: #bfdbfe;
	box-shadow: var(--ah-shadow-md);
	transform: translateY(-1px);
}

.ah-job-card__left {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex: 1;
}

.ah-company-avatar {
	width: 66px;
	height: 66px;
	min-width: 66px;
	min-height: 66px;
	border-radius: 14px;
	border: 1.5px solid #e2e8f0;
	object-fit: contain;
	background-color: #ffffff;
	padding: 6px 10px;
	flex-shrink: 0;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
	transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s, border-color 0.2s;
}

.ah-job-card:hover .ah-company-avatar {
	border-color: #93c5fd;
	box-shadow: 0 4px 12px rgba(26, 86, 219, 0.12);
	transform: scale(1.04);
}

.ah-avatar-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%);
	color: #ffffff;
	font-weight: 800;
	font-size: 1.5rem;
	padding: 0;
}

.ah-job-card__body {
	flex: 1;
}

.ah-job-card__title {
	font-size: 1.0625rem;
	font-weight: 700;
	margin-bottom: 0.35rem;
}

.ah-job-card__title a {
	color: var(--ah-text);
	text-decoration: none;
}

.ah-job-card__title a:hover {
	color: var(--ah-primary);
}

.ah-job-card__meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8125rem;
	color: var(--ah-muted);
}

.ah-job-card__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.ah-job-card__right {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}

.ah-bookmark-btn {
	background: none;
	border: none;
	color: #94a3b8;
	cursor: pointer;
	padding: 0.4rem;
	display: inline-flex;
	transition: color 0.15s;
}

.ah-bookmark-btn:hover {
	color: var(--ah-primary);
}

/* ==========================================================================
   9. RESUME CTA BANNER
   ========================================================================== */
.ah-resume-banner {
	background: linear-gradient(135deg, #eff6ff 0%, #e0f2fe 100%);
	border: 1px solid #bfdbfe;
	border-radius: var(--ah-radius-xl);
	padding: 2.25rem 2.5rem;
	margin-top: 2rem;
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 2rem;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.ah-resume-banner__title {
	font-size: 1.75rem;
	font-weight: 800;
	margin-bottom: 0.75rem;
	color: var(--ah-text);
}

.ah-resume-banner__desc {
	font-size: 0.9375rem;
	color: var(--ah-muted);
	margin-bottom: 1.5rem;
}

.ah-resume-banner__badges {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ah-resume-trust-item {
	background-color: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: var(--ah-radius-full);
	padding: 0.5rem 1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--ah-text);
	box-shadow: var(--ah-shadow-sm);
}

/* ==========================================================================
   10. SIDEBAR WIDGETS
   ========================================================================== */
.ah-sidebar-widget {
	background-color: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	padding: 1.75rem;
	box-shadow: var(--ah-shadow-sm);
	margin-bottom: 1.5rem;
}

.ah-newsletter-widget {
	background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
	border-color: #bfdbfe;
	text-align: center;
}

.ah-newsletter-widget__title {
	font-size: 1.25rem;
	font-weight: 800;
	margin-bottom: 0.5rem;
}

.ah-newsletter-widget__desc {
	font-size: 0.875rem;
	color: var(--ah-muted);
	margin-bottom: 1.25rem;
}

.ah-newsletter-form {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.ah-input-text {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid #cbd5e1;
	border-radius: var(--ah-radius);
	font-family: var(--ah-font-main);
	font-size: 0.875rem;
	outline: none;
	transition: border-color 0.15s, box-shadow 0.15s;
}

.ah-input-text:focus {
	border-color: var(--ah-primary);
	box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.15);
}

/* Career Resources List */
.ah-resources-list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.ah-resource-item {
	display: flex;
	align-items: flex-start;
	gap: 0.875rem;
	text-decoration: none;
	padding: 0.5rem;
	border-radius: var(--ah-radius);
	transition: background 0.15s;
}

.ah-resource-item:hover {
	background-color: var(--ah-surface);
}

.ah-resource-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.ah-resource-title {
	font-family: var(--ah-font-heading);
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--ah-text);
	line-height: 1.2;
}

.ah-resource-desc {
	font-size: 0.75rem;
	color: var(--ah-muted);
	margin-top: 2px;
}

/* ==========================================================================
   11. ARTICLES GRID
   ========================================================================== */
.ah-articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}

.ah-article-card {
	background-color: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	overflow: hidden;
	box-shadow: var(--ah-shadow-sm);
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
}

.ah-article-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--ah-shadow-md);
	border-color: #cbd5e1;
}

.ah-article-card__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	background-color: #f1f5f9;
}

.ah-article-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.ah-article-card:hover .ah-article-card__thumb img {
	transform: scale(1.05);
}

.ah-article-card__badge {
	position: absolute;
	bottom: 0.75rem;
	left: 0.75rem;
	background-color: var(--ah-primary);
	color: #ffffff;
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.25rem 0.625rem;
	border-radius: var(--ah-radius-full);
}

.ah-article-card__content {
	padding: 1.25rem;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.ah-article-card__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0.75rem;
}

.ah-article-card__title a {
	color: var(--ah-text);
}

.ah-article-card__title a:hover {
	color: var(--ah-primary);
}

.ah-article-card__date {
	font-size: 0.75rem;
	color: var(--ah-muted);
}

/* ==========================================================================
   12. DARK FOOTER
   ========================================================================== */
.ah-footer {
	background-color: var(--ah-dark);
	color: #94a3b8;
	padding-top: 4.5rem;
	padding-bottom: 2rem;
	border-top: 1px solid #1e293b;
}

.ah-footer a {
	color: #cbd5e1;
	transition: color 0.15s;
}

.ah-footer a:hover {
	color: #ffffff;
}

.ah-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1.3fr;
	gap: 2.5rem;
	margin-bottom: 3.5rem;
}

.ah-footer__brand-title {
	font-family: var(--ah-font-heading);
	font-size: 1.5rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 0.5rem;
}

.ah-footer__brand-desc {
	font-size: 0.875rem;
	line-height: 1.6;
	color: #94a3b8;
	margin-bottom: 1.5rem;
}

.ah-footer__socials {
	display: flex;
	gap: 0.75rem;
}

.ah-footer__social-btn {
	width: 36px;
	height: 36px;
	border-radius: var(--ah-radius-full);
	background-color: #1e293b;
	color: #ffffff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: background 0.15s;
}

.ah-footer__social-btn:hover {
	background-color: var(--ah-primary);
}

.ah-footer__heading {
	font-family: var(--ah-font-heading);
	font-size: 0.9375rem;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 1.25rem;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.ah-footer__menu {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	font-size: 0.875rem;
}

.ah-footer__bottom {
	border-top: 1px solid #1e293b;
	padding-top: 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.8125rem;
	color: #64748b;
}

/* ==========================================================================
   13. BREADCRUMBS
   ========================================================================== */
.ah-breadcrumbs {
	background-color: var(--ah-surface);
	border-bottom: 1px solid var(--ah-border);
	padding: 0.75rem 0;
	font-size: 0.8125rem;
	color: var(--ah-muted);
}

.ah-breadcrumb-list {
	list-style: none;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.ah-breadcrumb-item a {
	color: var(--ah-muted);
}

.ah-breadcrumb-item a:hover {
	color: var(--ah-primary);
}

.ah-breadcrumb-item--current span {
	color: var(--ah-text);
	font-weight: 600;
}

.ah-breadcrumb-separator {
	color: #cbd5e1;
	margin-left: 0.25rem;
}

/* ==========================================================================
   14. BLOG & EDITORIAL RICH TYPOGRAPHY
   ========================================================================== */
.ah-single-article {
	background: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius-lg);
	padding: 2.5rem;
	box-shadow: var(--ah-shadow-sm);
}

.entry-content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: #334155;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	font-family: var(--ah-font-heading);
	color: var(--ah-text);
	font-weight: 700;
	line-height: 1.35;
	margin-top: 2.25rem;
	margin-bottom: 1rem;
}

.entry-content h1 {
	font-size: 2.25rem;
	font-weight: 800;
	border-bottom: 2px solid var(--ah-border);
	padding-bottom: 0.5rem;
}

.entry-content h2 {
	font-size: 1.625rem;
	font-weight: 700;
	color: #0f172a;
	border-bottom: 1px solid var(--ah-border);
	padding-bottom: 0.5rem;
	margin-top: 2.5rem;
}

.entry-content h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e293b;
	margin-top: 1.75rem;
}

.entry-content h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: #334155;
	margin-top: 1.5rem;
}

.entry-content p {
	margin-bottom: 1.5rem;
	font-size: 1.0625rem;
	line-height: 1.8;
}

.entry-content ul,
.entry-content ol {
	margin-bottom: 1.5rem;
	padding-left: 1.75rem;
	line-height: 1.8;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li {
	margin-bottom: 0.5rem;
}

.entry-content li > ul,
.entry-content li > ol {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

.entry-content blockquote {
	margin: 2rem 0;
	padding: 1.25rem 1.75rem;
	border-left: 4px solid var(--ah-primary);
	background: #f0f7ff;
	border-radius: 0 var(--ah-radius) var(--ah-radius) 0;
	font-style: italic;
	color: #1e3a8a;
	font-size: 1.125rem;
	line-height: 1.7;
}

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

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 2rem 0;
	font-size: 0.9375rem;
	background: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius);
	overflow: hidden;
}

.entry-content th,
.entry-content td {
	padding: 0.875rem 1.125rem;
	border: 1px solid var(--ah-border);
	text-align: left;
}

.entry-content th {
	background-color: #f8fafc;
	font-weight: 700;
	color: var(--ah-text);
}

.entry-content tr:nth-child(even) td {
	background-color: #fcfcfd;
}

.entry-content img {
	max-width: 100%;
	height: auto;
	border-radius: var(--ah-radius-lg);
	margin: 1.5rem 0;
	box-shadow: var(--ah-shadow-sm);
}

.entry-content a {
	color: var(--ah-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
}

.entry-content a:hover {
	color: var(--ah-primary-dark);
}

.entry-content code {
	background-color: #f1f5f9;
	color: #0f172a;
	padding: 0.2rem 0.45rem;
	border-radius: 4px;
	font-size: 0.875em;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.entry-content pre {
	background-color: #0f172a;
	color: #f8fafc;
	padding: 1.25rem 1.5rem;
	border-radius: var(--ah-radius);
	overflow-x: auto;
	margin: 1.75rem 0;
	font-size: 0.875rem;
	line-height: 1.6;
}

.entry-content pre code {
	background: transparent;
	color: inherit;
	padding: 0;
	border-radius: 0;
}

/* ==========================================================================
   LIST BULLET INDENTATION FIX (DESKTOP & MOBILE)
   ========================================================================== */
.entry-content ul,
.entry-content ol,
.ah-single-article ul,
.ah-single-article ol,
.ah-job-article ul,
.ah-job-article ol,
.ah-job-details-block ul,
.ah-job-details-block ol {
	margin: 1rem 0 1.5rem 0;
	padding-left: 2rem;
	line-height: 1.75;
	list-style-position: outside;
}

.entry-content ul,
.ah-single-article ul,
.ah-job-article ul,
.ah-job-details-block ul {
	list-style-type: disc;
}

.entry-content ol,
.ah-single-article ol,
.ah-job-article ol,
.ah-job-details-block ol {
	list-style-type: decimal;
}

.entry-content li,
.ah-single-article li,
.ah-job-article li,
.ah-job-details-block li {
	margin-bottom: 0.5rem;
	padding-left: 0.35rem;
	color: var(--ah-text);
}

/* ==========================================================================
   SEARCH OVERLAY & MODAL
   ========================================================================== */
.ah-search-overlay {
	position: fixed;
	inset: 0;
	background: rgba(10, 16, 31, 0.85);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ah-search-overlay.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.ah-search-overlay__content {
	width: 100%;
	max-width: 640px;
	background: #ffffff;
	border-radius: var(--ah-radius-xl);
	padding: 1.5rem;
	box-shadow: var(--ah-shadow-lg);
	transform: translateY(-20px) scale(0.96);
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
}

.ah-search-overlay.active .ah-search-overlay__content {
	transform: translateY(0) scale(1);
}

.ah-search-overlay .ah-search-form {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.ah-search-overlay__input {
	flex: 1;
	font-family: var(--ah-font-main);
	font-size: 1.0625rem;
	padding: 0.875rem 1.25rem;
	border: 2px solid #e2e8f0;
	border-radius: var(--ah-radius-full);
	outline: none;
	transition: border-color 0.2s;
	color: var(--ah-text);
}

.ah-search-overlay__input:focus {
	border-color: var(--ah-primary);
}

.ah-search-overlay__close {
	position: absolute;
	top: -50px;
	right: 0;
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	font-size: 2rem;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	line-height: 1;
	transition: background 0.2s;
}

.ah-search-overlay__close:hover {
	background: rgba(255, 255, 255, 0.4);
}

/* Modal Styling */
.ah-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.ah-modal.active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.ah-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 16, 31, 0.8);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
}

.ah-modal__dialog {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 540px;
	background: #ffffff;
	border-radius: var(--ah-radius-xl);
	padding: 2rem;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	max-height: 92vh;
	overflow-y: auto;
	transform: scale(0.95);
	transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.ah-modal.active .ah-modal__dialog {
	transform: scale(1);
}

.ah-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--ah-border);
}

.ah-modal__title {
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--ah-text);
}

.ah-resume-modal__close {
	background: transparent;
	border: none;
	font-size: 1.75rem;
	line-height: 1;
	color: var(--ah-muted);
	cursor: pointer;
	padding: 4px;
	border-radius: 6px;
	transition: color 0.15s;
}

.ah-resume-modal__close:hover {
	color: var(--ah-text);
}

.ah-input-text {
	width: 100%;
	padding: 0.6875rem 1rem;
	border: 1px solid var(--ah-border);
	border-radius: var(--ah-radius);
	font-family: var(--ah-font-main);
	font-size: 0.9375rem;
	color: var(--ah-text);
	background: #ffffff;
	outline: none;
	transition: border-color 0.2s, box-shadow 0.2s;
}

.ah-input-text:focus {
	border-color: var(--ah-primary);
	box-shadow: 0 0 0 3px rgba(26, 86, 219, 0.12);
}

.ah-form-feedback {
	padding: 0.75rem 1rem;
	border-radius: var(--ah-radius);
	font-size: 0.875rem;
	line-height: 1.4;
	margin-bottom: 1rem;
}

.ah-form-feedback--loading {
	background-color: #eff6ff;
	color: #1e40af;
	border: 1px solid #bfdbfe;
}

.ah-form-feedback--success {
	background-color: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.ah-form-feedback--error {
	background-color: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}
