.blog-detail-page {
    background-color: #121212;
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    color: #e0e0e0;
}

.back-to-insights {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #dc2828;
    text-decoration: none;
    font-weight: 500;
    padding: 40px 0 20px;
    transition: opacity 0.2s;
}
.back-to-insights:hover {
    opacity: 0.75;
    color: #dc2828;
}

.bd-header {
    padding-bottom: 36px;
    border-bottom: 1px solid #2a2a2a;
    margin-bottom: 36px;
}

.bd-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bd-category-badge {
    background-color: #dc2828;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.3px;
}

.bd-meta-dot {
    color: #555;
    font-size: 16px;
}

.bd-meta-text {
    font-size: 13px;
    color: #888;
}

.bd-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px;
}
@media (max-width: 768px) {
    .bd-title {
        font-size: 26px;
    }
}

.bd-excerpt {
    font-size: 16px;
    color: #9a9a9a;
    line-height: 1.7;
    margin-bottom: 28px;
}

.bd-author-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bd-author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.bd-author-name {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
    margin: 0;
}

.bd-author-role {
    font-size: 12px;
    color: #888;
    margin: 0;
}

.bd-content {
    font-size: 15px;
    line-height: 1.85;
    color: #c5c5c5;
}
.bd-content p {
    margin-bottom: 20px;
}

.bd-tags-section {
    margin-top: 40px;
    /* padding-top: 32px; */
    /* border-top: 1px solid #2a2a2a; */
}

.bd-tags-label {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 14px;
}

.bd-tag {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid #333;
    color: #c5c5c5;
    font-size: 13px;
    font-weight: 500;
    margin: 4px 4px 4px 0;
    text-decoration: none;
    background: #1e1e1e;
    transition:
        border-color 0.2s,
        color 0.2s;
}
.bd-tag:hover {
    border-color: #dc2828;
    color: #fff;
}

.bd-author-bio {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 28px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.bd-author-bio-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.bd-author-bio-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.bd-author-bio-role {
    font-size: 13px;
    color: #888;
    margin-bottom: 10px;
}

.bd-author-bio-desc {
    font-size: 13px;
    color: #9a9a9a;
    line-height: 1.6;
    margin: 0;
}

.bd-post-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #2a2a2a;
}

.bd-post-nav-btn {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 14px 20px;
    text-decoration: none;
    color: #c5c5c5;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    transition:
        border-color 0.2s,
        color 0.2s;
}
.bd-post-nav-btn:hover {
    border-color: #dc2828;
    color: #fff;
}

.bd-related-section {
    /* margin-top: 80px; */
    padding-top: 40px;
    /* border-top: 1px solid #2a2a2a; */
}

.bd-related-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
}

.bd-related-card {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 22px;
    height: 100%;
    transition:
        border-color 0.25s,
        transform 0.25s;
}
.bd-related-card:hover {
    border-color: #dc2828;
    transform: translateY(-4px);
}

.bd-related-tag {
    background-color: #dc2828;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 12px;
}

.bd-related-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 8px;
}

.bd-related-card-desc {
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 16px;
}

.bd-related-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bd-related-card-author {
    font-size: 12px;
    color: #777;
}

.bd-related-card-date {
    font-size: 12px;
    color: #666;
}

.bd-comments-section {
    /* margin-top: 60px; */
}

.bd-comments-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.bd-comment-card {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.bd-comment-user-name {
    font-size: 14px;
    font-weight: 600;
    color: #e0e0e0;
    margin: 0;
}

.bd-comment-text {
    font-size: 14px;
    color: #9a9a9a;
    margin: 6px 0 0;
}

.bd-comment-date {
    font-size: 12px;
    color: #555;
}

.bd-leave-comment {
    margin-top: 40px;
}

.bd-leave-comment-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.bd-form-label {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
    display: block;
}

.bd-form-control {
    background: #1e1e1e !important;
    border: 1px solid #2e2e2e !important;
    border-radius: 8px !important;
    color: #e0e0e0 !important;
    padding: 12px 16px !important;
    font-size: 14px !important;
    width: 100%;
    transition: border-color 0.2s;
}
.bd-form-control:focus {
    border-color: #dc2828 !important;
    outline: none;
    box-shadow: none !important;
}
.bd-form-control::placeholder {
    color: #555 !important;
}

.bd-submit-btn {
    background: #dc2828;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 36px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}
.bd-submit-btn:hover {
    opacity: 0.85;
}

.bd-sidebar {
    position: sticky;
    top: 100px;
}

.bd-sidebar-card {
    background: #1e1e1e;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.bd-sidebar-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
}

.bd-share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 8px;
    border: 1px solid #2e2e2e;
    background: #252525;
    color: #c5c5c5;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 10px;
    transition:
        background 0.2s,
        color 0.2s;
}
.bd-share-btn:hover {
    background: #2e2e2e;
    color: #fff;
}
.bd-share-btn .icon {
    width: 18px;
    text-align: center;
}
.bd-share-btn.facebook .icon {
    color: #4267b2;
}
.bd-share-btn.twitter .icon {
    color: #e0e0e0;
}
.bd-share-btn.linkedin .icon {
    color: #0a66c2;
}

.bd-info-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    font-size: 13px;
}

.bd-info-label {
    color: #777;
}

.bd-info-value {
    color: #e0e0e0;
    font-weight: 500;
    text-align: right;
}
.bd-info-value.accent {
    color: #dc2828;
}

.bd-more-item {
    display: flex;
    flex-direction: column;
    /* margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #272727; */
}
/* .bd-more-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
} */

.bd-more-item-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.bd-more-item-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #dc2828;
    flex-shrink: 0;
    margin-top: 8px !important;
}

.bd-more-item-title {
    font-size: 13px;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.4;
    text-decoration: none;
}
.bd-more-item-title:hover {
    color: #dc2828;
}

.bd-more-item-date {
    font-size: 11px;
    color: #666;
    margin-top: 3px;
}

.bd-view-all {
    font-size: 13px;
    color: #dc2828;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-top: 12px;
}
.bd-view-all:hover {
    opacity: 0.8;
    color: #dc2828;
}

.bd-cta-card {
    background: linear-gradient(135deg, #dc2828, #a71d2a);
    border-radius: 12px;
    padding: 28px 22px;
    text-align: center;
}
.bd-cta-card h6 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}
.bd-cta-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.bd-cta-btn {
    display: inline-block;
    background: #fff;
    color: #dc2828;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.bd-cta-btn:hover {
    opacity: 0.9;
    color: #dc2828;
}

/*# sourceMappingURL=blog-details.css.map */
