body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background: #fafafa;
    color: #333;
    line-height: 1.6;

    font-family:
        "Microsoft YaHei",
        "PingFang SC",
        "Hiragino Sans GB",
        "Noto Sans CJK SC",
        Arial,
        sans-serif;
}

header {
    background: #003366;
    color: white;
    padding: 15px 20px;
    text-align: center;
}

header h1 {
    margin: 5px 0;
    font-size: 2.5rem;
}

header p {
    margin: 5px 0;
}

header a {
    color: white;
    text-decoration: underline;
    text-decoration-color: white;
}

header a:visited {
    color: white;
    text-decoration-color: white;
}

header a:hover {
    color: white;
    text-decoration-color: white;
}

nav {
    background: #f5f5f5;
    text-align: center;
    padding: 15px;
    position: sticky;
    top: 0;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #003366;
    font-weight: bold;
}

section {
    max-width: 1000px;
    margin: auto;
    padding: 40px 20px;
}

h2 {
    text-align: center;
    color: #003366;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0px;
    margin-bottom: 10px;
}

.people-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 20px;
}

.person {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
}

.pub {
    margin-bottom: 15px;
}

footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 20px;
}

section {
    max-width: 1200px;
    margin: auto;
    padding: 0px 0px;
}

h1 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.member-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 8px;
    text-align: center;
    transition: transform 0.2s ease;
}

.member-card:hover {
    transform: translateY(-5px);
}

.member-card img {
    width: 120px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.member-card h3 {
    font-size: 1rem;
    margin: 5px 0 1px 0;
    color: #003366;
}

.position {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.member-card p {
    min-height: 60px;
    line-height: 1.5;
}

.links {
    margin-top: 2px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.links a {
    display: inline-block;
    margin: 0 8px;
    color: #0066cc;
    text-decoration: none;
    font-size: 0.85rem;
}

.links a:hover {
    text-decoration: underline;
}

.disabled-link {
    color: #999;
    font-size: 0.8rem;
    cursor: default;
    margin: 0 4px;
}