/* Homepage-specific styles (extracted from index.html inline <style> blocks) */

/* ========== Hero FEM Mesh Background ========== */

.hero-mesh-bg {
	position: absolute;
	inset: 0;
	overflow: hidden;
	pointer-events: none;
	z-index: 0;
}

/* Gradient fade: header color at top/bottom edges → transparent in center */
.hero-mesh-bg::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to bottom,
		#0f172a 0%,
		rgba(15, 23, 42, 0.4) 5%,
		transparent 15%,
		transparent 85%,
		rgba(15, 23, 42, 0.4) 95%,
		#0f172a 100%
	);
}

#hero-fem-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero-image-layer {
	position: absolute;
	inset: 0;
	background: url("../../images/Hero_Section.png") center center / auto 100% no-repeat;
	z-index: 1;
	pointer-events: none;
}
.hero-image-layer::after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		to bottom,
		#0f172a 0%,
		rgba(15, 23, 42, 0.35) 4%,
		transparent 12%,
		transparent 88%,
		rgba(15, 23, 42, 0.35) 96%,
		#0f172a 100%
	);
}

/* Floating ambient orbs */
.hero-orb {
	position: absolute;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: blur(50px);
	opacity: 0.12;
}
/* Same orb intensity for both themes */

.hero-orb.orb-1 {
	width: 340px; height: 340px;
	top: -80px; right: -60px;
	background: radial-gradient(circle, #18a9a8, transparent 70%);
	animation: heroOrbFloat 15s ease-in-out infinite;
}
.hero-orb.orb-2 {
	width: 240px; height: 240px;
	bottom: 20px; left: -40px;
	background: radial-gradient(circle, #6366f1, transparent 70%);
	animation: heroOrbFloat 20s ease-in-out infinite reverse;
}
.hero-orb.orb-3 {
	width: 180px; height: 180px;
	top: 38%; left: 55%;
	background: radial-gradient(circle, #2dd4bf, transparent 70%);
	animation: heroOrbFloat 18s ease-in-out infinite 4s;
}

@keyframes heroOrbFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	33%      { transform: translate(18px, -24px) scale(1.06); }
	66%      { transform: translate(-12px, 12px) scale(0.96); }
}

/* Remove gap between banner bottom and next section */
body.homepage #header {
	padding-bottom: 0;
}

/* Footer brand icon hover effect for index.html only */
#footer ul.social li a.icon.brands:hover {
	background: #18a9a8 !important;
	transition: background 0.2s;
}

