.heading {
    max-width: 680px;
    margin: 0 auto;
}

.heading h1 {
    margin-top: 1rem;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 500;
}

.heading p {
    font-size: clamp(14px, 2.5vw, 18px);
    text-align: right;
}

/* Spacer */
hr {
    margin: 1rem 0;
    /* border-width: 1px; */
}

/* Posts */
.posts {
    margin-top: 1.5rem;
    color: var(--text-secondary);
}

.posts .title {
    font-weight: 500;
    color: var(--text-secondary);
}

.posts .title a {
    color: unset;
    word-wrap: break-word;
}

.posts .post {
    margin-top: 1.25rem;
}

.posts .post .date {
    margin-top: 0.2rem;
    font-size: 0.875rem;
    opacity: 0.7;
}

.posts .post .excerpt {
    margin-top: 0.6rem;
}

@media (max-width: 600px) {
    .posts .title {
        font-size: 1.25rem;
    }

    .posts .post .date {
        font-size: 0.75rem;
    }

    .posts .post .excerpt {
        font-size: 0.875rem;
    }
}
