﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
    background-color: #fafbfc;
    color: #1e2a3e;
    line-height: 1.5;
    scroll-behavior: smooth;
}

.container {
    width: 1250px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.personal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: nowrap;
}

.personal-info {
    flex: 1;
}

.personal-info h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1f2b3c, #2c3e50);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}

.personal-tagline {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c5282;
    margin-bottom: 0.75rem;
}

.personal-bio {
    font-size: 1rem;
    color: #4a5568;
    max-width: 750px;
    text-align: justify;
    margin-bottom: 1.2rem;
}

.contact-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-top: 0.5rem;
}

.contact-links a {
    text-decoration: none;
    color: #2d3748;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-links a:hover {
    color: #1a4c7a;
    text-decoration: underline;
}

.img-placeholder {
    width: 300px;
    height: 380px;
    flex-shrink: 0;
    align-self: center;
}

.img-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.section {
    margin-bottom: 2.8rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    border-left: 5px solid #2c5282;
    padding-left: 1rem;
    margin-bottom: 1.5rem;
    color: #0f2b3d;
}

.note-star {
    font-size: 0.8rem;
    font-weight: normal;
    margin-left: 0.5rem;
    color: #5f7f9e;
}

.publication-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.pub-item {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    border: 1px solid #eef2f6;
    transition: box-shadow 0.2s;
}

.pub-item:hover {
    box-shadow: 0 6px 14px rgba(0,0,0,0.03);
    border-color: #dce3ec;
}

.pub-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e2f3e;
    margin-bottom: 0.4rem;
}

.pub-authors {
    font-size: 0.85rem;
    color: #4b6b8f;
    margin-bottom: 0.3rem;
}

.pub-venue {
    font-size: 0.8rem;
    font-weight: 500;
    color: #2c5282;
    background: #eef2fa;
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    margin-top: 0.4rem;
}

.item-underline {
	text-decoration: underline;
}

.footer {
    margin-top: 3rem;
    padding-top: 1.8rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    font-size: 0.85rem;
    color: #6c86a3;
}