/* Research Projects section - modern grid & cards (3 per row) */
.project-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 1.75rem;
	margin-top: 0.5rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.project-grid .project-card-modern {
	min-width: 0;
}
.project-card-modern {
	background: var(--project-card-bg, #fff);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--project-card-border, transparent);
}
.project-card-modern:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	border-color: var(--project-card-border-hover, transparent);
}
.project-card-image {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.project-card-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}
.project-card-modern:hover .project-card-image img {
	transform: scale(1.05);
}
.project-card-image a { display: block; }
.project-card-content {
	padding: 1.25rem 1.4rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.project-card-content h3 {
	margin: 0 0 0.6rem 0;
	font-size: 1.12rem;
	line-height: 1.35;
}
.project-card-content h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.project-card-content h3 a:hover { color: #18a9a8; }
.project-card-content .project-excerpt {
	color: var(--project-text-color, #666);
	line-height: 1.7;
	margin-bottom: 1rem;
	flex: 1;
	text-align: justify;
	font-size: 1rem;
}
.project-read-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #18a9a8, #0d7377);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}
.project-read-btn:hover {
	background: linear-gradient(135deg, #0d7377, #18a9a8);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(24, 169, 168, 0.4);
	color: #fff;
}
[data-theme="dark"] .project-card-modern {
	--project-card-bg: #252525;
	--project-card-border: #3a3a3a;
	--project-card-border-hover: #4a4a4a;
	--project-text-color: #d0d0d0;
}
[data-theme="dark"] .project-card-modern:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* Blog Entries section - modern grid & cards (3 per row) */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 1.75rem;
	margin-top: 0.5rem;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
}
.blog-grid .blog-card-modern {
	min-width: 0;
}
.blog-card-modern {
	background: var(--blog-card-bg, #fff);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--blog-card-border, transparent);
}
.blog-card-modern:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	border-color: var(--blog-card-border-hover, transparent);
}
.blog-card-image {
	position: relative;
	width: 100%;
	overflow: hidden;
}
.blog-card-image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}
.blog-card-modern:hover .blog-card-image img {
	transform: scale(1.05);
}
.blog-card-image a { display: block; }
.blog-card-content {
	padding: 1.25rem 1.4rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}
.blog-card-content h3 {
	margin: 0 0 0.4rem 0;
	font-size: 1.12rem;
	line-height: 1.35;
}
.blog-card-content h3 a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}
.blog-card-content h3 a:hover { color: #18a9a8; }
.blog-card-content .blog-meta {
	color: var(--blog-meta-color, #737373);
	font-size: 0.9rem;
	margin: 0 0 0.5rem 0;
	line-height: 1.3;
}
.blog-card-content .blog-excerpt {
	color: var(--blog-text-color, #666);
	line-height: 1.7;
	margin-bottom: 0.9rem;
	flex: 1;
	text-align: justify;
	font-size: 1rem;
}
.blog-read-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #18a9a8, #0d7377);
	color: #fff;
	border: none;
	border-radius: 8px;
	font-size: 0.9rem;
	font-weight: 600;
	transition: all 0.3s ease;
	text-decoration: none;
}
.blog-read-btn:hover {
	background: linear-gradient(135deg, #0d7377, #18a9a8);
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(24, 169, 168, 0.4);
	color: #fff;
}
[data-theme="dark"] .blog-card-modern {
	--blog-card-bg: #252525;
	--blog-card-border: #3a3a3a;
	--blog-card-border-hover: #4a4a4a;
	--blog-meta-color: #b0b0b0;
	--blog-text-color: #d0d0d0;
}
[data-theme="dark"] .blog-card-modern:hover {
	box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

/* Minimalist Visit Counter */
.visit-counter-minimal {
	display: inline-flex;
	align-items: center;
	gap: 0.6em;
	padding: 0.6em 1.2em;
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.95));
	border-radius: 50px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	font-family: 'Source Sans Pro', sans-serif;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.visit-counter-minimal:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(24, 169, 168, 0.3);
}
.visit-counter-minimal .counter-dot {
	width: 8px;
	height: 8px;
	background: var(--accent-primary);
	border-radius: 50%;
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.5; }
}
.visit-counter-minimal .counter-text {
	color: #6b7280;
	font-size: 0.85em;
	font-weight: 400;
}
.visit-counter-minimal .counter-number {
	color: var(--accent-primary);
	font-weight: 700;
	font-size: 0.95em;
}

/* Homepage: reduce gap between banner and About Me (desktop) */
body.homepage #main {
	padding-top: 3.00rem;
}
body.homepage #main .container .row > .col-12:first-child {
	padding-top: 1rem;
}

/* Homepage mobile: remove gap so no blue or light strip between banner and About Me */
@media screen and (max-width: 737px) {
	body.homepage #intro {
		display: none;
	}
	body.homepage #header {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	body.homepage #header #banner {
		padding: 14em 0 1.25em 0;
		background-size: cover;
		background-position: center center;
	}
	body.homepage #main {
		padding-top: 0.5rem;
	}
}

