/* ===== POST PAGE ONLY ===== */

.post-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

.post-layout {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 40px;
}

/* Article */

.post-main {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.post-main h1 {
    font-size: 30px;
    margin-bottom: 20px;
}

.post-main img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.post-main p {
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
}

/* Sidebar */

.post-sidebar {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: fit-content;
}

/* Responsive */

@media (max-width: 900px) {
    .post-layout {
        grid-template-columns: 1fr;
    }
}

.post-content a {
    color: #007bff;
    text-decoration: underline;
    font-weight: 500;
}

.post-content a:hover {
    color: #0056b3;
    text-decoration: underline;
}