.home-page {
	max-width: 1180px;
	padding: 18px 32px 36px;
}

.profile-card,
.content-card {
	background: var(--color-bg-card);
	border-radius: 28px;
	box-shadow: 0 22px 60px var(--color-shadow);
}

.profile-card {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 180px;
	gap: 36px;
	align-items: center;
	min-height: 320px;
	padding: 40px;
}

.content-card {
	margin-top: 20px;
	padding: 28px 40px 32px;
}

.profile-copy,
.paper-body {
	min-width: 0;
}

.eyebrow {
	margin-bottom: 12px;
	color: var(--color-accent);
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
	overflow-wrap: anywhere;
}

.info h1 {
	margin-bottom: 12px;
	color: var(--color-title);
	font-size: 2.65rem;
	line-height: 1.05;
	letter-spacing: 0;
}

.lead {
	color: var(--color-text-primary);
	font-size: 1.06rem;
	line-height: 1.6;
}

.affiliation,
.bio,
.paper-body p,
.timeline-list p {
	color: var(--color-text-secondary);
}

.affiliation {
	margin-top: 2px;
	font-size: 0.96rem;
}

.bio {
	max-width: 760px;
	margin-top: 22px;
	font-size: 0.94rem;
	line-height: 1.75;
}

.info h1,
.lead,
.affiliation,
.bio,
.timeline-list h3,
.paper-body h3,
.paper-body p {
	overflow-wrap: anywhere;
}

.portrait-wrap {
	justify-self: end;
}

.avatar {
	display: block;
	width: 164px;
	height: 206px;
	border-radius: 24px;
	box-shadow: 0 22px 40px rgba(20, 36, 64, 0.16);
	object-fit: cover;
	object-position: center;
}

.contact-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 24px;
}

.contact-more {
	display: contents;
}

.contact-more summary {
	display: inline-grid;
	place-items: center;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	border: 1px solid rgba(52, 152, 219, 0.28);
	border-radius: 999px;
	background: rgba(52, 152, 219, 0.06);
	color: var(--color-accent);
	cursor: pointer;
	list-style: none;
	transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.contact-more summary::-webkit-details-marker {
	display: none;
}

.contact-more summary:hover {
	border-color: rgba(52, 152, 219, 0.52);
	background: rgba(52, 152, 219, 0.12);
	transform: translateY(-1px);
}

.contact-more summary svg {
	width: 16px;
	height: 16px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 2.3;
	transition: transform 0.18s ease;
}

.contact-more[open] {
	display: contents;
}

.contact-more[open] summary svg {
	transform: rotate(180deg);
}

.contact-links-more {
	flex-basis: 100%;
	margin-top: 0;
}

.contact-links a,
.actions a {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	max-width: 100%;
	min-height: 34px;
	border: 1px solid rgba(52, 152, 219, 0.28);
	border-radius: 999px;
	background: rgba(52, 152, 219, 0.06);
	color: var(--color-accent);
	font-size: 0.86rem;
	line-height: 1;
	text-decoration: none;
	transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.contact-links a {
	padding: 0 14px;
}

.actions a {
	padding: 0 13px;
	font-size: 0.8rem;
}

.contact-links a:hover,
.actions a:hover {
	border-color: rgba(52, 152, 219, 0.52);
	background: rgba(52, 152, 219, 0.12);
	transform: translateY(-1px);
}

.section-header {
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 22px;
	padding-bottom: 16px;
}

.section-header h2 {
	color: var(--color-title);
	font-size: 1.5rem;
	line-height: 1.2;
}

.timeline-list,
.paper-list {
	list-style: none;
}

.timeline-list li {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 14px;
	align-items: start;
	padding: 14px 0;
	border-bottom: 1px solid var(--color-border);
}

.timeline-list li:last-child,
.paper-list li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.timeline-logo {
	display: grid;
	place-items: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--color-bg-card);
	box-shadow: 0 2px 10px rgba(20, 36, 64, 0.12);
}

.timeline-logo img {
	display: block;
	width: 26px;
	height: 26px;
	object-fit: contain;
}

.timeline-body {
	min-width: 0;
}

.timeline-body span {
	display: block;
	margin-bottom: 4px;
	color: var(--color-text-secondary);
	font-size: 0.88rem;
	line-height: 1.2;
}

.timeline-list h3,
.paper-body h3 {
	color: var(--color-text-primary);
	font-size: 0.98rem;
	line-height: 1.42;
}

.timeline-list h3 {
	font-weight: 800;
}

.project-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	list-style: none;
}

