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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fff;
    color: #111;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 640px;
    margin: 0 auto;
    padding: 80px 24px 60px;
}

a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
    transition: opacity 0.15s ease;
}

a:hover {
    opacity: 0.5;
}

/* Profile photo */
.profile-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    margin-bottom: 24px;
    filter: grayscale(100%);
}

header {
    margin-bottom: 64px;
}

header h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.tagline {
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.tagline a {
    color: #555;
}

section {
    margin-bottom: 56px;
}

h2 {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #999;
    margin-bottom: 20px;
}

section > p {
    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.7;
}

section > p:last-of-type {
    margin-bottom: 0;
}

/* Links section */
.link-list {
    list-style: none;
    display: flex;
    gap: 24px;
}

.link-list a {
    font-size: 15px;
    color: #111;
}

/* Press & Podcasts */
.press-list {
    list-style: none;
}

.press-list li {
    border-bottom: 1px solid #eee;
}

.press-list li:first-child {
    border-top: 1px solid #eee;
}

.press-list a {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    text-decoration: none;
    gap: 16px;
}

.press-list a:hover {
    opacity: 1;
}

.press-list a:hover .press-title {
    opacity: 0.5;
}

.press-outlet {
    font-size: 15px;
    font-weight: 500;
    flex-shrink: 0;
}

.press-year {
    font-size: 12px;
    font-weight: 400;
    color: #bbb;
    margin-left: 6px;
}

.press-title {
    font-size: 14px;
    color: #888;
    text-align: right;
    transition: opacity 0.15s ease;
}

/* Books */
.books-intro {
    margin-bottom: 32px !important;
}

.book-year {
    margin-bottom: 40px;
}

.book-year:last-child {
    margin-bottom: 0;
}

.book-year h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.book-year ol {
    list-style: none;
    counter-reset: book-counter;
}

.book-year ol li {
    counter-increment: book-counter;
    font-size: 14px;
    color: #444;
    padding: 4px 0;
    line-height: 1.5;
}

.book-year ol li a {
    color: #444;
    text-decoration: none;
}

.book-year ol li a:hover {
    text-decoration: underline;
    opacity: 1;
}

.book-year ol li::before {
    content: counter(book-counter) ".";
    display: inline-block;
    width: 28px;
    color: #bbb;
    font-size: 13px;
    font-variant-numeric: tabular-nums;
}

/* Footer */
footer {
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

footer p {
    font-size: 13px;
    color: #bbb;
}

/* Responsive */
@media (max-width: 480px) {
    .container {
        padding: 48px 20px 40px;
    }

    header h1 {
        font-size: 26px;
    }

    .press-list a {
        flex-direction: column;
        gap: 2px;
    }

    .press-title {
        text-align: left;
    }
}
