.news-page {
    direction: rtl;
    background: #fff;
}

.news-hero {
    padding: 0px 0px 0px;
    text-align: center;
    background:linear-gradient(
            to bottom,
            rgba(239,239,239,1) 0%,
            rgba(255,255,255,0) 30%,
            rgba(255,255,255,0) 70%,
            rgba(239,239,239,1) 100%
        ), url(/wp-content/uploads/2026/06/bnews.jpg);
    min-height: 480px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
}

.news-hero img {
    height: auto;
    width:100%;
    display: block;
    margin:auto;
}

.news-list-section {
    max-width: 100%;
    margin: 0 auto;
    direction:ltr;
    padding: 3rem 24px 3rem;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.news-card {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 85px;
    align-items: center;
}

.news-card-content {
    text-align: right;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid #02745a;
    margin-top: 16px;
    padding-bottom: 8px;
    color: #333;
    font-size: 14px;
}
.post-date {
    direction:rtl;
}

.plus-icon {
    width: 27px;
    height: 27px;
    background: #02745a;
    color: #fff;
    font-size: 27px;
    line-height: 33px;
    text-align: center;
    font-weight: 300;
}

.news-card-title {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1.5;
    font-weight: 800;
}

.news-card-title a {
    color: #007c67;
    text-decoration: none;
}

.news-card-excerpt {
    color: #555;
    font-size: 16px;
    line-height: 2.2;
    margin: 0;
    text-align: justify;
    direction: rtl;
}

.news-card-image {

}

.news-card-image img {

}

.load-more-wrapper {
    text-align: center;
    margin-top: 90px;
}

.ajax-load-more-btn {
    background: #007c67;
    color: #fff;
    border: 0;
    padding: 14px 55px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

.ajax-load-more-btn:hover {
    background: #006150;
}

@media (max-width: 768px) {
    .news-card {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .news-card-image {
        order: -1;
    }

    .news-card-title {
        font-size: 23px;
    }
}