.project-card {
	min-width: 0;
	padding: 22px 20px;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	background: var(--color-bg-card);
	box-shadow: 0 12px 34px rgba(20, 36, 64, 0.07);
}

.project-card h3 {
	color: var(--color-text-primary);
	font-size: 0.98rem;
	line-height: 1.42;
}

.project-card p {
	margin-top: 10px;
	color: var(--color-text-secondary);
	font-size: 0.9rem;
	line-height: 1.6;
}

.project-details {
	margin-top: 16px;
}

.project-details summary {
	width: fit-content;
	color: var(--color-text-secondary);
	font-size: 0.92rem;
	line-height: 1.4;
	cursor: pointer;
}

.project-list-more {
	margin-top: 14px;
}

.paper-list li {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 28px;
	align-items: center;
	padding: 26px 0;
	border-bottom: 1px solid var(--color-border);
}

.paper-thumb {
	display: grid;
	place-items: center;
	width: 100%;
	aspect-ratio: 5 / 3;
	border: 1px solid var(--color-border);
	border-radius: 18px;
	background:
		linear-gradient(135deg, rgba(52, 152, 219, 0.16), rgba(255, 255, 255, 0.72)),
		radial-gradient(circle at 22% 28%, rgba(53, 100, 180, 0.2), transparent 34%);
	box-shadow: 0 14px 36px rgba(20, 36, 64, 0.08);
	color: var(--color-accent);
	font-size: 2.35rem;
}

.paper-thumb img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	object-fit: contain;
	background: #fff;
}

.paper-body p {
	margin-top: 8px;
	font-size: 0.94rem;
	line-height: 1.65;
}

.paper-body strong {
	color: var(--color-text-primary);
}

.actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.award-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.award-chips span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: var(--color-bg-chip);
	color: var(--color-text-primary);
	font-size: 0.88rem;
	line-height: 1.35;
}

.award-details {
	margin-top: 14px;
}

.award-details summary {
	width: fit-content;
	color: var(--color-accent);
	font-size: 0.92rem;
	line-height: 1.4;
	cursor: pointer;
}

.award-details .award-chips {
	margin-top: 14px;
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 10px;
}

.tags span {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 12px;
	border-radius: 999px;
	background: var(--color-bg-chip);
	color: var(--color-text-secondary);
	font-size: 0.76rem;
}

@media (max-width: 900px) {
	.home-page {
		padding: 16px 18px 28px;
	}

	.profile-card {
		grid-template-columns: 1fr;
		gap: 22px;
		padding: 30px;
	}

	.info h1 {
		font-size: 2.35rem;
	}

	.portrait-wrap {
		justify-self: center;
	}

	.paper-list li {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.paper-thumb {
		justify-self: center;
		max-width: 360px;
	}

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

@media (max-width: 620px) {
	.home-page {
		padding: 14px 12px 24px;
	}

	.profile-card,
	.content-card {
		border-radius: 22px;
	}

	.profile-card,
	.content-card {
		padding: 22px 18px;
	}

	.info h1 {
		font-size: 2rem;
	}

	.lead {
		font-size: 0.98rem;
	}

	.avatar {
		width: 132px;
		height: 168px;
		border-radius: 20px;
	}

	.timeline-list li {
		grid-template-columns: 34px minmax(0, 1fr);
		gap: 12px;
	}

	.timeline-logo {
		width: 30px;
		height: 30px;
	}

	.timeline-logo img {
		width: 23px;
		height: 23px;
	}

	.project-list {
		grid-template-columns: 1fr;
	}

	.section-header h2 {
		font-size: 1.32rem;
	}
}
