/**
 * 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--job-alerts {
	background-color: #1a56db;
	color: #ffffff !important;
	border-radius: var(--ah-radius-full);
	padding: 0.55rem 1.25rem;
	font-weight: 700;
	font-size: 0.875rem;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	text-decoration: none;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(26, 86, 219, 0.2);
}

.ah-btn--job-alerts:hover {
	background-color: #1e429f;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(26, 86, 219, 0.35);
}

.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 {
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(226, 232, 240, 0.85);
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.03), 0 6px 20px rgba(15, 23, 42, 0.02);
	transition: background 0.2s ease, box-shadow 0.2s ease;
}

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

/* World-Class Modern Brand Logo */
.ah-brand-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	text-decoration: none;
	flex-shrink: 0;
	white-space: nowrap;
}

.ah-brand-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.28);
	transition: transform 0.2s ease;
}

.ah-brand-logo:hover .ah-brand-icon {
	transform: scale(1.05);
}

.ah-brand-name {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	line-height: 1;
}

.ah-brand-text {
	font-family: var(--ah-font-heading, 'Plus Jakarta Sans', sans-serif);
	font-size: 1.45rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.03em;
}

.ah-brand-accent {
	color: #2563eb;
}

.ah-brand-badge {
	display: inline-block;
	font-size: 0.625rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: #2563eb;
	background: #eff6ff;
	border: 1px solid #dbeafe;
	padding: 0.175rem 0.5rem;
	border-radius: 9999px;
	line-height: 1.2;
}

/* Fallback for legacy class */
.ah-logo {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	text-decoration: none;
	white-space: nowrap;
}
.ah-logo__text {
	font-family: var(--ah-font-heading);
	font-size: 1.45rem;
	font-weight: 800;
	color: #0f172a;
	letter-spacing: -0.03em;
}
.ah-logo__text span {
	color: #2563eb;
}
.ah-logo__tagline {
	display: none; /* Hide multi-line wrapped tagline for clean look */
}

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

.ah-nav__menu {
	display: flex;
	align-items: center;
	list-style: none;
	gap: 0.5rem;
	margin: 0;
	padding: 0;
}

.ah-nav__item {
	position: relative;
}

.ah-nav__link {
	font-family: var(--ah-font-heading, sans-serif);
	font-size: 0.9375rem;
	font-weight: 600;
	color: #334155;
	padding: 0.55rem 0.95rem;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	text-decoration: none;
	border-radius: 8px;
	transition: all 0.15s ease;
	white-space: nowrap;
}

.ah-nav__link:hover,
.ah-nav__item:hover > .ah-nav__link {
	color: #2563eb;
	background: #f0f7ff;
}

.ah-nav__chevron {
	transition: transform 0.2s ease;
	color: #94a3b8;
}

.ah-nav__item:hover > .ah-nav__link .ah-nav__chevron {
	transform: rotate(180deg);
	color: #2563eb;
}

.ah-menu-icon {
	font-size: 1rem;
	margin-right: 0.5rem;
	display: inline-block;
	vertical-align: middle;
}

/* Header Actions & CTA */
.ah-header__actions {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.ah-header__search-toggle {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	cursor: pointer;
	color: #475569;
	width: 38px;
	height: 38px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	transition: all 0.15s ease;
}

.ah-header__search-toggle:hover {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #2563eb;
	transform: translateY(-1px);
}

/* Modern Job Alerts Pill Button */
.ah-btn-job-alerts {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	color: #ffffff !important;
	padding: 0.55rem 1.15rem;
	border-radius: 9999px;
	font-family: var(--ah-font-heading, sans-serif);
	font-size: 0.875rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	white-space: nowrap;
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.ah-btn-job-alerts:hover {
	background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.38);
	transform: translateY(-1px);
	color: #ffffff !important;
}

.ah-btn-job-alerts svg {
	animation: ahBellShake 3s ease infinite;
}

@keyframes ahBellShake {
	0%, 85%, 100% { transform: rotate(0); }
	90% { transform: rotate(14deg); }
	95% { transform: rotate(-14deg); }
}

.ah-hamburger {
	display: none;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	cursor: pointer;
	padding: 0.5rem;
	color: #334155;
	border-radius: 8px;
}

/* ==========================================================================
   4. HERO SECTION (EXACT REFERENCE DESIGN MATCH)
   ========================================================================== */
.ah-hero-v2 {
	background: #f8fafc;
	padding-top: 3.5rem;
	padding-bottom: 3.5rem;
	position: relative;
	overflow: hidden;
}

.ah-hero-v2__main-row {
	display: grid;
	grid-template-columns: 1.15fr 1fr 0.85fr;
	gap: 2.25rem;
	align-items: center;
	margin-bottom: 2.5rem;
}

/* Left Intro Column */
.ah-hero-v2__tag {
	font-family: var(--ah-font-heading);
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--ah-primary);
	letter-spacing: 0.02em;
	margin-bottom: 0.875rem;
}

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

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