/* About Me section – modern refinement, keep map proportion */
#about-me {
	margin-bottom: 1.5rem;
	padding: 1rem 0 2rem 0;
}
#about-me .row {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-start;
	gap: 0.5rem;
	justify-content: flex-start;
}
#about-me .row > .col-6.col-12-medium {
	width: calc(50% - 0.25rem) !important;
	max-width: calc(50% - 0.25rem) !important;
	flex: 0 0 calc(50% - 0.25rem) !important;
	box-sizing: border-box;
	min-width: 0;
}
#about-me .col-6.col-12-medium:first-child {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}
#about-me .col-6.col-12-medium:last-child {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
}
/* --- Quote Card --- */
.about-quote-card {
	position: relative;
	padding: 1.5rem 3.5rem 1.3rem 1.6rem;
	margin-bottom: 0.75rem;
	background: linear-gradient(135deg, rgba(24, 169, 168, 0.06) 0%, rgba(99, 102, 241, 0.04) 100%);
	border: 1px solid rgba(24, 169, 168, 0.12);
	border-radius: 16px;
	overflow: hidden;
}
.about-quote-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--accent-primary, #18a9a8), #6366f1);
	opacity: 0.8;
}
.about-quote-card::after {
	content: '\201D';
	position: absolute;
	bottom: -0.3rem;
	right: 1rem;
	font-size: 6rem;
	font-family: Georgia, 'Times New Roman', serif;
	line-height: 1;
	background: linear-gradient(135deg, rgba(24, 169, 168, 0.12), rgba(99, 102, 241, 0.08));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	pointer-events: none;
}
.about-quote-inner {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
}
.about-quote-glyph {
	flex-shrink: 0;
	font-size: 3.2rem;
	font-family: Georgia, 'Times New Roman', serif;
	line-height: 0.8;
	background: linear-gradient(135deg, var(--accent-primary, #18a9a8), #6366f1);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	user-select: none;
}
.about-quote-text {
	margin: 0;
	padding: 0;
	border: none;
	font-size: 1.05rem;
	font-style: italic;
	line-height: 1.65;
	color: var(--text-primary, #333);
	font-weight: 400;
	quotes: none;
}
.about-quote-attr {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.7rem;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: var(--accent-primary, #18a9a8);
}
.about-quote-dash {
	display: inline-block;
	width: 1.5rem;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-primary, #18a9a8), #6366f1);
	border-radius: 1px;
}

/* --- About Cards --- */
#about-me .about-card {
	position: relative;
	padding: 1.1rem 1.3rem;
	margin-bottom: 0.65rem;
	background: var(--about-card-bg, rgba(255, 255, 255, 0.5));
	border: 1px solid var(--about-card-border, rgba(24, 169, 168, 0.1));
	border-radius: 14px;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
#about-me .about-card::before {
	display: none;
}
#about-me .about-card:hover {
	border-color: rgba(24, 169, 168, 0.25);
	box-shadow: 0 4px 16px rgba(24, 169, 168, 0.08);
}
.about-card-header {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.45rem;
}
.about-card-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--accent-primary, #18a9a8), #6366f1);
	color: #fff;
	font-size: 0.85rem;
	flex-shrink: 0;
}
.about-card-header h3 {
	margin: 0;
	font-size: 1.05rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

#about-me .about-card p {
	margin: 0 0 0.6rem 0;
	max-width: 100%;
	text-align: justify;
	text-justify: inter-word;
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-primary, #333);
}

/* Stat badges */
.about-stat-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-top: 0.45rem;
}
.about-stat-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.25rem 0.7rem;
	font-size: 0.75rem;
	font-weight: 500;
	border-radius: 20px;
	background: linear-gradient(135deg, rgba(24, 169, 168, 0.08), rgba(99, 102, 241, 0.05));
	color: var(--text-primary, #333);
	border: 1px solid rgba(24, 169, 168, 0.15);
	letter-spacing: 0.01em;
	box-shadow: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
	cursor: default;
}
.about-stat-badge:hover {
	background: linear-gradient(135deg, rgba(24, 169, 168, 0.14), rgba(99, 102, 241, 0.1));
	border-color: rgba(24, 169, 168, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(24, 169, 168, 0.1);
}
.about-stat-badge i {
	font-size: 0.7rem;
	opacity: 0.8;
}
.about-stat-badge.about-stat-origin {
	background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(24, 169, 168, 0.05));
	color: var(--text-primary, #333);
	border-color: rgba(99, 102, 241, 0.15);
}

/* Legacy selectors kept for compatibility */
#about-me .about-me-section {
	position: relative;
	transition: background 0.25s ease;
}
#about-me .about-me-section::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0.6rem;
	bottom: 0.6rem;
	width: 3px;
	background: linear-gradient(180deg, var(--accent-primary, #18a9a8), rgba(24, 169, 168, 0.5));
	border-radius: 2px;
}
#about-me .about-me-section h3 {
	margin: 0 0 0.35rem 0;
	display: flex;
	align-items: center;
	font-size: 1.08rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}
