.home-blog-page {
    direction: rtl;
    background: #fff;
}

.home-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/bgarticle.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.home-hero-inner img {
    height: auto;
    width:100%;
    display: block;
    margin:auto;
}

.home-posts-section {
    max-width: 100%;
    margin: 0 auto;
    padding: 3rem 24px 3rem;
}

.home-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 34px;
}

.home-post-card {
    text-align: right;
}

.home-post-image {
    display: block;
    width: 100%;
    aspect-ratio: 1.45 / 1;
    overflow: hidden;
}

.home-post-image img {
    width: 100%;
}

.home-post-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;
    direction: ltr;
}

.plus-icon {
    width: 27px;
    height: 27px;
    background: #02745a;
    color: #fff;
    font-size: 27px;
    line-height: 33px;
    text-align: center;
    font-weight: 300;
}
.post-date {
    direction:rtl;
}

.home-post-title {
    margin: 20px 0 10px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 700;
}

.home-post-title a {
    color: #02745a;
    text-decoration: none;
}

.home-post-excerpt {
    color: #555;
    font-size: 15px;
    line-height: 2;
    margin: 0;
    text-align: justify;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 70px;
}

#load-more-posts {
    background: #02745a;
    color: #fff;
    border: 0;
    padding: 14px 55px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

#load-more-posts:hover {
    background: #006150;
}

@media (max-width: 992px) {
    .home-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .home-posts-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .home-post-title {
        font-size: 22px;
    }
}