.hero__content {
	position: relative;
	max-width: 760px;
}

.hero__eyebrow,
.section__eyebrow {
	width: fit-content;
	margin-bottom: 16px;
	padding: 8px 13px;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1;
	letter-spacing: 0.11em;
	text-transform: uppercase;
}

.hero__eyebrow {
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	color: #bbf7d0;
	backdrop-filter: blur(16px);
}

.hero__description {
	max-width: 700px;
	margin-bottom: 22px;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(1rem, 1.35vw, 1.16rem);
	line-height: 1.62;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
}

.bio-card {
	position: relative;
	width: min(100%, 420px);
	max-width: 420px;
	height: 400px;
	min-height: 0;
	margin-left: auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 32px;
	background:
		linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
		radial-gradient(circle at 48% 38%, rgba(187, 247, 208, 0.26), transparent 19rem);
	box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
	backdrop-filter: blur(22px);
}

.image-card,
.card-image,
.person-photo {
	position: relative;
	overflow: hidden;
	margin: 0;
	background: linear-gradient(135deg, rgba(229, 244, 237, 0.95), rgba(255, 255, 255, 0.86));
}

.image-card img,
.card-image img,
.person-photo img,
.partner-logo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.image-slot {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	min-height: 180px;
	padding: 24px;
	background:
		linear-gradient(rgba(0, 87, 63, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 63, 0.08) 1px, transparent 1px),
		linear-gradient(135deg, rgba(0, 87, 63, 0.12), rgba(34, 197, 94, 0.08));
	background-size: 28px 28px, 28px 28px, auto;
	color: var(--color-primary);
	text-align: center;
}

.image-slot span {
	max-width: 18ch;
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1.35;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.bio-card__mesh {
	position: absolute;
	inset: 12%;
	border-radius: 42% 58% 46% 54%;
	background:
		linear-gradient(120deg, rgba(187, 247, 208, 0.16), rgba(34, 197, 94, 0.04)),
		repeating-linear-gradient(38deg, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 24px);
	box-shadow:
		inset 0 0 70px rgba(34, 197, 94, 0.32),
		0 0 100px rgba(34, 197, 94, 0.18);
	transform: rotate(-8deg);
}

.bio-card__orb {
	position: absolute;
	border-radius: 999px;
	background: radial-gradient(circle at 35% 30%, #ecfdf5, #22c55e 42%, rgba(0, 87, 63, 0.12) 70%);
	filter: drop-shadow(0 22px 42px rgba(34, 197, 94, 0.25));
}

.bio-card__orb--one {
	top: 14%;
	right: 16%;
	width: 108px;
	height: 108px;
}

.bio-card__orb--two {
	left: 13%;
	bottom: 20%;
	width: 76px;
	height: 76px;
	opacity: 0.82;
}

.bio-card__panel {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-width: 220px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 18px;
	background: rgba(15, 23, 42, 0.46);
	color: var(--color-white);
	backdrop-filter: blur(18px);
}

.bio-card__panel span {
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.82rem;
	font-weight: 700;
}

.bio-card__panel strong {
	color: #bbf7d0;
	font-size: 1rem;
}

.bio-card__panel--top {
	top: 22px;
	left: 22px;
}

.bio-card__panel--bottom {
	right: 22px;
	bottom: 22px;
}

@media (max-height: 760px) and (min-width: 1000px) {
	.hero {
		min-height: 680px;
		padding: 80px 0 72px;
	}

	.hero h1 {
		font-size: clamp(48px, 4.7vw, 62px);
		margin-bottom: 14px;
	}

	.hero__eyebrow {
		margin-bottom: 13px;
	}

	.hero__description {
		margin-bottom: 18px;
		line-height: 1.55;
	}

	.hero__actions {
		margin-bottom: 20px;
	}

	.bio-card {
		height: 380px;
	}
}

.section--why-biomaterial {
	background: var(--color-light);
}

.section--why-biomaterial .container {
	display: block;
}

.section__intro {
	max-width: 860px;
	margin-bottom: 28px;
}

.section__eyebrow {
	background: var(--color-primary-soft);
	color: var(--color-primary);
}

.section__intro h2 {
	margin-bottom: 22px;
}

.section__intro p:not(.section__eyebrow) {
	font-size: 1.12rem;
	line-height: 1.75;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.why-card {
	position: relative;
	min-height: 310px;
	padding: 28px;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.why-card::after {
	content: "";
	position: absolute;
	right: -42px;
	bottom: -52px;
	width: 150px;
	height: 150px;
	border-radius: 999px;
	background:
		radial-gradient(circle, rgba(34, 197, 94, 0.18), transparent 68%);
}

.why-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 87, 63, 0.28);
	box-shadow: var(--shadow-card);
}

.why-card__icon {
	display: grid;
	place-items: center;
	width: 52px;
	height: 52px;
	margin-bottom: 26px;
	border-radius: 16px;
	background:
		linear-gradient(135deg, rgba(0, 87, 63, 0.96), rgba(34, 197, 94, 0.82));
	box-shadow: 0 14px 26px rgba(0, 87, 63, 0.18);
}

.why-card__icon::before {
	content: "";
	width: 22px;
	height: 22px;
	border: 2px solid rgba(255, 255, 255, 0.82);
	border-radius: 9px 999px 999px 999px;
	transform: rotate(-28deg);
}

.why-card h3 {
	margin-bottom: 14px;
	font-size: 1.28rem;
	line-height: 1.2;
}

.why-card p {
	margin-bottom: 0;
	font-size: 0.98rem;
	line-height: 1.72;
}

.section--impact {
	background:
		radial-gradient(circle at 16% 20%, rgba(34, 197, 94, 0.18), transparent 24rem),
		linear-gradient(135deg, #07111f 0%, #0f172a 52%, #003f30 100%);
	color: var(--color-white);
}

.section__intro--dark h2 {
	color: var(--color-white);
}

.section__intro--dark p:not(.section__eyebrow) {
	color: rgba(255, 255, 255, 0.74);
}

.section__intro--dark .section__eyebrow {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: #bbf7d0;
}

.impact-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 22px;
}

.impact-card {
	min-height: 210px;
	padding: 30px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(18px);
}

.impact-card strong,
.impact-card span {
	display: block;
}

.impact-card strong {
	color: var(--color-white);
	font-size: clamp(2.7rem, 5vw, 5rem);
	font-weight: 850;
	line-height: 0.95;
}

.impact-card span {
	margin-top: 22px;
	color: rgba(255, 255, 255, 0.74);
	font-size: 1.05rem;
	font-weight: 750;
	line-height: 1.35;
}

.section--research {
	background: #ffffff;
}

.research-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 22px;
}

.research-card {
	position: relative;
	min-height: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(248, 250, 252, 0.9), #ffffff);
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.06);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.research-card::after {
	content: "";
	position: absolute;
	right: -48px;
	bottom: -58px;
	width: 160px;
	height: 160px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(0, 87, 63, 0.09), transparent 68%);
}

