.article-page {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.breadcrumbs {
    font-size: 14px;
    margin-bottom: 15px;
    font-family: R-IBMPlexSansArabic;
    display: flex;
    align-items: center;
    gap: 4px;
}

    .breadcrumbs svg {
        width: 20px;
        margin-left: 10px;
    }

    .breadcrumbs a {
        color: var(--black-2c2f34);
        text-decoration: none;
        transition: color .3s ease;
        -webkit-transition: color .3s;
        -moz-transition: color .3s;
        -ms-transition: color .3s;
        -o-transition: color .3s;
        font-family: SB-IBMPlexSansArabic;
    }

        .breadcrumbs a:hover {
            color: var(--blue-color);
            text-decoration: underline;
        }

        .breadcrumbs a h2 {
            font-size: 14px;
        }

.category-tags .tag {
    display: inline-block;
    padding: 6px 12px;
    color: #fff;
    font-size: .85rem;
    font-family: B-IBMPlexSansArabic;
    border-radius: 3px;
    text-decoration: none;
    margin-left: 8px;
    background-color: var(--blue-color);
    transition: .3s ease;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

    .category-tags .tag:hover {
        background-color: #0d6efd;
    }

.article-meta {
    font-size: 20px;
    color: var(--light-gray);
    margin-bottom: 1rem;
    font-family: M-IBMPlexSansArabic;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: .9rem;
    color: #888;
}

    .article-meta svg {
        width: 20px;
    }

    .article-meta .author a {
        color: var(--black-2c2f34);
        font-family: M-IBMPlexSansArabic;
        transition: .3s ease;
    }

        .article-meta .author a:hover {
            color: var(--blue-color);
            text-decoration: underline;
        }

.article-title {
    font-family: SB-IBMPlexSansArabic;
    font-size: 32px;
    line-height: 1.5;
    color: var( --black-2c2f34);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.social-share-icons {
    gap: 0.75rem;
    justify-content: end;
}

    .social-share-icons .icon {
        font-size: 1.4rem;
        color: #555;
        text-decoration: none;
        transition: color 0.3s;
    }

        .social-share-icons .icon:hover {
            color: #0d6efd;
        }

    .social-share-icons .btn-share {
        background-color: var(--blue-color);
        color: #ffffff;
        border-radius: 10px;
        font-family: M-IBMPlexSansArabic;
        border: none;
        padding: 0.3rem 0.7rem;
        font-size: 18px;
    }

    .social-share-icons::before,
    .social-share-icons::after {
        content: '';
        position: absolute;
        width: 17px;
        height: 17px;
        border-color: #0d6efd;
        border-style: solid;
    }

    .social-share-icons::before {
        top: -9px;
        right: 36%;
        border-width: 4px 4px 0 0;
    }

    .social-share-icons::after {
        bottom: -5px;
        left: 7px;
        border-width: 0 0 3px 3px;
    }

    .social-share-icons .btn-share .bi {
        margin-left: 5px;
        font-size: 1rem;
    }

.featured-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-top: 2rem;
}

    .featured-image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

.image-credit {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
}

.category-tag-text {
    color: #fff;
    background-color: #0000004d;
    padding: 8px 16px;
    border-radius: 5px;
    font-family: M-IBMPlexSansArabic;
    font-size: 1rem;
    position: relative;
    display: inline-block;
}

    .category-tag-text::before,
    .category-tag-text::after {
        content: '';
        position: absolute;
        width: 10px;
        height: 10px;
        border-color: #0d6efd;
        border-style: solid;
    }


    .category-tag-text::before {
        top: -5px;
        right: -5px;
        border-width: 3px 3px 0 0;
    }

    .category-tag-text::after {
        bottom: -5px;
        left: -5px;
        border-width: 0 0 3px 3px;
    }


.article-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.article-body p {
    font-size: 24px;
    font-family: R-IBMPlexSansArabic;
    line-height: 2.1;
    color: var(--black-2c2f34);
    margin-bottom: 1.5rem;
    position: relative;
    padding-right: 25px;
}

.article-body .p-line::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: #0d6efd;
    border-style: solid;
    top: 5px;
    right: 0;
    border-width: 7px 7px 0 0;
}

.article-featured-image {
    margin-top: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

    .article-featured-image img {
        width: 100%;
        height: 397.5px;
        object-fit: cover;
    }

.article-social-follow {
    margin-top: 2rem;
    border-bottom: 1px solid #ccc;
}

    .article-social-follow h2 {
        font-size: 24px;
        color: var(--black-2c2f34);
        font-family: SB-IBMPlexSansArabic;
        margin-bottom: 0;
        margin-left: 1rem;
    }

    .article-social-follow .social-icons a {
        width: 35px;
        height: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 0.3rem;
    }



.sidebar .ad-widget {
    width: 100%;
    margin-bottom: 1.5rem;
}

    .sidebar .ad-widget img {
        width: 100%;
        height: 445px;
    }

.article-section .more-text {
    font-size: 20px;
    font-family: R-IBMPlexSansArabic;
    line-height: 2.1;
    color: var(--black-2c2f34);
    border: 1px solid var(--blue-color);
    border-radius: 10px;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    padding: 10px;
}

@media (max-width: 991.98px) {
    .social-share-icons::before {
        top: 8px;
        right: 73%;
    }
}

@media (max-width: 767.98px) {
    .image-credit {
        right: 0;
        padding: 0 20px;
    }

    .article-title {
        font-size: 24px;
    }

    .social-share-icons {
        justify-content: center;
        padding-bottom: 25px;
    }

        .social-share-icons::before {
            top: 6px;
            right: 15%;
        }

        .social-share-icons::after {
            left: 60px;
            bottom: 13px;
        }

    .featured-image img {
        height: 290px;
    }

    .article-body p {
        font-size: 19px;
    }

    .article-body .p-line::before {
        top: 1px;
        right: 7px;
    }
}


.article-subtitle {
    color: #6a6a6a;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.article-body img {
    width: 100%;
}