/* ===== Author Box ===== */
.bn-author-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f7f7f7;
    border-radius: 8px;
    padding: 16px;
    margin: 32px 0;
}

.bn-author-box img {
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info { display: flex; flex-direction: column; gap: 4px; }
.author-label { font-size: 12px; color: #777; }
.author-name { font-size: 16px; color: #222; }
.author-bio { font-size: 14px; color: #555; margin: 4px 0 0; line-height: 1.5; }

/* ===== Social Share ===== */
.bn-social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.share-label {
    font-size: 14px;
    color: #555;
    margin-right: 4px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.share-btn:hover { opacity: 0.85; transform: translateY(-2px); }

.share-fb        { background: #1877f2; }
.share-whatsapp  { background: #25d366; }
.share-messenger { background: #0084ff; }

.share-btn .dashicons { font-size: 18px; width: 18px; height: 18px; }

/* ===== Related News Grid ===== */
.bn-related-news { margin: 40px 0; }

.bn-related-news h3 {
    font-size: 18px;
    border-left: 4px solid #b30000;
    padding-left: 10px;
    margin-bottom: 16px;
}

@media (max-width: 500px) {
    .bn-author-box { flex-direction: column; align-items: center; text-align: center; }
}

/* ===== News Card (shared: homepage + related) ===== */
.news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    transition: box-shadow 0.15s ease;
}

.news-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.12); }

.news-card img { width: 100%; height: 160px; object-fit: cover; }

.news-card h3 {
    font-size: 15px;
    padding: 10px 12px 4px;
    line-height: 1.4;
    color: #1a1a1a;
}

.news-card a { text-decoration: none; }

.badge-breaking {
    display: inline-block;
    background: #b30000;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    border-radius: 3px;
    margin: 0 12px;
}

.post-time {
    font-size: 12px;
    color: #888;
    padding: 4px 12px 12px;
    display: block;
}
