/* blog-chrome.css — consistent chrome for all blog posts */

/* ── Back Bar ─────────────────────────────────────────── */
.bc-back-bar {
    background: #F0F4FF;
    border-bottom: 2px solid #DBEAFE;
    padding: 10px 24px;
    position: sticky;
    top: 0;
    z-index: 200;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.bc-back-bar a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #1E40AF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    background: #FFFFFF;
    border: 1.5px solid #1E40AF;
    border-radius: 20px;
    transition: background 0.2s, color 0.2s;
}

.bc-back-bar a:hover {
    background: #1E40AF;
    color: #FFFFFF;
}

/* ── Author Card ──────────────────────────────────────── */
.bc-author-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 24px 28px;
    margin: 48px auto 24px;
    max-width: 760px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 3px 12px rgba(30, 64, 175, 0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.bc-author-card img {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1E40AF;
    flex-shrink: 0;
}

.bc-author-info { flex: 1; }

.bc-author-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px 0;
}

.bc-author-info p {
    font-size: 13px;
    color: #6B7280;
    margin: 0 0 14px 0;
    line-height: 1.55;
}

.bc-author-socials {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bc-author-socials a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.15s;
}

.bc-author-socials a:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}

.bc-author-socials .bc-li  { background: #0A66C2; color: #FFFFFF; }
.bc-author-socials .bc-tw  { background: #1DA1F2; color: #FFFFFF; }

/* ── Share Bar ────────────────────────────────────────── */
.bc-share-bar {
    background: #F8FAFC;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 24px auto;
    max-width: 760px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.bc-share-bar p {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.bc-share-btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.bc-share-btns a,
.bc-share-btns button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.15s, opacity 0.15s;
    font-family: inherit;
    line-height: 1;
}

.bc-share-btns a:hover,
.bc-share-btns button:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

.bc-share-btns .bc-s-li   { background: #0A66C2; color: #FFFFFF; }
.bc-share-btns .bc-s-wa   { background: #25D366; color: #FFFFFF; }
.bc-share-btns .bc-s-tw   { background: #1DA1F2; color: #FFFFFF; }
.bc-share-btns .bc-s-copy { background: #374151; color: #FFFFFF; }

/* ── Conversation / CTA ───────────────────────────────── */
.bc-conversation {
    background: linear-gradient(135deg, #EFF6FF 0%, #F0FDF4 100%);
    border: 1px solid #DBEAFE;
    border-radius: 14px;
    padding: 30px 28px;
    margin: 24px auto 48px;
    max-width: 760px;
    text-align: center;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.bc-conversation h3 {
    font-size: 21px;
    font-weight: 700;
    color: #1E40AF;
    margin: 0 0 8px 0;
}

.bc-conversation p {
    font-size: 14px;
    color: #4B5563;
    margin: 0 0 20px 0;
    line-height: 1.65;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.bc-conversation .bc-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background: #1E40AF;
    color: #FFFFFF;
    transition: background 0.2s, transform 0.15s;
}

.bc-conversation .bc-cta-btn:hover {
    background: #1E3A8A;
    transform: translateY(-2px);
}

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 600px) {
    .bc-author-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .bc-author-socials { justify-content: center; }
    .bc-share-btns     { flex-direction: column; align-items: center; }
    .bc-share-btns a,
    .bc-share-btns button { width: 200px; justify-content: center; }
}
