    .article-card {
        border: none;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: #fff;
        text-align: center;
    }

    .article-card img {
        border-radius: 10px;
        width: 100%;
        height: auto;
    }

    .article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .article-card .card-body {
        padding: 15px;
        text-align: right;
    }

    .article-card h5 {
        font-weight: bold;
        font-size: 1.05rem;
        margin-bottom: 10px;
    }

    .article-card p {
        color: #6c757d;
        font-size: 0.9rem;
        min-height: 60px;
    }

    .read-more {
        color: var(--main);
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        transition: color 0.3s ease;
        font-weight: 600;
    }

    .read-more:hover {
        color: var(--main);
    }

    .btn-load-more {
        display: block;
        margin: 30px auto 0;
        padding: 10px 87px;
        border-radius: 10px;
        font-weight: bold;
        background-color: var(--main);
        border: none;
        color: #fff;
        transition: background-color 0.3s ease;
    }

    .btn-load-more:hover {
        background-color: var(--sec);
        color: var(--main);
    }


    .sidebar {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .sidebar h6 {
        font-weight: bold;
        margin-bottom: 15px;
    }

    .search-box input {
        border-radius: 10px;
        padding: 10px 15px;
        background-color: white;
        border: 1px solid #6c757d42;
    }

    .popular-articles img {
        width: 60px;
        height: 60px;
        object-fit: cover;
        border-radius: 8px;
    }

    .popular-articles .article-title {
        font-size: 0.9rem;
        font-weight: 500;
    }

    .popular-articles .date {
        font-size: 0.8rem;
        color: #777;
    }

    .category-btn {
        border-radius: 25px;
        background-color: #E9F3FF;
        padding: 5px 15px;
        font-size: 0.85rem;
        transition: 0.3s;
        color: var(--main);
    }

    .category-btn:hover {
        background-color: var(--main);
        color: #fff;
    }

    .article-content img {
        width: 100%;
        border-radius: 12px;
    }

    .article-title {
        font-weight: bold;
        font-size: 1.4rem;
        margin: 15px 0 5px;
    }

    .article-meta {
        font-size: 0.85rem;
        color: #777;
        margin-bottom: 20px;
    }

    .article-body p {
        font-size: 1rem;
        color: #333;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .share-links a {
        color: var(--main);
        font-size: 1.1rem;
        transition: 0.3s;
        background-color: #E9F3FF;
        padding: 7px 9px 1px 9px;
        border-radius: 50%;
    }

    .share-links a:hover {
        color: var(--main);
    }

    .article-card .card-body:lang(en) {
        padding: 15px;
        text-align: left;
    }

    .read-more i:lang(en) {
        transform: scaleX(-1);
    }

    .article-title:lang(ar),
    .date:lang(ar) {
        margin-right: 1rem;
        /* مسافة من اليمين */
        margin-left: 0;
    }

    .article-title:lang(en),
    .date:lang(en) {
        margin-left: 1rem;
        /* مسافة من الشمال */
        margin-right: 0;
    }
