.post-body{
    height: fit-content;
}

.post-container {
    max-width: 800px;
    width: 100%;
    padding: 40px 20px;
}

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.post-meta {
    color: var(--color-sandy-shore);
    font-size: 16px;
    margin-bottom: 30px;
}

.back-link {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-sandy-shore);
    color: var(--color-deep-ocean);
    text-decoration: none;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: 0.3s;
}

.back-link:hover {
    background: var(--color-hot-coral);
}

.post-content {
    color: var(--color-sea-foam);
    line-height: 1.8;
}

.post-content h2 {
    font-family: 'LT Flode Neue', sans-serif;
    color: var(--color-sea-foam);
    margin: 30px 0 15px;
}

.post-content h3 {
    color: var(--color-sandy-shore);
    margin: 25px 0 10px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-content a {
    color: var(--color-sandy-shore);
}

.post-content strong {
    color: var(--color-sandy-shore);
}

.post-content em {
    color: var(--color-turtle-shell);
}

.post-content code {
    background: var(--color-cool-pond);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: monospace;
}

.post-content pre {
    background: var(--color-cool-pond);
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 20px;
}