/**
 * Canopée Biodiversity Map — Styles
 *
 * Covers: map container, markers, clusters, popups, bottom sheet,
 * filter panel, search bar, view toggle, list view, legend,
 * user-location marker, geolocation, and responsive breakpoints.
 */

/* ── Map container ───────────────────────────────────────── */

#bio-map-wrapper {
	position: relative;
	width: 100%;
}

#bio-map {
	width: 100%;
	min-height: 400px;
	z-index: 1;
}

/* ── Markers ─────────────────────────────────────────────── */

.bio-marker {
	background: none !important;
	border: none !important;
}

.bio-marker__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 18px;
	line-height: 1;
	text-align: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
	cursor: pointer;
}

/* Colour-circle mode (no emoji icon). */
.bio-marker--circle .bio-marker__icon {
	width: 20px;
	height: 20px;
	margin: 8px;
}

/* Coloured dot fallback in list view cards. */
.bio-card__dot {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	vertical-align: middle;
}

/* ── Cluster badges ──────────────────────────────────────── */

.bio-cluster {
	background: none !important;
	border: none !important;
}

.bio-cluster__count {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.9);
	color: #222;
	font-weight: 700;
	font-size: 14px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.bio-cluster--medium .bio-cluster__count {
	width: 50px;
	height: 50px;
	font-size: 16px;
}

.bio-cluster--large .bio-cluster__count {
	width: 60px;
	height: 60px;
	font-size: 18px;
}

/* ── Popup ───────────────────────────────────────────────── */

.bio-popup-wrapper .leaflet-popup-content-wrapper {
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.bio-popup {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	color: #333;
}

.bio-popup__header {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 4px;
}

.bio-popup__icon {
	font-size: 20px;
}

.bio-popup__title {
	font-size: 15px;
}

.bio-popup__address {
	color: #666;
	font-size: 13px;
	margin-bottom: 4px;
}

.bio-popup__meta {
	font-size: 13px;
	margin-bottom: 8px;
}

.bio-popup__status {
	font-size: 12px;
	font-weight: 600;
	color: #888;
}

.bio-popup__link {
	display: inline-block;
	font-weight: 600;
	color: #1976d2;
	text-decoration: none;
}

.bio-popup__link:hover {
	text-decoration: underline;
}

/* ── Bottom sheet (mobile popup) ─────────────────────────── */

.bio-bottom-sheet {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 10000;
	background: #fff;
	border-radius: 16px 16px 0 0;
	box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
	padding: 20px 16px 24px;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}

.bio-bottom-sheet--open {
	transform: translateY(0);
}

.bio-bottom-sheet__close {
	position: absolute;
	top: 12px;
	right: 16px;
	background: none;
	border: none;
	font-size: 24px;
	color: #666;
	cursor: pointer;
	padding: 4px 8px;
	min-width: 44px;
	min-height: 44px;
}

/* ── Filter panel ────────────────────────────────────────── */

.bio-filters {
	margin-bottom: 12px;
}

.bio-filters__mobile-toggle {
	display: none;
}

.bio-filters__body {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem 1.5rem;
	align-items: flex-start;
}

.bio-filters__group {
	position: relative;
}

.bio-filters__group-label {
	display: block;
	font-size: 0.75em;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #666;
	margin-bottom: 0.25rem;
}

.bio-filters__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.25rem;
}

.bio-filters__pill {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.25rem 0.5rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s;
}

.bio-filters__pill:hover {
	background: #f5f5f5;
}

.bio-filters__pill:has(input:checked) {
	background: #2e7d32;
	color: #fff;
	border-color: #2e7d32;
}

.bio-filters__pill input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

/* ── Search bar ──────────────────────────────────────────── */

.bio-search {
	margin-bottom: 12px;
	position: relative;
}

