.post-page {
    width: 100%;
    padding: 32px 24px;
}

.post-container {
    width: min(860px, 100%);
    margin: 0 auto;
}

.post-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    background: rgba(9, 9, 9, 0.58);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
    padding: 34px;
}

.post-header {
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.post-title {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.2;
}

.post-date {
    color: var(--muted-text);
    font-size: 14px;
}

.post-content {
    font-size: 16px;
    line-height: 1.7;
    overflow-wrap: break-word;
}

.post-content p {
    margin: 0 0 14px;
}

.post-content a {
    color: #4da3ff;
    text-decoration: underline;
}

.post-content a:hover {
    color: #8fc4ff;
}

.post-content img {
    max-width: 100%;
    height: auto;
}

.post-content blockquote {
    margin: 0 0 16px;
    padding-left: 1em;
    border-left: 3px solid rgba(255, 255, 255, 0.12);
    color: var(--muted-text);
}

@media (max-width: 600px) {
    .post-page {
        padding: 24px 14px;
    }

    .post-card {
        padding: 22px;
    }

    .post-title {
        font-size: 22px;
    }

    .post-content {
        font-size: 15px;
    }
}
