/**
 * Styles for Blog Detail (blog_detail.php)
 */

.rich-text p {
    margin-bottom: 1.5rem;
}

.rich-text h2,
.rich-text h3 {
    color: #fff;
    margin: 2.5rem 0 1.5rem 0;
    font-weight: 800;
}

.rich-text img {
    max-width: 100%;
    border-radius: 20px;
    margin: 2rem 0;
}

.rich-text ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.rich-text li {
    margin-bottom: 0.8rem;
}

.share-btn:hover {
    background: var(--accent) !important;
    color: #000 !important;
    border-color: var(--accent) !important;
    transform: translateY(-3px);
}

.sidebar-widget h5:hover {
    color: var(--accent) !important;
}

@media (max-width: 992px) {
    .post-layout {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .post-featured-image {
        height: 300px !important;
    }

    header h1 {
        font-size: 2.5rem !important;
    }
}