/* ── PRO BLOG DETAIL PAGE STYLES ── */

.bd-wrapper {
    background: #FAFAFA;
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* ── HERO IMAGE SECTION ── */
.bd-hero {
    width: 100%;
    height: 500px;
    position: relative;
    background: linear-gradient(135deg, #FFFDF8 0%, #FDF4E3 40%, #F5EAD4 100%);
}

.bd-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── MAIN CONTAINER (1200px) ── */
.pro-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    margin-top: -400px; /* Moves header into landing section */
}

/* ── HEADER (GLASSMORPHISM) ── */
.pro-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    margin-bottom: 120px;
}

.pro-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #C98516;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    background: #FFFDF8;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid rgba(201,133,22,0.3);
}

.pro-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 25px;
}

.pro-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.pro-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pro-meta img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ── 2 COLUMN LAYOUT (ARTICLE + SIDEBAR) ── */
.pro-layout-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 80px;
    align-items: start;
}

/* ── ARTICLE CONTENT ── */
.pro-article {
    background: #fff;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.02);
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

/* Drop Cap for first paragraph */
.pro-article > p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 85px;
    line-height: 60px;
    padding-top: 10px;
    padding-right: 15px;
    float: left;
    color: #C98516;
    font-weight: 700;
}

.pro-article h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 50px 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.pro-article h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 35px 0 15px;
}

.pro-article p {
    margin-bottom: 25px;
}

.pro-article ul, .pro-article ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.pro-article li {
    margin-bottom: 12px;
}

/* Enhanced Blockquote */
.bd-quote {
    margin: 40px 0;
    padding: 35px 40px;
    background: linear-gradient(135deg, #FFFDF8, #FFF);
    border-left: 5px solid #C98516;
    border-radius: 0 16px 16px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: #C98516;
    font-style: italic;
    line-height: 1.5;
    box-shadow: 0 10px 20px rgba(201,133,22,0.05);
    position: relative;
}

.bd-quote::before {
    content: '\201C';
    font-size: 100px;
    color: rgba(201,133,22,0.1);
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: serif;
}

/* Inline Images */
.article-image {
    width: 100%;
    border-radius: 16px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Post Footer */
.pro-article-footer {
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #eaeaea;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-row {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-row span {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FAFAFA;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: 0.3s;
}

.share-icons a:hover {
    background: #C98516;
    color: #fff;
    border-color: #C98516;
    transform: translateY(-3px);
}

/* ── RIGHT SIDEBAR (STICKY) ── */
.pro-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
}

/* Author Bio Widget */
.widget-author {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.02);
    text-align: center;
}

.widget-author img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    border: 3px solid #FFFDF8;
    box-shadow: 0 5px 15px rgba(201,133,22,0.15);
    margin: 0 auto 20px;
}

.widget-author h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.widget-author span {
    font-size: 13px;
    color: #C98516;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.widget-author p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    border: 2px solid #C98516;
    border-radius: 30px;
    color: #C98516;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
}

.btn-outline-gold:hover {
    background: #C98516;
    color: #fff;
}

/* Related Articles Widget */
.widget-related {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.02);
}

.widget-related h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rel-card {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.rel-card:hover {
    transform: translateX(5px);
}

.rel-card img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
}

.rel-content {
    flex: 1;
}

.rel-cat {
    font-size: 10px;
    color: #C98516;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.rel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 1024px) {
    .pro-layout-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .bd-hero {
        height: 350px;
    }
    
    .pro-container {
        margin-top: -200px;
        padding: 0 20px;
    }
    
    .pro-header {
        padding: 30px 20px;
    }
    
    .pro-title {
        font-size: 32px;
    }
    
    .pro-meta {
        flex-direction: column;
        gap: 15px;
    }
    
    .pro-article {
        padding: 30px 20px;
        font-size: 16px;
    }
    
    .pro-article h2 {
        font-size: 28px;
    }
    
    .pro-sidebar {
        grid-template-columns: 1fr;
    }
    
    .pro-article-footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}


/* Ensure proper gap above footer */
.pro-container {
    margin-bottom: 80px !important;
}
