/* Blog Detail Page Styling */

.blog-detail-section {
    padding: 80px 0 150px;
    position: relative;
    z-index: 10;
}

.bd-hero {
    max-width: 1200px;
    margin: 0 auto 40px;
    border-bottom: 1px solid #E5E5E5;
    padding-bottom: 30px;
    position: relative;
}

.bd-date {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    font-family: var(--font-dm-sans);
    margin-bottom: 12px;
    display: block;
}

.bd-pill {
    background: #FF741F;
    color: #111;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.bd-main-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #111;
    font-family: var(--font-satoshi);
    margin-bottom: 15px;
}

.bd-subtitle {
    font-size: 22px;
    font-weight: 400;
    font-style: italic;
    color: #444;
    font-family: var(--font-dm-sans);
    margin-bottom: 30px;
}

.bd-intro-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: #111;
    max-width: 950px;
}

.bd-share-row {
    position: absolute;
    bottom: 30px;
    right: 0;
    display: flex;
    gap: 12px;
}

.bd-share-icon {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 2px solid #FF741F;
    color: #FF741F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s;
}

.bd-share-icon:hover {
    background: #FF741F;
    color: #fff;
    transform: scale(1.05);
}

.bd-share-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Wait, in the image the share icons are solid orange fill */
.bd-share-icon {
    background: #FF741F;
    color: #fff;
    border: none;
}

.bd-share-icon:hover {
    box-shadow: 0 4px 12px rgba(255, 116, 31, 0.4);
}

/* Grid Layout */
.bd-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .bd-grid {
        grid-template-columns: 1fr;
    }

    .bd-share-row {
        position: static;
        margin-top: 25px;
        justify-content: flex-start;
    }
}

/* Main Content Area */
.bd-main-content img.bd-hero-img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 40px;
    object-fit: cover;
    display: block;
}

.bd-section-heading {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111;
    display: flex;
    align-items: center;
    gap: 12px;
}

.bd-text {
    font-size: 18px;
    line-height: 1.7;
    color: #111;
    font-weight: 500;
    margin-bottom: 35px;
}

.bd-subdomain {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px;
}

.bd-list-item {
    margin-bottom: 25px;
}

.bd-list-item strong {
    font-weight: 700;
    color: #111;
    font-size: 20px;
    display: block;
    margin-bottom: 6px;
}

.bd-list-item p {
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
    color: #111;
}

.bd-divider {
    height: 1.5px;
    background: #111;
    margin: 30px 0;
    width: 100%;
}

/* Sidebar styling to host bc-container cards */
.bd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}