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

:root {
    --text: #111;
    --muted: #666;
    --border: #949494;
    --bg: #fff5ff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
}

main {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

a {
    color: var(--text);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0;
    gap: 2rem;
}

header h1 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.headline {
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    font-size: 0.85rem;
    color: var(--muted);
    padding-top: 0.2rem;
}

.header-right a {
    color: var(--muted);
}

.header-right a:hover {
    color: var(--text);
    text-decoration: none;
}

/* Sections */

section {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 0 2.5rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    padding-top: 0.35rem;
}

section > p {
    max-width: 480px;
}

/* Entries */

.entries {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.entry-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.15rem;
}

.entry-place {
    font-weight: 600;
    font-size: 0.95rem;
}

.entry-date {
    font-size: 0.8rem;
    color: var(--muted);
    white-space: nowrap;
}

.entry-link {
    font-size: 0.8rem;
    color: var(--muted);
    white-space: nowrap;
}

.entry-link:hover {
    color: var(--text);
    text-decoration: none;
}

.entry-title {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

.entry-desc {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 480px;
}

/* Skills */

.skill-groups {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.skill-group {
    display: flex;
    gap: 1rem;
}

.skill-label {
    color: var(--muted);
    min-width: 80px;
}

/* Footer */

footer {
    padding-top: 2rem;
    font-size: 0.8rem;
    color: var(--muted);
}
