 /* Article */
.article-content p {
    /* color: #333; */
    color: #2E2E2E;
    font-size: 20px !important;
    line-height: 1.75 !important;
    margin-bottom: 25px !important;
    overflow-wrap: break-word !important;
    text-align: justify;
}

/* Share */
.share-box {
    background: #fff;
    border: 1px solid #eee;
}

.share-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
}

/* Social colors */
.bg-twitter {
    background: #1da1f2;
}

.bg-facebook {
    background: #1877f2;
}

.bg-whatsapp {
    background: #25d366;
}

/* Suggested */
.suggest-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
}

/* Related */
.related-card img {
    height: 160px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .related-card img {
        height: 140px;
    }
}

@media (max-width: 576px) {
    .suggest-img {
        width: 60px;
        height: 60px;
    }

    .related-card img {
        height: 120px;
    }
}

.main-title h2 {
    line-height: 1.5;
}

/* Category and Editor Details */
.category-editor-detail {
    background: #ffffff;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
    margin-bottom: 25px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.category-editor-detail .badge {
    font-size: 0.85rem;
    padding: 6px 12px;
}

.category-editor-detail .text-muted {
    font-size: 0.9rem;
    margin: 0;
}

.category-editor-detail .d-flex {
    align-items: center;
    gap: 15px;
}

@media (max-width: 768px) {
    .category-editor-detail .d-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}





/* Center container with proper margins */
.article-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding-left: 10rem;
    padding-right: 10rem;
}

@media (max-width: 1400px) {
    .article-container {
        padding-left: 7.5rem;
        padding-right: 7.5rem;
    }
}

@media (max-width: 1200px) {
    .article-container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

@media (max-width: 992px) {
    .article-container {
        padding-left: 2.5rem;
        padding-right: 2.5rem;
    }
}

@media (max-width: 768px) {
    .article-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}