.post .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem; /* Adds left and right padding */
}

.post {
    padding: 2rem 0;
}

.post-header {
    margin-bottom: 2rem;
    position: relative;
}

.back-button {
    display: inline-block;
    margin-bottom: 1rem;
    color: #007bff;
    text-decoration: none;
    font-size: 1rem;
}

.back-button:hover {
    text-decoration: underline;
}

.post-title {
    font-size: 2.5rem;
    color: #333;
    margin: 1rem 0;
}

.post-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.post-content p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .post-title {
        font-size: 2rem;
    }
    
    .post-content {
        font-size: 1rem;
    }
}

.post-meta {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.95rem;
    margin: 1rem 0;
}

.post-date, .post-author {
    display: inline-block;
}

.post-date::before {
    content: "📅 ";
    margin-right: 0.25rem;
}

.post-author::before {
    content: "✍️ ";
    margin-right: 0.25rem;
}