.bio-search__inner {
	display: flex;
	align-items: center;
	gap: 4px;
	border: 1px solid #ccc;
	border-radius: 8px;
	background: #fff;
	padding: 0 8px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.bio-search__input {
	flex: 1;
	padding: 10px 8px;
	border: none;
	background: transparent;
	color: #333;
	font-size: 14px;
	outline: none;
	min-width: 0;
}

.bio-search__input::placeholder {
	color: #999;
}

.bio-search__geo,
.bio-search__clear {
	background: none;
	border: none;
	color: #666;
	font-size: 18px;
	cursor: pointer;
	padding: 6px;
	min-width: 36px;
	min-height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bio-search__geo:hover,
.bio-search__clear:hover {
	color: #333;
}

.bio-search__geo--loading {
	animation: bio-spin 1s linear infinite;
}

@keyframes bio-spin {
	to { transform: rotate(360deg); }
}

.bio-search__results {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 1000;
	background: #fff;
	border-radius: 0 0 8px 8px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	border: 1px solid #ddd;
	border-top: none;
	max-height: 200px;
	overflow-y: auto;
}

.bio-search__result {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: none;
	background: transparent;
	color: #333;
	font-size: 13px;
	text-align: left;
	cursor: pointer;
}

.bio-search__result:hover {
	background: #f5f5f5;
	color: #111;
}

.bio-search__no-results {
	padding: 10px 12px;
	color: #999;
	font-size: 13px;
}

/* ── Geolocation message ─────────────────────────────────── */

.bio-geo-message {
	padding: 10px 16px;
	margin-bottom: 8px;
	border-radius: 8px;
	background: #fff8e1;
	color: #8d6e00;
	font-size: 13px;
	border: 1px solid #ffe082;
}

/* ── User location marker ────────────────────────────────── */

.bio-user-marker {
	background: none !important;
	border: none !important;
}

.bio-user-marker__dot {
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #4285f4;
	border: 3px solid #fff;
	box-shadow: 0 2px 8px rgba(66, 133, 244, 0.6);
	margin: 2px;
}

.bio-user-popup {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	font-size: 13px;
	line-height: 1.5;
}

.bio-user-popup__nearby {
	margin-top: 8px;
}

.bio-user-popup__project {
	margin-top: 2px;
}

.bio-user-popup__dist {
	color: #888;
	font-size: 12px;
}

/* ── View toggle (Map / List) ────────────────────────────── */

.bio-view-toggle {
	display: flex;
	gap: 0;
	margin-bottom: 12px;
	border: 1px solid #ccc;
	border-radius: 8px;
	overflow: hidden;
	width: fit-content;
}

.bio-view-toggle__btn {
	padding: 8px 20px;
	border: none;
	background: transparent;
	color: #666;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
	min-height: 40px;
}

.bio-view-toggle__btn--active {
	background: #333;
	color: #fff;
}

.bio-view-toggle__btn:hover:not(.bio-view-toggle__btn--active) {
	background: #f0f0f0;
	color: #333;
}

/* ── List view ───────────────────────────────────────────── */

.bio-list__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.bio-list__empty {
	padding: 40px 20px;
	text-align: center;
	color: #999;
	font-size: 15px;
}

.bio-card {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	transition: box-shadow 0.15s, transform 0.15s;
}

.bio-card:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

.bio-card__header {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bio-card__icon {
	font-size: 24px;
	flex-shrink: 0;
}

.bio-card__title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #222;
	line-height: 1.3;
}

.bio-card__meta {
	font-size: 13px;
	color: #777;
}

.bio-card__category {
	font-weight: 600;
}

.bio-card__status {
	font-size: 12px;
	font-weight: 600;
	color: #888;
}

.bio-card__address {
	font-size: 13px;
	color: #777;
}

.bio-card__excerpt {
	font-size: 13px;
	color: #666;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bio-card__link {
	display: inline-block;
	margin-top: auto;
	padding-top: 8px;
	font-weight: 600;
	font-size: 14px;
	color: #1976d2;
	text-decoration: none;
}

.bio-card__link:hover {
	text-decoration: underline;
}

/* ── Legend ───────────────────────────────────────────────── */

.bio-legend {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 8px;
	padding: 0;
	color: #333;
	font-size: 13px;
	max-width: 220px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
	border: 1px solid #ddd;
}

.bio-legend__toggle {
	display: block;
	width: 100%;
	padding: 8px 12px;
	border: none;
	background: none;
	color: #222;
	font-weight: 700;
	font-size: 13px;
	text-align: left;
	cursor: pointer;
}

.bio-legend__body {
	padding: 0 12px 12px;
}

.bio-legend--collapsed .bio-legend__body {
	display: none;
}

.bio-legend__section {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.bio-legend__section--status {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid #ddd;
}

.bio-legend__item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 4px 6px;
	border: none;
	background: transparent;
	color: #333;
	font-size: 13px;
	cursor: pointer;
	border-radius: 4px;
	transition: opacity 0.15s;
}

.bio-legend__item:not(.bio-legend__item--active) {
	opacity: 0.35;
}

.bio-legend__item:hover {
	background: rgba(0, 0, 0, 0.05);
}

.bio-legend__swatch {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 12px;
}

.bio-legend__swatch--solid {
	background: #fff;
	border: 2px solid #888;
}

.bio-legend__swatch--outlined {
	background: rgba(245, 245, 245, 0.95);
	border: 2px solid #888;
}

.bio-legend__swatch--planned {
	background: rgba(245, 245, 245, 0.95);
	border: 2px solid #888;
	opacity: 0.5;
}

.bio-legend__status-item {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 2px 6px;
	color: #666;
	font-size: 12px;
}

/* ── Screen-reader-only utility ───────────────────────────── */

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ── Focus indicators ────────────────────────────────────── */

.bio-filters__pill:focus-visible,
.bio-search__input:focus-visible,
.bio-search__geo:focus-visible,
.bio-search__clear:focus-visible,
.bio-view-toggle__btn:focus-visible,
.bio-legend__toggle:focus-visible,
.bio-legend__item:focus-visible,
.bio-card__link:focus-visible,
.bio-popup__link:focus-visible,
.bio-search__result:focus-visible {
	outline: 2px solid #64b5f6;
	outline-offset: 2px;
}

/* ── Responsive: Desktop (>768px) ────────────────────────── */

@media (min-width: 769px) {
	#bio-map {
		min-height: 500px;
	}
}

/* ── Responsive: Tablet (480–768px) ──────────────────────── */

@media (max-width: 768px) {
	.bio-list__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ── Responsive: Mobile (<480px) ─────────────────────────── */

@media (max-width: 479px) {
	/* Filter panel: collapsible */
	.bio-filters__mobile-toggle {
		display: block;
		width: 100%;
		padding: 10px 16px;
		border: 1px solid #ccc;
		border-radius: 8px;
		background: #fff;
		color: #333;
		font-size: 14px;
		font-weight: 600;
		cursor: pointer;
		text-align: left;
		margin-bottom: 8px;
	}

	.bio-filters__body {
		display: none;
		flex-direction: column;
	}

	.bio-filters__body--open {
		display: flex;
	}

	/* Ensure touch-friendly pill sizes */
	.bio-filters__pill {
		padding: 0.4rem 0.8rem;
	}

	/* List: single column */
	.bio-list__grid {
		grid-template-columns: 1fr;
	}

	/* Search */
	.bio-search__input {
		font-size: 16px; /* Prevent iOS zoom on focus */
	}

	/* View toggle full-width */
	.bio-view-toggle {
		width: 100%;
	}

	.bio-view-toggle__btn {
		flex: 1;
		min-height: 44px;
	}
}

/* ================================================================
   Detail Page — Single bio_project template
   ================================================================ */

/* ── Hero section ───────────────────────────────────────── */

.bio-detail__hero {
	position: relative;
	width: 100%;
	max-height: 480px;
	overflow: hidden;
	background: #111;
}

.bio-detail__hero-img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 480px;
	object-fit: cover;
}

.bio-detail__hero-badges {
	position: absolute;
	bottom: 16px;
	left: 16px;
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.bio-detail__badge {
	display: inline-block;
	padding: 6px 14px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
	color: #fff;
	line-height: 1.3;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.bio-detail__badge--status {
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
}

.bio-detail__badge--completed {
	border: 2px solid #66bb6a;
}

.bio-detail__badge--in-progress {
	border: 2px solid #ffa726;
}

.bio-detail__badge--planned {
	border: 2px solid #64b5f6;
}

/* ── Back to map link ──────────────────────────────────── */

.bio-detail__back {
	display: inline-block;
	margin-bottom: 12px;
	font-size: 15px;
	font-weight: 500;
	color: #888;
	text-decoration: none;
}

.bio-detail__back:hover {
	color: #222;
	text-decoration: underline;
}

/* ── Content container ──────────────────────────────────── */

.bio-detail__content {
	max-width: 800px;
	margin: 0 auto;
	padding: 32px 20px 60px;
}

/* ── Header ─────────────────────────────────────────────── */

.bio-detail__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 12px;
}

.bio-detail__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	font-size: 15px;
	color: #666;
	margin-bottom: 32px;
}

.bio-detail__meta-item {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.bio-detail__meta-icon {
	font-size: 20px;
}

.bio-detail__status-dot {
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
}

.bio-detail__status-dot--completed {
	background: #66bb6a;
}

.bio-detail__status-dot--in-progress {
	background: #ffa726;
}

.bio-detail__status-dot--planned {
	background: #64b5f6;
}

.bio-detail__meta-address::before {
	content: '\1F4CD';
	margin-right: 2px;
}

/* ── Description ────────────────────────────────────────── */

.bio-detail__description {
	font-size: 16px;
	line-height: 1.7;
	margin-bottom: 40px;
}

/* ── Section titles ─────────────────────────────────────── */

.bio-detail__section-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 16px;
}

/* ── Impact stat cards ──────────────────────────────────── */

.bio-detail__impact {
	margin-bottom: 40px;
}

.bio-detail__stats {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.bio-detail__stat {
	flex: 1;
	min-width: 160px;
	padding: 24px;
	border-radius: 12px;
	background: #f5f5f5;
	text-align: center;
}

.bio-detail__stat-value {
	display: block;
	font-size: 36px;
	font-weight: 800;
	line-height: 1.2;
	color: #222;
}

.bio-detail__stat-label {
	display: block;
	margin-top: 4px;
	font-size: 14px;
	color: #666;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ── Species grid ───────────────────────────────────────── */

.bio-detail__species {
	margin-bottom: 40px;
}

.bio-detail__species-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}

.bio-detail__species-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 16px 8px;
	border-radius: 10px;
	background: #f9f9f9;
	text-decoration: none;
	color: inherit;
	transition: background 0.15s, box-shadow 0.15s;
}

.bio-detail__species-card:hover {
	background: #f0f0f0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bio-detail__species-thumb {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 8px;
}

.bio-detail__species-thumb--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8f5e9;
	font-size: 28px;
}