.ah-hero-v2__subtext {
	font-size: 1.0625rem;
	color: var(--ah-muted);
	line-height: 1.6;
	margin-bottom: 2rem;
	max-width: 480px;
}

.ah-hero-v2__cta-group {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.ah-btn--hero-v2 {
	padding: 0.8125rem 1.5rem;
	font-size: 0.9375rem;
	border-radius: 12px;
	gap: 0.6rem;
}

/* Center Candidate Column */
.ah-hero-v2__center-media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 380px;
}

.ah-hero-v2__deco-shape {
	position: absolute;
	border-radius: 50%;
	z-index: 0;
}

.ah-deco--orange {
	width: 220px;
	height: 220px;
	background: #fef08a;
	bottom: 20px;
	left: 10px;
	opacity: 0.85;
}

.ah-deco--blue {
	width: 240px;
	height: 240px;
	background: #bfdbfe;
	top: 30px;
	right: 15px;
	opacity: 0.75;
}

.ah-hero-v2__deco-dots {
	position: absolute;
	top: 15px;
	left: 30px;
	width: 70px;
	height: 70px;
	background-image: radial-gradient(#94a3b8 1.5px, transparent 1.5px);
	background-size: 10px 10px;
	z-index: 0;
	opacity: 0.5;
}

.ah-hero-v2__photo {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 380px;
	height: auto;
	object-fit: contain;
	border-radius: 20px;
	filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.08));
	display: block;
}

/* Right Floating Stat Box with Upload CV */
.ah-hero-v2__right-card {
	display: flex;
	justify-content: flex-end;
}

.ah-hero-stat-box {
	background: #ffffff;
	border: 1px solid var(--ah-border);
	border-radius: 20px;
	padding: 1.75rem 1.5rem;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
	width: 100%;
	max-width: 320px;
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.ah-hero-stat-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}

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