#about-me .about-me-section h3 .fas {
	margin-right: 0.5rem;
	color: var(--accent-primary, #18a9a8);
}
#about-me .about-me-section p {
	margin: 0;
	max-width: 100%;
	text-align: justify;
	text-justify: inter-word;
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--text-primary, #333);
}
#about-me .about-me-interests-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 0.75rem;
	margin-top: 0.45rem;
}
#about-me .about-me-pill {
	background: linear-gradient(135deg, var(--about-pill-bg, rgba(24, 169, 168, 0.08)), rgba(99, 102, 241, 0.05));
	color: var(--text-primary, #333);
	border-radius: 2em;
	padding: 0.25rem 0.75rem;
	font-size: 0.78rem;
	font-weight: 500;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	letter-spacing: 0.02em;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	border: 1px solid rgba(24, 169, 168, 0.15);
}
#about-me .about-me-pill i {
	font-size: 0.75em;
	opacity: 0.7;
}
#about-me .about-me-pill:hover {
	background: linear-gradient(135deg, rgba(24, 169, 168, 0.14), rgba(99, 102, 241, 0.1));
	border-color: rgba(24, 169, 168, 0.3);
	transform: translateY(-1px);
	box-shadow: 0 2px 8px rgba(24, 169, 168, 0.1);
}
#about-me #about-me-map .about-me-globe-caption-overlay {
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	text-align: center;
	font-size: 0.8rem;
	font-weight: 500;
	font-style: italic;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 3px rgba(0,0,0,0.8), 0 0 1px rgba(0,0,0,0.9);
	pointer-events: none;
	z-index: 2;
	padding: 0 0.75rem;
}
#about-me #about-me-map .about-me-globe-legend-overlay {
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	font-size: 0.78rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	color: rgba(255, 255, 255, 0.95);
	text-shadow: 0 1px 4px rgba(0,0,0,0.6);
	pointer-events: none;
	z-index: 2;
	padding: 0.4rem 1rem;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border-radius: 50px;
	border: 1px solid rgba(24, 169, 168, 0.25);
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}
#about-me #about-me-map {
	width: 100%;
	aspect-ratio: 1.1 / 1;
	min-height: 320px;
	max-width: 600px;
	flex: 1 1 auto;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0,0,0,0.1);
	background: var(--bg-header, #1a1a2e);
	margin: 0 auto;
	border: 1px solid var(--about-map-border, rgba(24, 169, 168, 0.12));
	transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
#about-me #about-me-map:hover {
	box-shadow: 0 12px 40px rgba(0,0,0,0.15);
	border-color: rgba(24, 169, 168, 0.2);
}
[data-theme="dark"] .about-quote-card {
	background: linear-gradient(135deg, rgba(24, 169, 168, 0.07) 0%, rgba(99, 102, 241, 0.05) 100%);
	border-color: rgba(24, 169, 168, 0.18);
}
[data-theme="dark"] .about-quote-text {
	color: var(--text-primary, #e2e8f0);
}
[data-theme="dark"] .about-quote-attr {
	color: #2dd4bf;
}
[data-theme="dark"] .about-quote-dash {
	background: linear-gradient(90deg, #2dd4bf, #818cf8);
}
[data-theme="dark"] #about-me .about-card {
	--about-card-bg: rgba(30, 41, 59, 0.5);
	--about-card-border: rgba(24, 169, 168, 0.12);
}
[data-theme="dark"] #about-me .about-card:hover {
	border-color: rgba(24, 169, 168, 0.3);
	box-shadow: 0 4px 16px rgba(24, 169, 168, 0.1);
}
[data-theme="dark"] #about-me .about-card p {
	color: var(--text-primary, #e2e8f0);
}
[data-theme="dark"] .about-stat-badge {
	background: rgba(24, 169, 168, 0.12);
	color: #2dd4bf;
	border-color: rgba(24, 169, 168, 0.2);
	box-shadow: none;
}
[data-theme="dark"] .about-stat-badge.about-stat-origin {
	background: rgba(99, 102, 241, 0.12);
	color: #818cf8;
	border-color: rgba(99, 102, 241, 0.2);
}
[data-theme="dark"] #about-me .about-me-section {
	--about-section-bg: rgba(255,255,255,0.03);
}
[data-theme="dark"] #about-me .about-me-section p {
	color: var(--text-primary, #e2e8f0);
}
[data-theme="dark"] #about-me .about-me-pill {
	background: rgba(24, 169, 168, 0.12);
	color: #2dd4bf;
	border-color: rgba(24, 169, 168, 0.2);
	box-shadow: none;
}
[data-theme="dark"] #about-me #about-me-map {
	--about-map-border: rgba(24, 169, 168, 0.15);
	box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
