/* Article detail page styles */

.byline a.main-cat {
    color: var(--navy);
    font-weight: 700;
}

.byline .sep {
    color: var(--bdr);
    margin: 0 4px;
}

.byline a.sub-cat {
    color: var(--mg);
}

.tags-section {
    margin: 22px 0;
    padding: 14px 18px;
    background: #f0f3fa;
    border: 1px solid var(--bdr);
    border-radius: 2px;
}

.tags-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mg);
    margin-right: 10px;
}

.tag-main {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    padding: 4px 13px;
    font-size: 12px;
    font-weight: 700;
    margin: 3px;
    border-radius: 2px;
}

.tag-sub {
    display: inline-block;
    background: var(--gold);
    color: var(--navy-dk);
    padding: 4px 13px;
    font-size: 12px;
    font-weight: 700;
    margin: 3px;
    border-radius: 2px;
}

.comments-section {
    margin-top: 38px;
}

.comments-sec-hd i {
    color: var(--gold);
}

.comment-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
}

.comment-date {
    font-size: 12px;
    color: var(--mg);
}

.comment-body {
    font-size: 15px;
    margin-top: 10px;
}

.no-comments {
    background: var(--wh);
    border: 1px solid var(--bdr);
    padding: 32px;
    text-align: center;
    margin-bottom: 24px;
}

.no-comments i {
    font-size: 40px;
    color: var(--bdr);
    display: block;
    margin-bottom: 12px;
}

.no-comments p {
    color: var(--mg);
    margin: 0;
}

.comment-form h4 i {
    color: var(--gold);
}

.comment-form p {
    font-size: 13px;
    color: var(--mg);
    margin-bottom: 20px;
}

.form-label {
    font-weight: 700;
    font-size: 13px;
    color: var(--navy);
}

.related-section {
    margin-top: 42px;
    padding-top: 22px;
    border-top: 3px solid var(--navy);
}

.related h5 a {
    color: inherit;
}

.sidebar-sticky {
    position: sticky;
    top: 72px;
}

.trending-empty {
    padding: 16px;
    color: var(--mg);
    font-size: 13px;
}

.share-sidebar .sbtn {
    padding: 11px;
}

.article-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    flex: 1;
}

.author-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.author-pic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--navy);
}

.author-info i {
    font-size: 16px;
    color: var(--navy);
    opacity: 0.8;
}

.by-author {
    font-weight: 600;
    color: var(--navy);
}

/* ─────────────────────────────────────────────────── */
/* SHARE BUTTONS STYLING */
/* ─────────────────────────────────────────────────── */

/* Inline share buttons in byline */
.share-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

.share-lbl {
    font-size: 12px;
    font-weight: 700;
    color: var(--mg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
}

.share-bar .sbtn {
    width: 28px;
    height: 28px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-bar .sbtn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.share-bar .sbtn-fb {
    background: #1877F2;
}

.share-bar .sbtn-wa {
    background: #25D366;
}

.share-bar .sbtn-tw {
    background: #000;
}

/* Sidebar share buttons */
.share-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-sidebar .sbtn {
    padding: 12px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 13px;
}

.share-sidebar .sbtn:hover {
    transform: translateX(2px);
    opacity: 0.9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.share-sidebar .sbtn-fb {
    background: #1877F2;
    color: #fff;
}

.share-sidebar .sbtn-wa {
    background: #25D366;
    color: #fff;
}

.share-sidebar .sbtn-tw {
    background: #000;
    color: #fff;
}

/* ─────────────────────────────────────────────────── */
/* AUTHOR PROFILE STYLING */
/* ─────────────────────────────────────────────────── */

.author-info {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.author-info i {
    font-size: 16px;
    color: var(--navy);
    opacity: 0.8;
}

.by-author {
    font-weight: 600;
    color: var(--navy);
}