* {
    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;
}

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;
}

/* Side-by-side bios and link columns */
.bios,
.link-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.bio .profile-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    margin-bottom: 14px;
    display: block;
}

.bio h3,
.link-cols h3 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111;
}

.bio p {
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

/* Links section */
.link-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 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;
}

/* 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;
    }

    .bios,
    .link-cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

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

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