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

a {
    color: inherit;
    text-decoration: none;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    font-family: "Inter", sans-serif;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    width: 100%;
    height: 75px;
    background: #fff;
}

.branding {
    font-weight: 800;
    color: black;
    font-size: 1.1rem;
}

.nav-logo {
    height: 32px;
    width: auto;
    display: block;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.button {
    width: auto;
    height: auto;
    padding: 10px 30px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 0px;
    cursor: pointer;
}

.button.inverse {
    background-color: white;
    outline: 1px solid black;
    color: black;
}

.content {
    flex: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    width: 100%;
}

.empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
    color: #666;
    gap: 10px;
}

.empty h1 {
    font-size: 1.5rem;
    color: #333;
}

.posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.post {
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e5e5;
}

.post:last-child {
    border-bottom: none;
}

.post-meta {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 10px;
}

.post-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.post-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    white-space: pre-wrap;
}

@media (max-width: 600px) {
    .post-title {
        font-size: 1.5rem;
    }
    .content {
        padding: 20px;
    }
}