.editorial-card .card-image {
	aspect-ratio: 16 / 10;
	border-bottom: 1px solid var(--color-border);
}

.editorial-card .card-body {
	position: relative;
	padding: 26px;
}

.research-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 87, 63, 0.28);
	box-shadow: var(--shadow-card);
}

.research-card h3 {
	margin-bottom: 14px;
	font-size: 1.35rem;
	line-height: 1.2;
}

.research-card p {
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.72;
}

.section--innovation {
	background:
		linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.innovation-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.innovation-card {
	position: relative;
	min-height: 0;
	padding: 0;
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.innovation-card::before {
	display: none;
}

.innovation-card::after {
	content: "";
	position: absolute;
	right: -54px;
	bottom: -68px;
	width: 180px;
	height: 180px;
	border-radius: 999px;
	background: radial-gradient(circle, rgba(34, 197, 94, 0.14), transparent 68%);
}

.innovation-card:hover {
	transform: translateY(-8px);
	border-color: rgba(0, 87, 63, 0.28);
	box-shadow: var(--shadow-card);
}

.trl-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--color-primary-soft);
	color: var(--color-primary);
	font-size: 0.78rem;
	font-weight: 850;
	line-height: 1;
}

.card-image .trl-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.innovation-card h3 {
	position: relative;
	margin-bottom: 16px;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
	line-height: 1.15;
}

.innovation-card p {
	position: relative;
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.72;
}

.section--laboratory {
	background:
		radial-gradient(circle at 84% 18%, rgba(34, 197, 94, 0.12), transparent 24rem),
		#f8fafc;
}

.laboratory-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
	gap: clamp(48px, 6vw, 88px);
	align-items: center;
}

.laboratory-content .section__intro {
	margin-bottom: 44px;
}

.capability-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.capability-block {
	display: flex;
	align-items: center;
	gap: 14px;
	min-height: 92px;
	padding: 20px;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: rgba(255, 255, 255, 0.84);
	box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.capability-block span {
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	border-radius: 13px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	box-shadow: 0 12px 24px rgba(0, 87, 63, 0.16);
}

.capability-block h3 {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.25;
}

.laboratory-showcase {
	position: relative;
	min-height: 560px;
}

.lab-panel {
	position: absolute;
	overflow: hidden;
	border: 1px solid rgba(0, 87, 63, 0.12);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow-card);
}

.lab-panel--large {
	inset: 42px 68px 34px 0;
}

.lab-panel--small {
	width: 42%;
	height: 180px;
	right: 0;
	background: rgba(255, 255, 255, 0.94);
}

.lab-panel--top {
	top: 0;
}

.lab-panel--bottom {
	bottom: 0;
}

.lab-panel__grid {
	position: absolute;
	inset: 32px;
	border-radius: 22px;
	background:
		linear-gradient(rgba(0, 87, 63, 0.08) 1px, transparent 1px),
		linear-gradient(90deg, rgba(0, 87, 63, 0.08) 1px, transparent 1px),
		radial-gradient(circle at 40% 36%, rgba(34, 197, 94, 0.2), transparent 18rem);
	background-size: 34px 34px, 34px 34px, auto;
}

.lab-panel img,
.lab-panel .image-slot {
	width: 100%;
	height: 100%;
	min-height: 0;
}

.image-slot--lab,
.image-slot--lab-small {
	color: var(--color-primary);
}

.section--people {
	background: #ffffff;
}

.people-layout {
	display: grid;
	grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
	gap: 28px;
	align-items: stretch;
}

.leader-card,
.researcher-card,
.news-card {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 16px 42px rgba(15, 23, 42, 0.07);
}

.leader-card {
	display: grid;
	align-content: start;
	gap: 26px;
	padding: 0;
	background:
		linear-gradient(180deg, rgba(229, 244, 237, 0.82), rgba(255, 255, 255, 0.96));
}

.leader-card > div {
	padding: 0 34px 34px;
}

.person-photo {
	border-radius: 24px;
	background: var(--color-primary-soft);
}

