.article-details-section {
    background: linear-gradient(180deg, #f5f5f5, #ffffff);
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.article-details-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-details-image-card {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.article-details-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.article-details-image:hover {
    transform: scale(1.05);
}

.ltr .article-details-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 15px;
    text-align: left;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}
.rtl .article-details-title-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 15px;
    text-align: right;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}
.article-details-category {
    font-size: 16px;

    color: #69b93c;

    background: rgb(251 255 253 / 78%);
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 10px;
}
.ltr .article-details-title {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: wheat;
    text-align: left
}

.rtl .article-details-title {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
    color: wheat;
    text-align: right
}
.ltr .article-details-content {
    margin-top: 30px;
    font-size: 18px;
    color: #444;
    line-height: 1.8;
    text-align: left;
}
.rtl .article-details-content {
    margin-top: 30px;
    font-size: 18px;
    color: #444;
    line-height: 1.8;
   text-align: right
}

@media (max-width: 768px) {
   .rtl .article-details-title {
        font-size: 20px;
    }

    .ltr.article-details-title {
        font-size: 20px;
    }

    .article-details-title-overlay {
        padding: 10px;
    }
    .article-details-category {
         font-size: 15px;
    }

    .article-details-content {
        font-size: 16px;
    }
}

@media (max-width: 567px) {
    .article-details-section {
        padding: 50px 10px;
    }
    .article-details-category {
         font-size: 10px;
    }

   .rtl .article-details-title {
        font-size: 15px;
    }

    .ltr  .article-details-title {
        font-size: 15px;
    }
}
