.page {
    max-width: 60ch;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
}
h1 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}
.intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
}
.portrait {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.subtitle {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}
p {
    text-align: justify;
    hyphens: auto;
}
h2 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin: 2.25rem 0 0.75rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.35rem;
}
.cv-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.cv-table td {
    padding: 0.4rem 0;
    border: none;
    vertical-align: top;
}
.cv-table .date {
    width: 110px;
    color: var(--muted);
    font-family: var(--sans);
    font-size: 0.85rem;
}
.cv-table .title {
    width: 45%;
    font-weight: normal;
    font-family: var(--sans);
    font-size: 0.85rem;
}
.cv-table .org {
    color: var(--muted);
    font-family: var(--sans);
    font-size: 0.85rem;
}
.contact-item {
    margin: 0.3rem 0;
    font-family: var(--sans);
    font-size: 0.9rem;
}
.contact-item a {
    color: inherit;
    text-decoration: none;
}
.contact-item a:hover {
    text-decoration: underline;
}
.article-list {
    list-style: none;
    padding: 0;
}
.article-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}
.article-list li:last-child {
    border-bottom: none;
}
.article-date {
    color: var(--muted);
    font-family: var(--mono);
    font-size: 0.82rem;
    margin-right: 0.5em;
}
.article-title {
    font-weight: 600;
    font-size: 0.95rem;
}
.article-tag {
    font-size: 0.75rem;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.1em 0.4em;
    margin-left: 0.4em;
    vertical-align: middle;
}
.article-desc {
    color: var(--muted);
    font-size: 0.85rem;
    margin-top: 0.15rem;
}