.ah-stat-icon--cyan { background: #e0f2fe; color: #0284c7; }
.ah-stat-icon--teal { background: #e0f7fa; color: #0369a1; }
.ah-stat-icon--rose { background: #ffe4e6; color: #e11d48; }

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

.ah-stat-label {
	font-size: 0.8125rem;
	color: var(--ah-muted);
	margin-top: 2px;
}

/* Upload Your CV Button */
.ah-btn-upload-cv {
	width: 100%;
	margin-top: 0.5rem;
	background: #f59e0b;
	color: #ffffff;
	border: none;
	border-radius: 12px;
	padding: 0.8125rem 1.25rem;
	font-family: var(--ah-font-heading);
	font-size: 0.9375rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.ah-btn-upload-cv:hover {
	background: #d97706;
	box-shadow: 0 6px 16px rgba(245, 158, 11, 0.35);
	transform: translateY(-1px);
}

/* Bottom Dark Navy Search Container */
.ah-hero-v2__search-banner {
	background: linear-gradient(135deg, #0a101f 0%, #0f172a 100%);
	border-radius: 20px;
	padding: 1.5rem 1.75rem;
	box-shadow: 0 20px 40px rgba(10, 16, 31, 0.25);
}

.ah-v2-search-pill {
	background: #ffffff;
	border-radius: 12px;
	padding: 0.4rem 0.5rem 0.4rem 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.ah-v2-search-col {
	display: flex;
	align-items: center;
	gap: 0.6rem;
}

.ah-v2-search-col--keyword {
	flex: 1.5;
}

.ah-v2-search-col--cat {
	flex: 1;
}

.ah-v2-search-col--loc {
	flex: 1;
}

.ah-v2-search-icon {
	color: var(--ah-muted);
	display: flex;
	align-items: center;
}

.ah-v2-input {
	width: 100%;
	border: none;
	background: transparent;
	font-family: var(--ah-font-main);
	font-size: 0.9375rem;
	color: var(--ah-text);
	outline: none;
}

.ah-v2-select {
	width: 100%;
	border: none;
	background: transparent;
	font-family: var(--ah-font-main);
	font-size: 0.9375rem;
	color: var(--ah-text);
	outline: none;
	cursor: pointer;
}

.ah-v2-search-divider {
	width: 1px;
	height: 28px;
	background: #e2e8f0;
	flex-shrink: 0;
}

.ah-v2-search-btn {
	padding: 0.75rem 1.625rem;
	font-size: 0.9375rem;
	border-radius: 10px;
	white-space: nowrap;
}

/* Popular Searches Underneath */
.ah-v2-popular-line {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.6rem;
	margin-top: 1.125rem;
	font-size: 0.8125rem;
}

.ah-v2-popular-label {
	color: #64748b;
	font-weight: 600;
	margin-right: 0.25rem;
}

.ah-v2-popular-pills {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.ah-v2-popular-tag {
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #e2e8f0;
	padding: 0.25rem 0.75rem;
	border-radius: var(--ah-radius-full);
	text-decoration: none;
	font-size: 0.8125rem;
	transition: all 0.15s;
}

.ah-v2-popular-tag:hover {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   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;
}

/* ==========================================================================
   21. UNIFIED EXACT JOB CARD & ARCHIVE STYLES (v3.5.0)
   ========================================================================== */

/* Filter Tabs */
.ah-homepage-filter-tabs {
	display: flex;
	gap: 0.5rem;
	flex-wrap: wrap;
	margin-bottom: 1.25rem;
}
.ah-tab-pill {
	background: #f1f5f9;
	color: #475569;
	font-size: 0.8125rem;
	font-weight: 600;
	padding: 0.35rem 0.95rem;
	border-radius: 9999px;
	text-decoration: none;
	border: 1px solid #e2e8f0;
	transition: all 0.15s ease;
}
.ah-tab-pill:hover,
.ah-tab-pill.active {
	background: #2563eb;
	color: #ffffff;
	border-color: #2563eb;
}

/* Exact Job Card Layout - Used on Homepage, Archives, Taxonomies & Feeds */
.ah-exact-job-card,
.ah-job-card-ref {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.15rem 1.35rem;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 16px;
	margin-bottom: 0.85rem;
	box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
	transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
	gap: 1.25rem;
	text-decoration: none;
	position: relative;
}
.ah-exact-job-card:hover,
.ah-job-card-ref:hover {
	border-color: #93c5fd;
	box-shadow: 0 8px 24px rgba(37, 99, 235, 0.09);
	transform: translateY(-2px);
}

.ah-ejc-left,
.ah-card-ref__left {
	display: flex;
	align-items: center;
	gap: 1.15rem;
	flex: 1;
	min-width: 0;
}
.ah-ejc-logo-wrap,
.ah-card-ref__logo-col,
.ah-card-ref__logo-box {
	width: 58px;
	height: 58px;
	min-width: 58px;
	border: 1.5px solid #e2e8f0;
	border-radius: 14px;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 5px;
	flex-shrink: 0;
	box-shadow: 0 2px 8px rgba(0,0,0,0.03);
	overflow: hidden;
	box-sizing: border-box;
}

.ah-ejc-logo,
.ah-card-ref__logo-img,
.ah-ejc-logo-wrap img,
.ah-ejc-logo-wrap .ah-company-avatar,
.ah-card-ref__logo-col img,
.ah-card-ref__logo-col .ah-company-avatar {
	max-width: 100% !important;
	max-height: 100% !important;
	width: 100% !important;
	height: 100% !important;
	min-width: 0 !important;
	min-height: 0 !important;
	object-fit: contain !important;
	border: none !important;
	box-shadow: none !important;
	padding: 0 !important;
	background: transparent !important;
	border-radius: 0 !important;
}

.ah-ejc-logo-wrap .ah-avatar-fallback {
	width: 100% !important;
	height: 100% !important;
	border-radius: 10px !important;
	background: linear-gradient(135deg, #1a56db 0%, #0ea5e9 100%) !important;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.25rem;
}

.ah-ejc-content,
.ah-card-ref__body {
	flex: 1;
	min-width: 0;
}
.ah-ejc-title,
.ah-card-ref__title {
	font-family: var(--ah-font-heading, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.35;
	color: #0f172a;
	margin: 0 0 0.4rem 0;
}
.ah-ejc-title a,
.ah-card-ref__title a {
	color: #0f172a;
	text-decoration: none;
	transition: color 0.15s;
}
.ah-ejc-title a:hover,
.ah-card-ref__title a:hover {
	color: #2563eb;
}
.ah-ejc-meta,
.ah-card-ref__bottom-meta {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.85rem;
}
.ah-ejc-meta-item,
.ah-card-ref__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.78125rem;
	color: #64748b;
}
.ah-ejc-meta-item svg,
.ah-card-ref__meta-item svg {
	color: #64748b;
	flex-shrink: 0;
}

/* Right Badges & Actions */
.ah-ejc-right,
.ah-card-ref__cta-col {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}
.ah-ejc-badges-col {
	display: flex;
	align-items: center;
	gap: 0.45rem;
}
.ah-exact-badge {
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.25rem 0.65rem;
	border-radius: 9999px;
	white-space: nowrap;
}
.ah-badge--green  { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.ah-badge--pink   { background: #fdf2f8; color: #db2777; border: 1px solid #fbcfe8; }
.ah-badge--orange { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }
.ah-badge--gray   { background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; }

.ah-ejc-action-col {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.35rem;
}
.ah-ejc-top-row {
	display: flex;
	align-items: center;
	gap: 0.65rem;
}
.ah-bookmark-btn {
	background: transparent;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	cursor: pointer;
	transition: all 0.15s ease;
	padding: 0;
}
.ah-bookmark-btn:hover,
.ah-bookmark-btn.active {
	color: #2563eb;
	border-color: #93c5fd;
	background: #eff6ff;
}
.ah-btn-apply-pill,
.ah-btn--read-more {
	background: #2563eb;
	color: #ffffff !important;
	border-radius: 9999px;
	padding: 0.5rem 1.15rem;
	font-family: var(--ah-font-heading, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
	font-size: 0.84375rem;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	text-decoration: none;
	white-space: nowrap;
	transition: all 0.15s ease;
	box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
	border: none;
}
.ah-btn-apply-pill:hover,
.ah-btn--read-more:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
}
.ah-ejc-timestamp {
	font-size: 0.6875rem;
	color: #64748b;
}

@media (max-width: 900px) {
	.ah-exact-job-card,
	.ah-job-card-ref {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.85rem;
	}
	.ah-ejc-right,
	.ah-card-ref__cta-col {
		width: 100%;
		justify-content: space-between;
	}
}
@media (max-width: 640px) {
	.ah-exact-job-card,
	.ah-job-card-ref {
		padding: 1rem;
	}
	.ah-ejc-logo-wrap,
	.ah-card-ref__logo-box {
		width: 44px;
		height: 44px;
		min-width: 44px;
	}
	.ah-ejc-title,
	.ah-card-ref__title {
		font-size: 0.875rem;
	}
}

/* ==========================================================================
   21. HEADER POST JOB, BELL ALERT & USER MENU
   ========================================================================== */
.ah-btn-post-job {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	background: #2563eb;
	color: #ffffff !important;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-family: var(--ah-font-heading, sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.15s ease;
	white-space: nowrap;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.ah-btn-post-job:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.ah-btn-bell-alert {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #475569;
	position: relative;
	transition: all 0.15s ease;
	text-decoration: none;
}
.ah-btn-bell-alert:hover {
	background: #eff6ff;
	border-color: #bfdbfe;
	color: #2563eb;
}
.ah-bell-dot {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ef4444;
	border: 2px solid #ffffff;
	animation: ahPulse 2s infinite;
}
@keyframes ahPulse {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.ah-btn-login {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1.15rem;
	background: #ffffff;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	color: #1e293b;
	font-family: var(--ah-font-heading, sans-serif);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ah-btn-login:hover {
	background: #f8fafc;
	border-color: #64748b;
	color: #2563eb;
}

/* User Account Chip & Dropdown */
.ah-user-menu-wrap {
	position: relative;
}
.ah-user-chip {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	border-radius: 9999px;
	padding: 0.35rem 0.75rem;
	cursor: pointer;
	transition: all 0.15s ease;
	font-family: var(--ah-font-heading, sans-serif);
}
.ah-user-chip:hover {
	background: #e2e8f0;
}
.ah-user-avatar {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #2563eb;
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}
.ah-user-name {
	font-size: 0.84375rem;
	font-weight: 600;
	color: #1e293b;
	max-width: 110px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ah-user-dropdown {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	min-width: 200px;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
	list-style: none;
	padding: 0.5rem 0;
	margin: 0;
	z-index: 1000;
	display: none;
}
.ah-user-menu-wrap.active .ah-user-dropdown {
	display: block;
}
.ah-user-drop-link {
	display: block;
	padding: 0.55rem 1rem;
	font-size: 0.875rem;
	color: #334155;
	text-decoration: none;
	transition: background 0.15s ease;
}
.ah-user-drop-link:hover {
	background: #f8fafc;
	color: #2563eb;
}
.ah-user-drop-divider {
	height: 1px;
	background: #f1f5f9;
	margin: 0.35rem 0;
}

/* ==========================================================================
   22. MASTER AUTH MODAL (Exact match for media_1789730186975.jpg)
   ========================================================================== */
.ah-auth-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.5rem;
}
.ah-auth-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.6);
	backdrop-filter: blur(4px);
}
.ah-auth-card {
	position: relative;
	background: #ffffff;
	border-radius: 24px;
	width: 100%;
	max-width: 980px;
	max-height: 90vh;
	overflow-y: auto;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
	z-index: 1;
	border: 1px solid rgba(226, 232, 240, 0.8);
}
.ah-auth-close {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f1f5f9;
	border: none;
	font-size: 1.5rem;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: #64748b;
	z-index: 10;
	transition: all 0.15s ease;
}
.ah-auth-close:hover {
	background: #e2e8f0;
	color: #0f172a;
}
.ah-auth-grid {
	display: grid;
	grid-template-columns: 1fr 1.08fr;
	min-height: 560px;
}

/* Left Showcase */
.ah-auth-showcase {
	background: linear-gradient(145deg, #f0fdf4 0%, #f0f7ff 50%, #faf5ff 100%);
	padding: 2.5rem;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-radius: 24px 0 0 24px;
	border-right: 1px solid #e2e8f0;
}
.ah-auth-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1.5rem;
}
.ah-auth-brand-name {
	font-size: 1.25rem;
	font-weight: 800;
	color: #0f172a;
	display: block;
}
.ah-auth-brand-tagline {
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 500;
}
.ah-sticky-note {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: #fef08a;
	padding: 0.875rem 1rem;
	border-radius: 4px;
	box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.08);
	transform: rotate(4deg);
	max-width: 140px;
	font-size: 0.75rem;
	line-height: 1.25;
	color: #713f12;
	border: 1px solid #fde047;
}
.ah-sticky-pin {
	width: 10px;
	height: 10px;
	background: #ef4444;
	border-radius: 50%;
	margin: 0 auto 4px auto;
}
.ah-auth-headline {
	font-size: 1.75rem;
	font-weight: 800;
	line-height: 1.2;
	color: #0f172a;
	margin-bottom: 0.75rem;
}
.ah-headline-blue {
	color: #2563eb;
}
.ah-auth-subhead {
	font-size: 0.875rem;
	color: #475569;
	line-height: 1.5;
	margin-bottom: 1.5rem;
}
.ah-benefit-list {
	list-style: none;
	padding: 0;
	margin: 0 0 1.5rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}
.ah-benefit-item {
	display: flex;
	align-items: center;
	gap: 0.875rem;
}
.ah-benefit-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.ah-icon--purple { background: #f3e8ff; color: #9333ea; }
.ah-icon--green  { background: #dcfce7; color: #16a34a; }
.ah-icon--blue   { background: #e0f2fe; color: #0284c7; }
.ah-icon--orange { background: #ffedd5; color: #ea580c; }

.ah-benefit-title {
	display: block;
	font-size: 0.875rem;
	color: #0f172a;
	font-weight: 700;
}
.ah-benefit-desc {
	display: block;
	font-size: 0.75rem;
	color: #64748b;
}
.ah-handwritten-note {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	color: #2563eb;
	font-weight: 700;
	margin-bottom: 1rem;
}
.ah-showcase-stats {
	display: flex;
	gap: 0.625rem;
	flex-wrap: wrap;
}
.ah-stat-chip {
	background: #ffffff;
	border-radius: 12px;
	padding: 0.5rem 0.75rem;
	border: 1px solid #e2e8f0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.ah-stat-icon-wrap {
	width: 26px;
	height: 26px;
	border-radius: 6px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ah-stat-chip strong {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #0f172a;
	display: block;
	line-height: 1;
}
.ah-stat-chip span {
	font-size: 0.6875rem;
	color: #64748b;
	display: block;
	line-height: 1.2;
}

/* Right Forms Column */
.ah-auth-forms {
	padding: 2.5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.ah-auth-tabs {
	display: flex;
	background: #f1f5f9;
	border-radius: 12px;
	padding: 4px;
	margin-bottom: 1.5rem;
	gap: 4px;
}
.ah-auth-tab {
	flex: 1;
	border: none;
	background: transparent;
	padding: 0.65rem 1rem;
	border-radius: 8px;
	font-weight: 600;
	font-size: 0.875rem;
	color: #64748b;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ah-auth-tab.active {
	background: #ffffff;
	color: #2563eb;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}
.ah-auth-panel {
	display: none;
}
.ah-auth-panel.active {
	display: block;
}
.ah-panel-header {
	margin-bottom: 1.25rem;
}
.ah-panel-title {
	font-size: 1.35rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 0.25rem;
}
.ah-panel-subtitle {
	font-size: 0.85rem;
	color: #64748b;
}

/* Role Selector (Candidate vs Employer) */
.ah-role-selector {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}
.ah-role-option {
	border: 1.5px solid #e2e8f0;
	border-radius: 12px;
	padding: 0.75rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ah-role-option input {
	display: none;
}
.ah-role-option.active,
.ah-role-option:has(input:checked) {
	border-color: #2563eb;
	background: #eff6ff;
}
.ah-role-icon {
	font-size: 1.25rem;
}
.ah-role-title {
	font-size: 0.84375rem;
	font-weight: 700;
	color: #0f172a;
	display: block;
}
.ah-role-desc {
	font-size: 0.7rem;
	color: #64748b;
	display: block;
}

/* Auth Fields */
.ah-auth-field-group {
	margin-bottom: 1rem;
}
.ah-field-label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 0.35rem;
}
.ah-input-icon-wrap {
	position: relative;
	display: flex;
	align-items: center;
}
.ah-input-lead-icon {
	position: absolute;
	left: 0.875rem;
	color: #64748b;
	pointer-events: none;
}
.ah-auth-input {
	width: 100%;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	padding: 0.65rem 0.875rem 0.65rem 2.5rem;
	font-size: 0.875rem;
	color: #0f172a;
	transition: all 0.15s ease;
	background: #ffffff;
}
.ah-auth-input:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}
.ah-toggle-pass-btn {
	position: absolute;
	right: 0.75rem;
	background: none;
	border: none;
	color: #64748b;
	cursor: pointer;
	padding: 0.25rem;
}
.ah-auth-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1.25rem;
	font-size: 0.8125rem;
}
.ah-remember-label {
	display: flex;
	align-items: center;
	gap: 0.45rem;
	color: #475569;
	cursor: pointer;
}
.ah-forgot-link {
	background: none;
	border: none;
	color: #2563eb;
	font-weight: 600;
	cursor: pointer;
	font-size: 0.8125rem;
	padding: 0;
}
.ah-auth-submit-btn {
	width: 100%;
	background: #2563eb;
	color: #ffffff;
	border: none;
	border-radius: 10px;
	padding: 0.75rem 1.25rem;
	font-size: 0.9375rem;
	font-weight: 700;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}
.ah-auth-submit-btn:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}
.ah-auth-divider {
	position: relative;
	text-align: center;
	margin: 1.25rem 0;
}
.ah-auth-divider::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 1px;
	background: #e2e8f0;
}
.ah-auth-divider span {
	position: relative;
	background: #ffffff;
	padding: 0 0.75rem;
	font-size: 0.75rem;
	color: #64748b;
	font-weight: 600;
}
.ah-social-auth-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}
.ah-social-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border: 1px solid #cbd5e1;
	border-radius: 10px;
	background: #ffffff;
	padding: 0.6rem 0.75rem;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #334155;
	cursor: pointer;
	transition: all 0.15s ease;
}
.ah-social-btn:hover {
	background: #f8fafc;
	border-color: #64748b;
}
.ah-auth-feedback {
	display: none;
	padding: 0.65rem 0.875rem;
	border-radius: 8px;
	font-size: 0.8125rem;
	margin-bottom: 1rem;
}
.ah-auth-feedback.is-error {
	display: block;
	background: #fef2f2;
	color: #b91c1c;
	border: 1px solid #fecaca;
}
.ah-auth-feedback.is-success {
	display: block;
	background: #f0fdf4;
	color: #15803d;
	border: 1px solid #bbf7d0;
}

@media (max-width: 768px) {
	.ah-auth-grid {
		grid-template-columns: 1fr;
	}
	.ah-auth-showcase {
		display: none;
	}
	.ah-auth-card {
		width: 95%;
		max-height: 90vh;
		border-radius: 20px;
		position: relative;
	}
	.ah-auth-close {
		top: 1rem !important;
		right: 1rem !important;
		width: 32px !important;
		height: 32px !important;
		font-size: 1.25rem !important;
		background: #f1f5f9;
		z-index: 20;
	}
	.ah-auth-forms {
		padding: 1.25rem 1.15rem 1.75rem 1.15rem !important;
	}
	.ah-auth-tabs {
		margin-right: 2.75rem !important; /* Never overlaps close button! */
		margin-bottom: 1.25rem !important;
	}
	.ah-panel-title {
		font-size: 1.25rem !important;
	}
	.ah-role-selector {
		gap: 0.5rem !important;
	}
	.ah-role-option {
		padding: 0.65rem 0.5rem !important;
	}
	.ah-role-icon {
		font-size: 1.2rem !important;
	}
}

/* ==========================================================================
   23. PAGINATION, LOAD MORE & EXPLORE ALL JOBS
   ========================================================================== */
.ah-pagination-wrap {
	margin-top: 2.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}
.ah-pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 0.75rem;
	margin: 0 0.25rem;
	border-radius: 8px;
	border: 1px solid #e2e8f0;
	background: #ffffff;
	color: #334155;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.15s ease;
}
.ah-pagination-wrap .page-numbers:hover {
	border-color: #93c5fd;
	background: #eff6ff;
	color: #2563eb;
}
.ah-pagination-wrap .page-numbers.current {
	background: #2563eb;
	border-color: #2563eb;
	color: #ffffff;
	box-shadow: 0 2px 6px rgba(37, 99, 235, 0.25);
}
.ah-pagination-wrap .page-numbers.dots {
	border: none;
	background: transparent;
	color: #64748b;
}

.ah-jobs-nav-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
	flex-wrap: wrap;
}
.ah-btn-load-more {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: #ffffff;
	color: #2563eb;
	border: 1.5px solid #2563eb;
	border-radius: 9999px;
	padding: 0.7rem 1.5rem;
	font-family: var(--ah-font-heading, sans-serif);
	font-size: 0.9375rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 2px 4px rgba(37, 99, 235, 0.06);
}
.ah-btn-load-more:hover {
	background: #2563eb;
	color: #ffffff;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
	transform: translateY(-1px);
}
.ah-btn-load-more:disabled {
	opacity: 0.5;
	cursor: not-allowed;
	transform: none;
}
.ah-btn-explore-all {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	background: #f1f5f9;
	color: #334155;
	border-radius: 9999px;
	padding: 0.7rem 1.4rem;
	font-family: var(--ah-font-heading, sans-serif);
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.15s ease;
}
.ah-btn-explore-all:hover {
	background: #e2e8f0;
	color: #0f172a;
}


