/* Blog Post Detail Styles */
.post-detail {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.09);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 800px;
    margin: 4.5rem auto 3rem auto; /* Increased top margin for more space */
    font-size: 1.13rem;
    color: #222;
    line-height: 1.7;
}
.post-detail h1 {
    color: #1a237e;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}
.post-detail img {
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 1.5rem;
    max-width: 100%;
    height: auto;
}
.post-detail p {
    margin-bottom: 0.7rem;
}
.post-detail .post-body {
    margin-top: 1.5rem;
    font-size: 1.15rem;
    color: #333;
}
.post-detail strong {
    color: #1976d2;
}
.post-detail .btn {
    margin-top: 2rem;
    background: #1976d2;
    color: #fff;
    border-radius: 8px;
    padding: 0.5rem 1.3rem;
    font-size: 1rem;
    transition: background 0.2s;
    text-decoration: none;
}
.post-detail .btn:hover {
    background: #0d47a1;
    color: #fff;
}
@media (max-width: 600px) {
    .post-detail {
        padding: 1.2rem 0.5rem 1rem 0.5rem;
        font-size: 1rem;
    }
    .post-detail h1 {
        font-size: 1.3rem;
    }
}