.bio-detail__species-name {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	line-height: 1.3;
}

.bio-detail__species-latin {
	font-size: 12px;
	color: #888;
	font-style: italic;
	margin-top: 2px;
}

.bio-detail__species-card:focus-visible {
	outline: 2px solid #64b5f6;
	outline-offset: 2px;
}

/* ── Gallery grid ───────────────────────────────────────── */

.bio-detail__gallery {
	margin-bottom: 40px;
}

.bio-detail__gallery-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.bio-detail__gallery-item {
	display: block;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 4 / 3;
}

.bio-detail__gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.2s ease;
}

.bio-detail__gallery-item:hover img {
	transform: scale(1.05);
}

/* ── Partners grid ──────────────────────────────────────── */

.bio-detail__partners {
	margin-bottom: 40px;
}

.bio-detail__partners-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: flex-start;
}

.bio-detail__partner {
	text-align: center;
	width: 120px;
}

.bio-detail__partner-link {
	text-decoration: none;
	color: inherit;
	display: block;
}

.bio-detail__partner-link:hover .bio-detail__partner-name {
	text-decoration: underline;
}

.bio-detail__partner-logo {
	width: 80px;
	height: 80px;
	margin: 0 auto 8px;
	border-radius: 12px;
	overflow: hidden;
	background: #f0f0f0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bio-detail__partner-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.bio-detail__partner-placeholder {
	font-size: 28px;
	font-weight: 700;
	color: #999;
}