@media (min-width: 1025px) {
	body.homepage #header #banner {
		padding: 10em 0;
	}
}
@media (min-width: 737px) and (max-width: 1024px) {
	body.homepage #intro {
		display: none;
	}
	body.homepage #header {
		padding-bottom: 0;
		margin-bottom: 0;
	}
	body.homepage #header #banner {
		padding: 17.6em 0 1.25em 0;
		background-size: cover;
		background-position: center center;
	}
	body.homepage #main {
		padding-top: 0.5rem;
	}
	body.homepage #about-me.container {
		width: 100%;
		max-width: 100%;
	}
	#about-me header.major {
		margin-bottom: 0.75rem;
	}
	#about-me .row {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: stretch;
	}
	#about-me .row > .col-6.col-12-medium {
		width: 100% !important;
		max-width: 100% !important;
		flex: 1 1 100% !important;
	}
	#about-me .about-card p {
		font-size: 1.02rem;
		line-height: 1.6;
	}
	.about-card-header h3 {
		font-size: 1.08rem;
	}
	.about-quote-text {
		font-size: 1rem;
	}
	#about-me #about-me-map {
		min-height: 300px;
		aspect-ratio: 1.1 / 1;
		max-width: 100%;
		height: auto;
	}
	#about-me #about-me-map .about-me-globe-legend-overlay {
		white-space: nowrap;
		font-size: 0.75rem;
		padding: 0.4rem 0.8rem;
	}
}
@media (max-width: 737px) {
	body.homepage #about-me.container {
		width: 100%;
		max-width: 100%;
	}
	#about-me header.major {
		margin-bottom: 0.75rem;
	}
	#about-me .row {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: stretch;
	}
	#about-me .row > .col-6.col-12-medium {
		width: 100% !important;
		max-width: 100% !important;
		flex: 1 1 100% !important;
	}
	#about-me .about-card p {
		font-size: 0.88rem;
		line-height: 1.5;
	}
	.about-card-header h3 {
		font-size: 0.98rem;
	}
	.about-card-icon {
		width: 1.7rem;
		height: 1.7rem;
		font-size: 0.75rem;
	}
	.about-quote-card {
		padding: 1.1rem 1.2rem 1rem;
	}
	.about-quote-text {
		font-size: 0.9rem;
		line-height: 1.55;
	}
	.about-quote-glyph {
		font-size: 2.4rem;
	}
	.about-quote-card::after {
		font-size: 4rem;
	}
	.about-stat-badge {
		font-size: 0.7rem;
		padding: 0.2rem 0.55rem;
	}
	#about-me #about-me-map {
		min-height: 280px;
		aspect-ratio: 1.1 / 1;
		max-width: 100%;
		height: auto;
	}
	#about-me #about-me-map .about-me-globe-legend-overlay {
		white-space: nowrap;
		font-size: 0.65rem;
		padding: 0.35rem 0.7rem;
	}
}
@media (max-width: 600px) {
	#about-me #about-me-map {
		min-height: 220px;
		aspect-ratio: 1 / 1;
	}
}
