/* General */
.single-blog-section {
    background: #f9f9f9;
}

/* Blog main area - Clean layout without box effect */
.blog-main {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

/* Blog banner image */
.blog-banner img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Blog title */
.blog-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #222;
}

/* Blog meta info */
.blog-meta {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Blog description */
.blog-description {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Share links */
.blog-share span {
    font-weight: 600;
    margin-right: 10px;
    color: #333;
}
.blog-share a {
    margin-left: 10px;
    font-size: 18px;
    color: #333;
    transition: color 0.3s ease;
}
.blog-share a:hover {
    color: #d4af37;
}

/* Sidebar */
.sidebar-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-height: 500px;
    overflow-y: auto;
}

/* Sidebar heading */
.sidebar-box h4 {
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 8px;
    color: #222;
}

/* Recent blog items container */
.recent-blog-item {
    display: flex;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}
.recent-blog-item:hover {
    background-color: #f1f1f1;
}

/* Recent blog image */
.recent-img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

/* Recent content */
.recent-content {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.recent-content h6 {
    font-size: 15px;
    margin: 0 0 4px 0;
    color: #222;
}
.recent-content span {
    font-size: 13px;
    color: #888;
}

/* Layout adjustments */
/* .blog-layout {
    display: flex;
    gap: 40px;
} */

/* Sidebar spacing */
/* .col-lg-4 {
    padding-left: 40px;
} */

/* Responsive: On smaller screens, sidebar moves below the main blog */
@media (max-width: 991px) {
    .blog-layout {
        flex-direction: column;
    }
    .col-lg-4 {
        padding-left: 0;
        margin-top: 40px;
    }
}

/* Scrollbar style for sidebar on supported browsers */
.sidebar-box::-webkit-scrollbar {
    width: 6px;
}
.sidebar-box::-webkit-scrollbar-thumb {
    background-color: rgba(212, 175, 55, 0.6);
    border-radius: 3px;
}
.sidebar-box::-webkit-scrollbar-track {
    background: #f9f9f9;
}