/* Academic single-page style */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    padding: 2rem 1rem;
}

.container {
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
.header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ccc;
}

h1 {
    font-size: 1.8rem;
    font-weight: normal;
    margin-bottom: 0.25rem;
}

.subtitle {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.25rem;
}

.affiliation {
    font-size: 0.95rem;
    color: #666;
}

/* Sections */
.section {
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.2rem;
    font-weight: normal;
    border-bottom: 1px solid #ddd;
    padding-bottom: 0.3rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 0.75rem;
}

/* Lists */
ul {
    margin-left: 1.25rem;
    margin-bottom: 0.75rem;
}

li {
    margin-bottom: 0.35rem;
}

/* Links */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Project */
.project {
    margin-top: 0.5rem;
}

.project h3 {
    font-size: 1.05rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

.project h4 {
    font-size: 0.95rem;
    font-weight: bold;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        font-size: 15px;
        padding: 1.5rem 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }
}