.person-photo--leader {
	border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.person-photo--leader img,
.person-photo--leader .image-slot {
	aspect-ratio: 4 / 3;
	min-height: 280px;
}

.researcher-card .person-photo {
	margin-bottom: 18px;
	border-radius: 18px;
}

.researcher-card .person-photo img,
.researcher-card .person-photo .image-slot {
	aspect-ratio: 4 / 3;
	min-height: 160px;
}

.image-slot--person {
	min-height: inherit;
}

.person-kicker {
	margin-bottom: 10px;
	color: var(--color-primary);
	font-size: 0.82rem;
	font-weight: 850;
	line-height: 1;
	text-transform: uppercase;
}

.leader-card h3,
.researcher-card h3 {
	margin-bottom: 12px;
	font-size: clamp(1.25rem, 2vw, 1.75rem);
	line-height: 1.18;
}

.leader-card p:not(.person-kicker) {
	margin-bottom: 22px;
}

.researcher-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.researcher-card {
	min-height: 190px;
	padding: 16px;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.researcher-card:hover,
.news-card:hover {
	transform: translateY(-7px);
	border-color: rgba(0, 87, 63, 0.28);
	box-shadow: var(--shadow-card);
}

.expertise-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.expertise-tags span {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: var(--color-primary-soft);
	color: var(--color-primary);
	font-size: 0.78rem;
	font-weight: 800;
}

.section--global-map {
	background:
		radial-gradient(circle at 50% 30%, rgba(34, 197, 94, 0.1), transparent 28rem),
		var(--color-light);
}

.section__intro--center {
	margin-inline: auto;
	text-align: center;
}

.section__intro--center .section__eyebrow {
	margin-inline: auto;
}

.section__intro--center p:not(.section__eyebrow) {
	margin-inline: auto;
}

.map-showcase {
	padding: clamp(22px, 4vw, 40px);
	border: 1px solid var(--color-border);
	border-radius: 32px;
	background: rgba(255, 255, 255, 0.86);
	box-shadow: var(--shadow-card);
}

.global-map__visual {
	position: relative;
	height: 430px;
	overflow: hidden;
	border-radius: 12px;
	background: #f8fafc;
}

.global-map__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.country-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px;
	margin-top: 24px;
}

.country-list span {
	padding: 10px 14px;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: #ffffff;
	color: var(--color-dark);
	font-weight: 750;
}

.partner-logo {
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.partner-logo img,
.partner-logo i {
	width: 30px;
	height: 30px;
	border-radius: 999px;
}

.partner-logo i {
	display: inline-grid;
	place-items: center;
	background: var(--color-primary-soft);
	color: var(--color-primary);
	font-size: 0.72rem;
	font-style: normal;
	font-weight: 900;
}

.section--news {
	background: #ffffff;
}

.news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
}

.news-card {
	min-height: 300px;
	padding: 0;
	transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.news-card .card-body span {
	display: inline-flex;
	margin-bottom: 22px;
	color: var(--color-primary);
	font-size: 0.82rem;
	font-weight: 850;
	text-transform: uppercase;
}

.news-card h3 {
	margin-bottom: 16px;
	font-size: clamp(1.35rem, 2vw, 1.9rem);
	line-height: 1.18;
}

.news-card p {
	margin-bottom: 0;
	font-size: 1rem;
	line-height: 1.72;
}

.section--cta {
	padding-top: 88px;
	background: #ffffff;
}

.cta-panel {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	padding: clamp(42px, 6vw, 72px);
	border-radius: 32px;
	background:
		radial-gradient(circle at 88% 20%, rgba(34, 197, 94, 0.22), transparent 24rem),
		linear-gradient(135deg, #003f30, #0f172a);
	color: var(--color-white);
	box-shadow: 0 30px 90px rgba(15, 23, 42, 0.22);
}

.cta-panel h2 {
	max-width: 780px;
	margin: 0;
	color: var(--color-white);
	font-size: clamp(2.2rem, 4vw, 4.3rem);
}

.cta-panel .section__eyebrow {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: #bbf7d0;
}

/* Mockup rebuild: compact editorial research-center composition. */
.section__intro {
	display: grid;
	grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.78fr);
	gap: 24px;
	align-items: end;
	max-width: none;
}

.section__intro h2 {
	margin-bottom: 0;
	font-size: clamp(1.75rem, 2.8vw, 2.45rem);
}

.section__intro p:not(.section__eyebrow) {
	margin: 0;
	font-size: 1rem;
	line-height: 1.6;
}

.section__eyebrow {
	margin-bottom: 0;
}

.section--why-biomaterial .container {
	display: grid;
	grid-template-columns: minmax(250px, 0.42fr) minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.section--why-biomaterial .section__intro {
	display: block;
	margin-bottom: 0;
}

.section--why-biomaterial .section__intro h2 {
	margin-bottom: 16px;
}

.why-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.why-card {
	min-height: 190px;
	padding: 18px;
	border-radius: 12px;
}

.why-card__icon {
	width: 38px;
	height: 38px;
	margin-bottom: 18px;
	border-radius: 10px;
}

.why-card h3 {
	margin-bottom: 10px;
	font-size: 1rem;
}

.why-card p {
	font-size: 0.86rem;
	line-height: 1.55;
}

.section--impact {
	padding: 40px 0;
}

.section--impact .section__intro {
	display: none;
}

.impact-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.06);
}

.impact-card {
	min-height: 112px;
	padding: 22px 18px;
	border: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.impact-card:last-child {
	border-right: 0;
}

.impact-card strong {
	font-size: clamp(1.8rem, 3vw, 3rem);
}

.impact-card span {
	margin-top: 10px;
	font-size: 0.86rem;
	line-height: 1.25;
}

.research-grid,
.innovation-grid,
.news-grid {
	display: grid;
	gap: 14px;
}

.research-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.innovation-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.news-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.research-card,
.innovation-card,
.news-card {
	border-radius: 12px;
}

.editorial-card .card-image {
	aspect-ratio: 4 / 3;
}

.editorial-card .card-body {
	padding: 16px;
}

.research-card h3,
.innovation-card h3,
.news-card h3 {
	margin-bottom: 8px;
	font-size: 1rem;
	line-height: 1.25;
}

.research-card p,
.innovation-card p,
.news-card p {
	font-size: 0.85rem;
	line-height: 1.5;
}

.news-card .card-body span,
.news-card time {
	display: block;
	margin-bottom: 8px;
	color: var(--color-primary);
	font-size: 0.74rem;
	font-weight: 850;
	text-transform: uppercase;
}

.news-card time {
	color: var(--color-gray);
	text-transform: none;
}

.section--laboratory {
	background: #ffffff;
}

.laboratory-layout {
	grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
	gap: 20px;
}

.laboratory-showcase {
	order: 1;
	min-height: 390px;
}

.laboratory-content {
	order: 2;
	align-self: stretch;
	padding: 28px;
	border-radius: 14px;
	background: linear-gradient(135deg, #003f30, #0f172a);
	color: var(--color-white);
}

.laboratory-content .section__intro {
	display: block;
	margin-bottom: 24px;
}

.laboratory-content .section__intro h2 {
	color: var(--color-white);
}

.laboratory-content .section__intro p:not(.section__eyebrow) {
	color: rgba(255, 255, 255, 0.72);
}

.laboratory-content .section__eyebrow {
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.08);
	color: #bbf7d0;
	margin-bottom: 16px;
}

.capability-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
}

.capability-block {
	min-height: 74px;
	padding: 14px;
	border-color: rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
}

.capability-block h3 {
	color: var(--color-white);
	font-size: 0.95rem;
}

.lab-panel {
	position: relative;
	inset: auto;
	height: 100%;
	border-radius: 14px;
}

.lab-panel--large {
	inset: auto;
	height: 390px;
}

.lab-panel--small {
	display: none;
}

.section--people {
	background: var(--color-light);
}

.people-layout {
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(220px, 0.82fr) minmax(300px, 1.05fr);
	gap: 16px;
	align-items: stretch;
}

.leader-card,
.researcher-card {
	border-radius: 14px;
}

.leader-card {
	gap: 0;
}

.leader-card > div {
	padding: 18px;
}

.person-photo--leader img,
.person-photo--leader .image-slot {
	min-height: 250px;
}

.professor-column {
	display: grid;
	gap: 16px;
}

.professor-column .researcher-card {
	min-height: 0;
}

.researcher-card {
	padding: 12px;
}

.researcher-card .person-photo {
	margin-bottom: 12px;
}

.researcher-card .person-photo img,
.researcher-card .person-photo .image-slot {
	min-height: 118px;
}

.researcher-card h3 {
	font-size: 1rem;
}

.fellows-panel {
	padding: 18px;
	border-radius: 14px;
	background: linear-gradient(135deg, #003f30, #0f172a);
	color: var(--color-white);
}

.fellows-panel h3 {
	margin-bottom: 16px;
	color: var(--color-white);
	font-size: 1.25rem;
}

.fellow-card {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 12px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fellow-card .person-photo,
.fellow-card .person-photo img,
.fellow-card .person-photo .image-slot {
	width: 58px;
	height: 58px;
	min-height: 58px;
	border-radius: 12px;
}

.fellow-card h4 {
	margin: 0 0 8px;
	color: var(--color-white);
	font-size: 0.98rem;
	line-height: 1.2;
}

.fellows-panel .expertise-tags span {
	background: rgba(255, 255, 255, 0.12);
	color: #bbf7d0;
}

.map-showcase {
	padding: 0;
	border-radius: 14px;
}

.map-split {
	display: grid;
	grid-template-columns: minmax(0, 60%) minmax(300px, 40%);
	gap: 0;
	overflow: hidden;
}

.global-map__visual {
	min-height: 360px;
	border-radius: 12px;
	background: #f8fafc;
	overflow: hidden;
}

.map-detail {
	display: grid;
	align-content: center;
	padding: 32px;
	background: #ffffff;
}

.partner-stats {
	display: inline-grid;
	margin: 0 0 14px;
}

.partner-stats strong {
	color: var(--color-primary);
	font-size: clamp(3rem, 5vw, 4.25rem);
	line-height: 1;
}

.partner-stats span {
	max-width: 280px;
	color: var(--color-gray);
	font-size: 0.95rem;
	font-weight: 750;
	line-height: 1.35;
}

.map-detail p {
	max-width: 360px;
	margin: 0 0 22px;
	color: var(--color-gray);
	font-size: 0.94rem;
	line-height: 1.6;
}

.country-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: flex-start;
	margin-top: 0;
}

.country-list span {
	border-radius: 999px;
	font-size: 0.78rem;
}

.section--cta {
	padding: 56px 0 0;
	background: #ffffff;
	margin-bottom: 0;
}

.cta-panel {
	position: relative;
	overflow: hidden;
	min-height: 250px;
	border-radius: 14px;
	background:
		linear-gradient(90deg, rgba(0, 63, 48, 0.96), rgba(0, 87, 63, 0.78), rgba(15, 23, 42, 0.5)),
		var(--cta-image, linear-gradient(135deg, #003f30, #0f172a));
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.cta-panel h2 {
	font-size: clamp(2rem, 4vw, 3.45rem);
}

.cta-panel p {
	max-width: 720px;
	margin: 14px 0 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 1rem;
	line-height: 1.62;
}

.cta-panel .button {
	flex: 0 0 auto;
}

/* Final mockup proportion pass. Keep existing section architecture, normalize sizing. */
.section {
	padding: 56px 0;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	margin-bottom: 18px;
}

.section-heading__title {
	margin: 0;
	color: var(--color-primary);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.section a.section-heading__link[href] {
	display: inline-flex;
	align-items: center;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--color-primary);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}

.hero {
	position: relative;
	height: auto;
	min-height: 640px;
	overflow: hidden;
	padding: 56px 0;
	background: linear-gradient(115deg, #003f30 0%, #00573f 42%, #0f172a 100%);
	color: var(--color-white);
	isolation: isolate;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(
		90deg,
		rgba(0, 87, 63, 0.98) 0%,
		rgba(0, 87, 63, 0.96) 34%,
		rgba(0, 87, 63, 0.82) 48%,
		rgba(0, 87, 63, 0.45) 62%,
		rgba(15, 23, 42, 0.35) 100%
	);
	pointer-events: none;
}

.hero::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	width: 62%;
	background-image: url("../images/hero/hero-biomaterial.png");
	background-position: center right;
	background-size: cover;
	background-repeat: no-repeat;
	pointer-events: none;
}

.hero__inner {
	position: relative;
	z-index: 2;
	display: flex;
	min-height: 560px;
	align-items: center;
}

.hero__content {
	position: relative;
	z-index: 2;
	width: 44%;
	max-width: 520px;
}

.hero__eyebrow {
	margin-bottom: 12px;
	padding: 7px 11px;
	font-size: 0.7rem;
	letter-spacing: 0.09em;
}

.hero h1 {
	max-width: 540px;
	margin-bottom: 18px;
	color: #ffffff !important;
	font-size: clamp(48px, 4.8vw, 60px);
	font-weight: 800;
	line-height: 1.03;
}

.hero h1 span {
	display: block;
	color: #ffffff !important;
}

.hero__description {
	max-width: 520px;
	margin-bottom: 20px;
	font-size: 18px;
	line-height: 1.52;
}

.hero__actions {
	gap: 12px;
	margin-bottom: 20px;
}

.hero__actions .button {
	min-height: 44px;
	padding: 10px 18px;
}

.section__intro {
	margin-bottom: 24px;
}

.section--why-biomaterial .container {
	display: block;
}

.why-biomaterial {
	padding: 32px 0;
	background: var(--color-light);
}

.section--why-biomaterial .why-biomaterial__grid {
	display: grid;
	grid-template-columns: minmax(0, 28%) minmax(0, 72%);
	gap: 28px;
	align-items: start;
	max-width: 1200px;
}

.why-biomaterial__intro h2 {
	margin: 0 0 14px;
	color: var(--color-primary);
	font-size: 14px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.why-biomaterial__intro p {
	margin: 0 0 16px;
	color: var(--color-gray);
	font-size: 0.92rem;
	line-height: 1.58;
}

.section .why-biomaterial__intro a[href] {
	display: inline-flex;
	align-items: center;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	color: var(--color-primary);
	font-size: 0.82rem;
	font-weight: 800;
	line-height: 1.2;
}

.why-biomaterial__items {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	padding-top: 6px;
}

.why-biomaterial__items::before {
	content: "";
	position: absolute;
	top: 28px;
	left: 10%;
	right: 10%;
	border-top: 1px dashed rgba(0, 87, 63, 0.22);
}

.why-item {
	position: relative;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.why-item__icon {
	position: relative;
	z-index: 1;
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	margin: 0 0 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
	box-shadow: 0 10px 24px rgba(0, 87, 63, 0.16);
}

.why-item__icon img {
	display: block;
	width: 26px;
	height: 26px;
	filter: brightness(0) invert(1);
	object-fit: contain;
}

.why-item h3 {
	margin: 0 0 8px;
	color: var(--color-dark);
	font-size: 0.98rem;
	font-weight: 800;
	line-height: 1.25;
}

.why-item p {
	margin: 0;
	color: var(--color-gray);
	font-size: 0.82rem;
	line-height: 1.48;
}

.why-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.section--impact {
	padding: 24px 0;
	background: #ffffff;
	color: var(--color-white);
}

.impact-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.impact-statbar {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0;
	overflow: hidden;
	width: 100%;
	max-width: 1200px;
	margin-inline: auto;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	background:
		radial-gradient(circle at 8% 10%, rgba(34, 197, 94, 0.16), transparent 18rem),
		linear-gradient(135deg, #003f30 0%, #07111f 62%, #0f172a 100%);
	box-shadow: 0 18px 46px rgba(15, 23, 42, 0.16);
}

.impact-statbar .impact-card {
	display: grid;
	align-content: center;
	justify-items: start;
	min-height: 112px;
	padding: 18px 18px 16px;
	border: 0;
	border-right: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
}

.impact-statbar .impact-card:last-child {
	border-right: 0;
}

.impact-card__icon {
	display: block;
	width: 20px;
	height: 20px;
	margin-top: 0;
	margin-bottom: 10px;
	border: 1px solid rgba(187, 247, 208, 0.44);
	border-radius: 7px;
	background:
		linear-gradient(135deg, rgba(187, 247, 208, 0.34), rgba(34, 197, 94, 0.12));
}

.impact-statbar .impact-card strong {
	display: block;
	color: var(--color-white);
	font-size: clamp(1.55rem, 2.4vw, 2.25rem);
	font-weight: 850;
	line-height: 0.95;
}

.impact-statbar .impact-card > span:not(.impact-card__icon):not(.impact-stat__icon) {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.78rem;
	font-weight: 750;
	line-height: 1.25;
}

.impact-bar .impact-stat {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	min-height: 104px;
	padding: 18px 16px;
}

.impact-statbar.impact-bar .impact-stat .impact-stat__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin: 0;
	border: 1px solid rgba(187, 247, 208, 0.44);
	border-radius: 999px;
	background:
		linear-gradient(135deg, rgba(187, 247, 208, 0.34), rgba(34, 197, 94, 0.12));
}

.impact-statbar.impact-bar .impact-stat .impact-stat__icon img {
	display: block;
	width: 22px;
	height: 22px;
	filter: brightness(0) invert(1);
	object-fit: contain;
}

.impact-statbar.impact-bar .impact-stat__content {
	min-width: 0;
}

.impact-statbar.impact-bar .impact-stat__content strong,
.impact-statbar.impact-bar .impact-stat__content span {
	display: block;
}

.impact-statbar.impact-bar .impact-stat__content strong {
	color: var(--color-white);
	font-size: clamp(1.45rem, 2.1vw, 2rem);
	font-weight: 850;
	line-height: 0.95;
}

.impact-statbar.impact-bar .impact-stat__content span {
	margin-top: 6px;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.74rem;
	font-weight: 750;
	line-height: 1.25;
}

.research-grid {
	grid-template-columns: repeat(6, minmax(0, 1fr));
}

.innovation-grid {
	grid-template-columns: repeat(5, minmax(0, 1fr));
}

.news-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.research-card,
.innovation-card,
.news-card,
.why-card,
.impact-card,
.leader-card,
.researcher-card,
.fellows-panel,
.map-showcase,
.cta-panel,
.laboratory-content,
.lab-panel {
	border-radius: 12px;
}

.research-card,
.innovation-card,
.news-card,
.why-card,
.leader-card,
.researcher-card,
.map-showcase {
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.editorial-card .card-body {
	padding: 14px;
}

.section--research .research-card .card-image {
	height: 160px;
	aspect-ratio: auto;
	border-radius: 12px 12px 0 0;
	border-bottom: 1px solid var(--color-border);
	background: #f8fafc;
}

.section--research .research-card .card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section--innovation .innovation-card .card-image {
	height: 160px;
	aspect-ratio: auto;
	border-radius: 12px 12px 0 0;
	border-bottom: 1px solid var(--color-border);
	background: #f8fafc;
}

.section--innovation .innovation-card .card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section--news .news-card .card-image {
	height: 160px;
	aspect-ratio: auto;
	border-radius: 12px 12px 0 0;
	border-bottom: 1px solid var(--color-border);
	background: #f8fafc;
}

.section--news .news-card .card-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.news-card__link {
	display: inline-flex;
	margin-top: 16px;
	color: var(--color-primary);
	font-size: 0.82rem;
	font-weight: 850;
	text-decoration: none;
}

.news-card__link:hover {
	color: var(--color-primary-dark);
}

.research-card h3,
.innovation-card h3,
.news-card h3 {
	font-size: 0.95rem;
}

.research-card p,
.innovation-card p,
.news-card p {
	font-size: 0.82rem;
}

.laboratory-layout {
	display: grid;
	grid-template-columns: minmax(0, 68%) minmax(300px, 32%);
	gap: 20px;
	align-items: stretch;
}

.laboratory-showcase {
	order: 1;
	height: 380px;
	min-height: 0;
}

.lab-panel--large {
	height: 100%;
	min-height: 0;
}

.laboratory-content {
	order: 2;
	display: grid;
	align-content: center;
	height: 380px;
	padding: 28px;
	border-radius: 12px;
	background:
		radial-gradient(circle at 85% 14%, rgba(34, 197, 94, 0.18), transparent 12rem),
		linear-gradient(135deg, #003d2e, #061827);
	color: var(--color-white);
}

.capability-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

.capability-block {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	min-height: 0;
	padding: 18px 0;
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	background: transparent;
	box-shadow: none;
}

.capability-block:first-child {
	border-top: 0;
	padding-top: 0;
}

.capability-block:last-child {
	padding-bottom: 0;
}

.capability-block__icon {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-top: 1px;
}

.capability-block .capability-block__icon {
	flex: initial;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.capability-block__icon img {
	display: block;
	width: 32px;
	height: 32px;
	object-fit: contain;
}

.capability-block h3 {
	margin: 0 0 6px;
	color: var(--color-white);
	font-size: 0.98rem;
	line-height: 1.22;
}

.capability-block p {
	margin: 0;
	color: rgba(255, 255, 255, 0.72);
	font-size: 0.82rem;
	line-height: 1.48;
}

.people-layout {
	display: grid;
	grid-template-columns: minmax(280px, 1.25fr) minmax(190px, 0.82fr) minmax(190px, 0.82fr) minmax(300px, 1.12fr);
	gap: 16px;
	align-items: stretch;
}

.person-photo--leader img,
.person-photo--leader .image-slot {
	min-height: 244px;
}

.professor-column .researcher-card {
	display: grid;
	grid-template-rows: 118px auto;
	gap: 12px;
	min-height: 0;
	padding: 12px;
}

.professor-column {
	display: grid;
	grid-column: span 2;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}

.professor-column .researcher-card p {
	margin: 5px 0 0;
	color: var(--color-gray);
	font-size: 0.78rem;
	font-weight: 800;
	line-height: 1.3;
}

.leader-card {
	display: grid;
	grid-template-columns: minmax(150px, 0.48fr) minmax(0, 0.52fr);
	gap: 0;
	overflow: hidden;
}

.leader-card__content {
	position: relative;
	display: grid;
	align-content: center;
	padding: 20px;
}

.leader-expertise {
	display: grid;
	gap: 5px;
	margin: 12px 0 0;
	padding-left: 18px;
	color: var(--color-gray);
	font-size: 0.8rem;
	font-weight: 760;
	line-height: 1.35;
}

.leader-expertise li::marker {
	color: var(--color-primary);
}

.people-arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	margin-top: 16px;
	border-radius: 999px;
	background: var(--color-primary);
	color: var(--color-white);
	font-size: 1rem;
	font-weight: 900;
}

.people-arrow--light {
	flex: 0 0 auto;
	margin-top: 0;
	background: rgba(255, 255, 255, 0.12);
	color: #bbf7d0;
}

.fellows-panel {
	display: grid;
	align-content: start;
	padding: 20px;
	border-radius: 12px;
	background:
		radial-gradient(circle at 90% 12%, rgba(34, 197, 94, 0.18), transparent 10rem),
		linear-gradient(135deg, #003d2e, #061827);
	color: var(--color-white);
}

.fellows-panel__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 12px;
}

.fellows-panel__heading h3 {
	margin: 0;
	color: var(--color-white);
	font-size: 1.2rem;
	line-height: 1.2;
}

.fellows-panel__list {
	display: grid;
	gap: 0;
}

.fellow-card {
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 12px;
	align-items: center;
	padding: 11px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.fellow-card .person-photo,
.fellow-card .person-photo img,
.fellow-card .person-photo .image-slot {
	width: 54px;
	height: 54px;
	min-height: 54px;
}

.map-split {
	grid-template-columns: minmax(0, 60%) minmax(0, 40%);
}

.global-map__visual {
	min-height: 340px;
}

.section--cta {
	padding: 56px 0 0;
	margin-bottom: 0;
}

.cta-panel {
	min-height: 210px;
	background:
		linear-gradient(90deg, rgba(0, 63, 48, 0.96), rgba(0, 87, 63, 0.78), rgba(15, 23, 42, 0.5)),
		var(--cta-image, linear-gradient(135deg, #003f30, #0f172a));
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-cta {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 48px 0;
	background:
		linear-gradient(90deg, rgba(0, 42, 31, 0.96), rgba(0, 87, 63, 0.78), rgba(15, 23, 42, 0.48)),
		var(--cta-image, url("../images/hero/hero-biomaterial.png"));
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--color-white);
	overflow: hidden;
}

.home-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	width: min(100% - 48px, 1200px);
	margin-inline: auto;
}

.home-cta__content {
	max-width: 760px;
}

.home-cta h2 {
	margin: 0;
	color: var(--color-white);
	font-size: clamp(1.85rem, 3vw, 3rem);
	line-height: 1.12;
}

.home-cta p {
	margin: 12px 0 0;
	color: rgba(255, 255, 255, 0.86);
	font-size: 1rem;
	line-height: 1.6;
}

.home-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 8px;
	background: var(--color-white);
	color: var(--color-primary);
	font-size: 0.92rem;
	font-weight: 900;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.18);
}

.section--people .home-people {
	display: grid;
	grid-template-columns: 1.45fr 1fr 1fr 1.35fr;
	gap: 12px;
	align-items: stretch;
	max-width: 1200px;
	margin-inline: auto;
}

.section--people .home-people__leader,
.section--people .home-people__prof-card,
.section--people .home-people__fellows {
	min-height: 204px;
	max-height: 220px;
	border: 1px solid rgba(15, 23, 42, 0.1);
	border-radius: 12px;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
	overflow: hidden;
}

.section--people .home-people__leader {
	display: grid;
	grid-template-columns: 42% 58%;
	background: var(--color-white);
}

.section--people .home-people__leader .person-photo,
.section--people .home-people__prof-card .person-photo {
	width: 100%;
	height: 100%;
	margin: 0;
	border-radius: 0;
	overflow: hidden;
}

.section--people .home-people__leader .person-photo img,
.section--people .home-people__leader .person-photo .image-slot,
.section--people .home-people__prof-card .person-photo img,
.section--people .home-people__prof-card .person-photo .image-slot {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 0;
	object-fit: cover;
	object-position: top center;
}

.section--people .home-people__prof-card .person-photo {
	background: #f8fafc;
}

.section--people .home-people__prof-card .person-photo img {
	height: 120px;
	padding: 8px 8px 0;
	background: #f8fafc;
	object-fit: contain;
	object-position: center top;
}

.section--people .home-people__leader .leader-card__content {
	position: relative;
	display: grid;
	align-content: center;
	min-width: 0;
	padding: 16px 16px 14px;
}

.section--people .home-people__leader .person-kicker {
	margin: 0 0 7px;
	color: var(--color-primary);
	font-size: 0.62rem;
	font-weight: 900;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.section--people .home-people__leader h3 {
	margin: 0 0 6px;
	color: var(--color-dark);
	font-size: 1.08rem;
	line-height: 1.16;
}

.section--people .home-people__leader p:not(.person-kicker) {
	margin: 0;
	color: var(--color-gray);
	font-size: 0.78rem;
	font-weight: 760;
	line-height: 1.35;
}

.section--people .home-people__leader .leader-expertise {
	gap: 3px;
	margin: 9px 0 0;
	padding-left: 16px;
	font-size: 0.72rem;
	line-height: 1.24;
}

.section--people .home-people__leader .people-arrow {
	position: absolute;
	right: 14px;
	bottom: 12px;
	width: 32px;
	height: 32px;
	margin: 0;
}

.section--people .home-people__prof-card {
	display: grid;
	grid-template-rows: 112px minmax(0, 1fr);
	padding: 0;
	background: var(--color-white);
}

.section--people .home-people__prof-body {
	display: grid;
	align-content: center;
	min-width: 0;
	padding: 12px 14px;
}

.section--people .home-people__prof-card h3 {
	margin: 0 0 5px;
	color: var(--color-dark);
	font-size: 0.92rem;
	line-height: 1.18;
}

.section--people .home-people__prof-card p {
	margin: 0;
	color: var(--color-gray);
	font-size: 0.74rem;
	font-weight: 800;
	line-height: 1.25;
}

.section--people .home-people__fellows {
	position: relative;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	padding: 16px;
	background:
		radial-gradient(circle at 88% 14%, rgba(34, 197, 94, 0.18), transparent 9rem),
		linear-gradient(135deg, #003d2e, #061827);
	color: var(--color-white);
}

.section--people .home-people__fellows .fellows-panel__heading {
	margin: 0 0 14px;
}

.section--people .home-people__fellows .fellows-panel__heading h3 {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.2;
}

.section--people .home-people__fellows .fellows-panel__list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.section--people .home-people__fellows .fellow-card {
	display: grid;
	grid-template-columns: 1fr;
	gap: 8px;
	align-content: start;
	padding: 0;
	border: 0;
	min-width: 0;
}

.section--people .home-people__fellows .person-photo,
.section--people .home-people__fellows .person-photo img,
.section--people .home-people__fellows .person-photo .image-slot {
	width: 100%;
	height: 78px;
	min-height: 0;
	margin: 0;
	border-radius: 10px;
	object-fit: cover;
	object-position: top center;
	overflow: hidden;
}

.section--people .home-people__fellows .fellow-card h4 {
	margin: 0 0 4px;
	color: var(--color-white);
	font-size: 0.72rem;
	line-height: 1.15;
}

.section--people .home-people__fellows .fellow-card p,
.section--people .home-people__fellows .fellow-card span {
	display: block;
	margin: 0;
	color: rgba(255, 255, 255, 0.7);
	font-size: 0.62rem;
	font-weight: 760;
	line-height: 1.2;
}

.section--people .home-people__fellows .fellow-card span {
	margin-top: 3px;
	color: #bbf7d0;
}

.section--people {
	padding: 28px 0 34px;
	background: #ffffff;
}

.section--people .container {
	max-width: 1200px;
}

.section--people .section-heading {
	margin-bottom: 12px;
}

.section--people .section-heading__title {
	font-size: 13px;
	line-height: 1.2;
}

.section--people .section-heading__link {
	font-size: 12px;
	line-height: 1.2;
}

.section--people .home-people,
.section--people .home-people__grid {
	grid-template-columns: 1.55fr 1fr 1fr 1.35fr;
	gap: 10px;
}

.section--people .home-people__leader,
.section--people .home-people__prof-card,
.section--people .home-people__fellows {
	height: 176px;
	min-height: 176px;
	max-height: 176px;
}

.section--people .home-people__leader {
	grid-template-columns: 36% 64%;
}

.section--people .home-people__leader .leader-card__content {
	padding: 13px 14px;
}

.section--people .home-people__leader .person-kicker {
	margin-bottom: 5px;
	font-size: 9px;
}

.section--people .home-people__leader h3 {
	margin-bottom: 4px;
	font-size: 16px;
	line-height: 1.12;
}

.section--people .home-people__leader p:not(.person-kicker) {
	font-size: 11px;
	line-height: 1.3;
}

.section--people .home-people__leader .leader-expertise {
	gap: 2px;
	margin-top: 6px;
	font-size: 10.5px;
	line-height: 1.2;
}

.section--people .home-people__prof-card {
	grid-template-rows: 105px minmax(0, 1fr);
}

.section--people .home-people__prof-card .person-photo img {
	height: 105px;
	padding: 6px 8px 0;
}

.section--people .home-people__prof-body {
	padding: 8px 12px;
}

.section--people .home-people__prof-card h3 {
	margin-bottom: 3px;
	font-size: 13.5px;
	line-height: 1.15;
}

.section--people .home-people__prof-card p {
	font-size: 10.5px;
	line-height: 1.2;
}

.section--people .home-people__fellows {
	padding: 12px;
}

.section--people .home-people__fellows .fellows-panel__heading {
	margin-bottom: 8px;
}

.section--people .home-people__fellows .fellows-panel__heading h3 {
	font-size: 14px;
}

.section--people .home-people__fellows .fellows-panel__list,
.section--people .home-people__fellows-grid {
	gap: 8px;
}

.section--people .home-people__fellows .person-photo,
.section--people .home-people__fellows .person-photo img,
.section--people .home-people__fellows .person-photo .image-slot,
.section--people .home-people__fellows-grid img {
	height: 66px;
}

.section--people .home-people__fellows .fellow-card {
	gap: 6px;
}

.section--people .home-people__fellows .fellow-card h4 {
	font-size: 10px;
	line-height: 1.12;
}

.section--people .home-people__fellows .fellow-card p,
.section--people .home-people__fellows .fellow-card span {
	font-size: 9px;
}

.section--people .home-people__leader .people-arrow,
.section--people .home-people__fellows .people-arrow {
	width: 34px;
	height: 34px;
}

@media (max-width: 1100px) {
	.section--why-biomaterial .why-biomaterial__grid {
		grid-template-columns: 1fr;
	}

	.why-biomaterial__intro {
		max-width: 560px;
	}

	.why-biomaterial__items {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.why-biomaterial__items::before {
		display: none;
	}

	.laboratory-layout {
		grid-template-columns: 1fr;
	}

	.laboratory-content {
		height: auto;
	}

	.people-layout {
		grid-template-columns: 1fr;
	}

	.professor-column {
		grid-column: auto;
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.hero__inner {
		min-height: auto;
	}

	.bio-card {
		width: min(100%, 420px);
		max-width: 420px;
		height: 400px;
		min-height: 0;
		margin-inline: 0;
	}

	.why-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.impact-grid,
	.research-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.innovation-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.laboratory-layout {
		grid-template-columns: 1fr;
	}

	.laboratory-showcase {
		height: 360px;
		min-height: 0;
	}

	.news-grid {
		grid-template-columns: 1fr;
	}

	.cta-panel {
		align-items: flex-start;
		flex-direction: column;
	}
}

@media (max-width: 720px) {
	.hero {
		padding: 72px 0;
	}

	.why-biomaterial__items {
		grid-template-columns: 1fr;
	}

	.why-item {
		display: grid;
		grid-template-columns: 46px minmax(0, 1fr);
		column-gap: 14px;
		align-items: start;
	}

	.why-item__icon {
		grid-row: span 2;
		margin-bottom: 0;
	}

	.professor-column {
		grid-template-columns: 1fr;
	}

	.hero__actions {
		margin-bottom: 36px;
	}

	.hero__actions .button {
		width: 100%;
	}

	.bio-card {
		height: 360px;
		min-height: 0;
		border-radius: 24px;
	}

	.bio-card__panel {
		min-width: 0;
		width: calc(100% - 40px);
	}

	.bio-card__panel--top {
		top: 20px;
		left: 20px;
	}

	.bio-card__panel--bottom {
		right: 20px;
		bottom: 20px;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.why-card {
		min-height: 0;
	}

	.impact-grid,
	.research-grid,
	.innovation-grid {
		grid-template-columns: 1fr;
	}

	.impact-statbar {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.impact-card,
	.research-card,
	.innovation-card {
		min-height: 0;
	}

	.impact-statbar .impact-card {
		min-height: 104px;
		border-right: 1px solid rgba(255, 255, 255, 0.13);
		border-bottom: 1px solid rgba(255, 255, 255, 0.13);
	}

	.impact-statbar .impact-card:nth-child(2n) {
		border-right: 0;
	}

	.impact-statbar .impact-card:nth-last-child(-n+2) {
		border-bottom: 0;
	}

	.capability-grid {
		grid-template-columns: 1fr;
	}

	.laboratory-showcase {
		height: 280px;
		min-height: 0;
	}

	.lab-panel--large {
		inset: auto;
	}

	.leader-card {
		grid-template-columns: 1fr;
	}

	.lab-panel--small {
		width: 50%;
		height: 120px;
	}

	.researcher-grid {
		grid-template-columns: 1fr;
	}

	.global-map__visual {
		height: 320px;
	}

	.country-list {
		justify-content: flex-start;
	}
}
