/* =========================================
   BLOG DETAIL PREMIUM STYLES
   ========================================= */

/* Header Meta Text */
.bd-meta-subtitle {
    margin-top: 10px;
    color: var(--text-body);
    font-size: 16px;
    font-weight: 500;
}

/* Featured Image Wrapper */
.bd-featured-wrap {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.bd-featured-wrap img {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Typography */
.bd-entry-content {
    color: #000000;
    font-size: 16px;
    line-height: 1.8;
}

.bd-entry-content h2,
.bd-entry-content h3 {
    color: var(--text-dark);
    font-weight: 800;
    margin: 40px 0 20px;
    line-height: 1.3;
}

.bd-entry-content ul li {
    list-style: disc;
    margin-bottom: 8px;
    padding-left: 6px;
}

.bd-entry-content ul {
    padding-left: 24px;
}

.bd-entry-content ul li::marker {
    color: #000000;
    /* change to your brand color */
    font-size: 1.6em;
}

.bd-entry-content h2 {
    font-size: 28px;
}

.bd-entry-content h3 {
    font-size: 22px;
}

.bd-entry-content p {
    margin-bottom: 25px;
}

.bd-entry-content ul,
.bd-entry-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.bd-entry-content li {
    margin-bottom: 12px;
}

.bd-entry-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

/* Premium FAQ Block */
.bd-faq-block {
    background: var(--secondary);
    border-radius: 25px;
    padding: 40px;
    margin: 50px 0;
    border: 1px solid rgba(219, 106, 158, 0.1);
}

.bd-faq-heading {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 30px !important;
}

.bd-faq-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.bd-faq-q {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.bd-faq-a {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
}

/* Sidebar sticky behavior for desktop */
@media (min-width: 992px) {
    .bi-sidebar {
        position: sticky;
        top: 20px;
    }
}