
/* =============================================
   BLOG REDESIGN CORE STYLES
   ============================================= */

.page-hero {
    position: relative !important;
    padding: 110px 0 70px !important;
    background: #0a0a0a !important;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin: 0;
    color: #fff;
}

/* Side Reading Progress */
#scroll-progress-wrap {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 4px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    z-index: 9999;
}

#scroll-progress {
    width: 100%;
    height: 0%;
    background: var(--primary, #dd5a2c);
    border-radius: inherit;
    transition: height 0.1s linear;
}

/* Two Column Layout */
.single-article-wrap {
    padding: 80px 0;
    max-width: 1280px;
    margin: 0 auto;
}

.single-layout-grid {
    display: grid !important;
    grid-template-columns: 1fr 340px !important;
    gap: 60px !important;
    align-items: start;
}

.single-main-col {
    min-width: 0;
}

.single-featured-image {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-post-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
}

.single-post-meta {
    display: flex;
    gap: 20px;
    color: #777;
    font-size: 0.95rem;
    margin-bottom: 50px;
}

/* Sidebar */
.single-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-widget {
    background: var(--bg-card, #fff);
    border: 1px solid var(--border, #eee);
    padding: 30px;
    border-radius: 20px;
}

.widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Related */
.single-related-section {
    padding: 100px 0;
    background: #fdfdfd;
    border-top: 1px solid #eee;
}

.single-related-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.related-swiper {
    padding-bottom: 40px !important;
}

.srh-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.srh-nav button:hover {
    background: var(--primary, #dd5a2c);
    color: #fff;
    border-color: var(--primary, #dd5a2c);
}

@media (max-width: 1024px) {
    .single-layout-grid {
        grid-template-columns: 1fr !important;
    }
    .single-sidebar {
        order: 2;
    }
    #scroll-progress-wrap { display: none; }
}