.bio-detail__partner-name {
	font-size: 13px;
	color: #555;
	line-height: 1.3;
}

/* ── Mini-map ───────────────────────────────────────────── */

.bio-detail__map-section {
	margin-bottom: 40px;
}

.bio-detail__map {
	width: 100%;
	height: 300px;
	border-radius: 12px;
	overflow: hidden;
	z-index: 1;
}

/* ── Lightbox ───────────────────────────────────────────── */

.bio-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100000;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
}

.bio-lightbox__img {
	max-width: 90vw;
	max-height: 85vh;
	object-fit: contain;
	border-radius: 4px;
}

.bio-lightbox__close {
	position: absolute;
	top: 16px;
	right: 20px;
	background: none;
	border: none;
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	padding: 8px;
	line-height: 1;
	min-width: 44px;
	min-height: 44px;
}

.bio-lightbox__prev,
.bio-lightbox__next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.15);
	border: none;
	color: #fff;
	font-size: 48px;
	cursor: pointer;
	padding: 8px 14px;
	border-radius: 8px;
	line-height: 1;
	min-width: 44px;
	min-height: 60px;
	transition: background 0.15s;
}

.bio-lightbox__prev:hover,
.bio-lightbox__next:hover {
	background: rgba(255, 255, 255, 0.25);
}

.bio-lightbox__prev {
	left: 16px;
}

.bio-lightbox__next {
	right: 16px;
}

.bio-lightbox__counter {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

/* ── Detail page: focus indicators ──────────────────────── */

.bio-detail__gallery-item:focus-visible,
.bio-detail__partner-link:focus-visible,
.bio-lightbox__close:focus-visible,
.bio-lightbox__prev:focus-visible,
.bio-lightbox__next:focus-visible {
	outline: 2px solid #64b5f6;
	outline-offset: 2px;
}

/* ── Detail page: responsive ────────────────────────────── */

@media (max-width: 768px) {
	.bio-detail__gallery-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bio-detail__species-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.bio-detail__title {
		font-size: 26px;
	}

	.bio-detail__hero {
		max-height: 320px;
	}

	.bio-detail__hero-img {
		max-height: 320px;
	}
}

@media (max-width: 479px) {
	.bio-detail__species-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.bio-detail__gallery-grid {
		grid-template-columns: 1fr;
	}

	.bio-detail__content {
		padding: 20px 16px 40px;
	}

	.bio-detail__title {
		font-size: 22px;
	}

	.bio-detail__stat-value {
		font-size: 28px;
	}

	.bio-detail__hero {
		max-height: 240px;
	}

	.bio-detail__hero-img {
		max-height: 240px;
	}

	.bio-lightbox__prev,
	.bio-lightbox__next {
		font-size: 32px;
		padding: 6px 10px;
	}
}
