.post-header {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--seperator);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
}

.post-header h1 {
    margin-bottom: 0.5rem;
    font-weight: 800;
    font-size: 2rem;
    line-height: 1.2;
    color: var(--text-lightred);
}

.post-header p {
    margin-top: 0;
    color: var(--text-dark-subtext-color);
}

.post-header .meta-links {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.update-notice {
    margin: 2rem 0;
    padding: 1.5rem;
    border: 1px solid var(--text-highlight);
    border-left: 5px solid var(--text-highlight);
    border-radius: 6px;
    background-color: rgba(255, 94, 94, 0.05);
}

article h2 {
    margin-top: 3rem;
    border-bottom: 1px solid var(--seperator);
    padding-bottom: 0.5rem;
    color: var(--text-highlight);
}

article h3 {
    margin-top: 2rem;
    color: var(--text-lightred);
    opacity: 0.9;
}

article img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.5rem 0;
    border: 1px solid #333;
    display: block;
}

blockquote {
    border-left: 3px solid var(--text-highlight);
    margin: 1.5rem 0;
    padding-left: 1rem;
    color: var(--text-dark-subtext-color);
}