/* Blog Detail Specific Styles */

.blog-detail-wrapper { 
    padding: 80px 0; 
    display: grid; 
    grid-template-columns: 1fr 350px; 
    gap: 50px; 
}

/* Content Area */
.post-main-img { 
    width: 100%; 
    border-radius: 20px; 
    margin-bottom: 40px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}
.post-content h1 { 
    font-size: 36px; 
    font-weight: 700; 
    color: #111; 
    margin-bottom: 25px; 
    line-height: 1.3; 
}
.post-content h2 { 
    font-size: 24px; 
    font-weight: 700; 
    color: #111; 
    margin: 40px 0 20px; 
}
.post-content p { 
    margin-bottom: 25px; 
    font-size: 16px; 
}

/* Sidebar Style */
.sidebar-widget { 
    background: #f8f9fa; 
    padding: 30px; 
    border-radius: 15px; 
    margin-bottom: 30px; 
}
.widget-title { 
    font-size: 18px; 
    font-weight: 700; 
    color: #111; 
    margin-bottom: 25px; 
    position: relative; 
    padding-bottom: 10px; 
}
.widget-title::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 40px; 
    height: 3px; 
    background: var(--primary-red); 
}

/* Search Bar */
.search-box { 
    display: flex; 
    background: #fff; 
    border-radius: 8px; 
    overflow: hidden; 
}
.search-box input { 
    border: none; 
    padding: 15px; 
    width: 100%; 
    outline: none; 
    background: #f0f2f5; 
}
.search-box button { 
    background: var(--primary-red); 
    color: #fff; 
    border: none; 
    padding: 0 20px; 
    cursor: pointer; 
}

/* Recent Posts */
.recent-post-item { 
    display: flex; 
    gap: 15px; 
    margin-bottom: 20px; 
    align-items: center; 
    text-decoration: none; 
}
.recent-post-item img { 
    width: 70px; 
    height: 70px; 
    border-radius: 50%; 
    object-fit: cover; 
}
.recent-post-info h4 { 
    font-size: 14px; 
    font-weight: 700; 
    color: #111; 
    margin: 0 0 5px; 
    line-height: 1.4; 
    transition: color 0.3s; 
}
.recent-post-item:hover h4 { 
    color: var(--primary-red); 
}
.recent-post-info span { 
    font-size: 12px; 
    color: #888; 
}

/* Categories */
.category-list { 
    list-style: none; 
    padding: 0; 
    margin: 0; 
}
.category-list li { 
    margin-bottom: 12px; 
}
.category-list a { 
    text-decoration: none; 
    color: #555; 
    display: flex; 
    align-items: center; 
    gap: 10px; 
    font-size: 14px; 
    transition: color 0.3s; 
}
.category-list a:hover { 
    color: var(--primary-red); 
}

/* Social Side Fixed */
.social-side-fixed { 
    position: fixed; 
    right: 30px; 
    top: 50%; 
    transform: translateY(-50%); 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
    z-index: 10; 
}
.social-link-fixed { 
    width: 45px; 
    height: 45px; 
    background: #111; 
    color: #fff; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    text-decoration: none; 
    transition: all 0.3s ease; 
}
.social-link-fixed:hover { 
    background: var(--primary-red); 
    transform: translateX(-5px); 
}

/* Banner Styling */
.page-banner { 
    position: relative; 
    height: 450px; 
    background-size: cover; 
    display: flex; 
    align-items: center; 
    overflow: hidden;
}
.page-banner::before { 
    content: ''; 
    position: absolute; 
    inset: 0; 
    background: rgba(0, 0, 0, 0.4); 
    z-index: 1; 
}
.banner-bg-text { 
    position: absolute; 
    left: 50px; 
    top: 50%; 
    transform: translateY(-50%); 
    font-size: 250px; 
    font-weight: 900; 
    color: rgba(255, 255, 255, 0.05); 
    z-index: 0; 
    line-height: 1; 
    pointer-events: none;
    text-transform: uppercase;
}
.banner-content { 
    position: relative; 
    z-index: 2; 
    width: 100%; 
    color: #fff; 
}
.banner-content h2 { 
    font-size: 48px; 
    font-weight: 700; 
    margin-bottom: 20px; 
    max-width: 800px; 
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.breadcrumbs { 
    display: flex; 
    gap: 10px; 
    font-size: 13px; 
    text-transform: uppercase; 
    font-weight: 600; 
    background: rgba(255, 255, 255, 0.1); 
    padding: 10px 20px; 
    border-radius: 4px; 
    width: fit-content;
}
.breadcrumbs a { 
    color: #fff; 
    text-decoration: none; 
}
.breadcrumbs i { 
    font-size: 10px; 
    margin: 0 5px; 
    opacity: 0.5; 
}
.breadcrumbs span { 
    color: rgba(255, 255, 255, 0.7); 
}

@media (max-width: 991px) {
    .blog-detail-wrapper { grid-template-columns: 1fr; }
    .social-side-fixed { display: none; }
    .page-banner { height: 350px; }
    .banner-content h2 { font-size: 32px; }
    .banner-bg-text { font-size: 150px; left: 20px; }
}
