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

body {
    font-family: neue-haas-grotesk-text, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #fcfcfc;
    color: #1f1f1f;
    line-height: 1.7;
    font-size: 17px;
    letter-spacing: 0;
}

.page {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 36px 88px;
}

.top-nav {
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    margin-bottom: 44px;
    padding-bottom: 18px;
}

.brand,
.nav-links a,
.post-link,
.back-link {
    color: #111;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.brand:hover,
.nav-links a:hover,
.post-link:hover,
.back-link:hover {
    color: #666;
    text-decoration-thickness: 2px;
}

.brand:focus,
.nav-links a:focus,
.post-link:focus,
.back-link:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
    border-radius: 2px;
}

.nav-links {
    display: flex;
    gap: 16px;
}

.eyebrow {
    color: #777;
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

h1 {
    color: #111;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
    margin-bottom: 16px;
}

h2 {
    color: #111;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
    margin: 44px 0 16px;
}

.lede {
    color: #4f4f4f;
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: 34px;
}

.post-list {
    border-top: 1px solid #e8e8e8;
    list-style: none;
    margin-top: 32px;
}

.post-list li {
    border-bottom: 1px solid #e8e8e8;
    padding: 24px 0;
}

.post-link {
    display: inline-block;
    font-size: 20px;
    margin-bottom: 8px;
}

.post-summary {
    color: #555;
}

article {
    animation: fadeIn 0.5s ease 0.1s both;
}

article header {
    margin-bottom: 42px;
    padding-bottom: 8px;
}

article p {
    font-size: 18px;
    line-height: 1.78;
    margin: 0 0 24px;
}

article ul {
    margin: 0 0 28px 24px;
}

article li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 8px;
}

figure {
    margin: 36px 0;
}

figure img {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    display: block;
    height: auto;
    max-width: 100%;
}

figcaption {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
    margin-top: 8px;
}

.review-card {
    background: #fff;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    box-shadow: 0 12px 34px rgba(17, 17, 17, 0.07);
    margin: 34px 0 36px;
    overflow: hidden;
}

.review-card-header {
    background: #f4f4f4;
    border-bottom: 1px solid #e3e3e3;
    color: #666;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    padding: 11px 16px;
    text-transform: uppercase;
}

.review-line {
    border-bottom: 1px solid #eeeeee;
    padding: 18px 18px 17px;
}

.review-line:last-of-type {
    border-bottom: 0;
}

.review-speaker {
    color: #777;
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.review-line p {
    color: #1f1f1f;
    font-size: 19px;
    font-weight: 650;
    line-height: 1.4;
    margin: 0;
}

.pm-line {
    background: #f1f8f3;
}

.review-card-note {
    border-top: 1px solid #e3e3e3;
    color: #777;
    font-size: 13px;
    font-style: italic;
    line-height: 1.5;
    padding: 12px 16px;
}

article strong {
    color: #111;
}

.back-link {
    display: inline-block;
    margin-top: 28px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 620px) {
    body {
        font-size: 16px;
    }

    .page {
        padding: 36px 22px 60px;
    }

    .top-nav {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 23px;
    }

    .lede {
        font-size: 18px;
    }

    article p,
    article li {
        font-size: 16px;
    }

}
