/* ===================== */
/* ARTICLE TITLE + META  */
/* ===================== */
.article-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 10px;
}

.article-meta {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
}

.article-meta .dot {
    margin: 0 6px;
}

.author {
    font-weight: 600;
}

/* ===================== */
/* MAIN FEATURE IMAGE     */
/* ===================== */
.article-main-img {
    width: 100%;
    border-radius: 12px;
    object-fit: fill;
    height: 420px;
}

/* ===================== */
/* ARTICLE CONTENT        */
/* ===================== */
.article-content {
    font-size: 16px;
    color: #000000;
    line-height: 1.7;
}

.article-content img {
    width: 100%;
    border-radius: 12px;
    margin: 16px 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

/* HEADINGS INSIDE CONTENT */
.article-content h2,
.article-content h3,
.article-content h4 {
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid #e0e0e0;
}

.share-label {
    font-weight: 600;
    font-size: 14px;
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    font-size: 14px;
    border: none;
}

.share-btn.fb { background: #1877F2; }
.share-btn.tw { background: #1DA1F2; }
.share-btn.tg { background: #0088cc; }
.share-btn.wa { background: #25D366; }
.share-btn.copy { background: #444; }

.share-btn:hover { opacity: .85; }

.article-content a{
    color: #133B5C;
}

.article-content table {
    width: 100%;
}
.article-content {
    overflow-x: auto;
}
.table-responsive table thead th{background:#133B5C;color:#ffffff;}

@media (min-width: 992px) {
    .article-sidebar-col {
        position: -webkit-sticky;
        position: sticky;
        top: 20px;
        align-self: flex-start;
        height: fit-content;
    }

    .article-sidebar-sticky {
        position: static;
    }
}

@media(max-width:575px){
    .share-icons { gap: 8px; }
    .share-btn { width: 30px; height: 30px; font-size: 12px; }
}

/* ===================== */
/* RESPONSIVE FIXES      */
/* ===================== */
@media (max-width: 768px) {
    .table-responsive table thead th,
    .table-responsive table tbody td,
    .article-content{
        font-size:14px;
    }
    .article-main-img {
        height: 220px;
    }
    .comments-section .alert {
        gap: 5px;
        flex-direction: column;
        align-items: unset !important;
    }
}
