/* Premium blog post design */
body {
    background-color: #f9f9f9;
    font-family: 'Nunito', sans-serif;
    color: #212529;
}

/* 🌟 Hero Banner */
.post-hero {
    background: linear-gradient(to right, #145c40, #198754);
    color: white;
    border-bottom: 5px solid #117a3a;
}
.post-hero h1 {
    font-weight: 700;
    line-height: 1.3;
}

/* 📸 Featured Image */
.featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* 📝 Content Typography */
.post-body {
    padding-bottom: 60px;
}
.content {
    font-size: 1.1rem;
    line-height: 1.8;
}
.content h2, .content h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.content p {
    margin-bottom: 1.25rem;
}
.content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 20px 0;
}

/* 🔗 Share Buttons */
.share .btn {
    font-size: 0.9rem;
    padding: 6px 16px;
    border-radius: 20px;
    transition: all 0.2s ease-in-out;
}
.share .btn:hover {
    transform: translateY(-2px);
}