/*   توسيط العنوان  */
 
.title{
  text-align:center;
}

/*    ازالة الميتا  */

.post-single ul li {
    list-style-type: circle;
    display: none;
}




 

/* فرض ارتفاع موحّد فعلي للصور */
.sow-blog-layout-grid .sow-entry-thumbnail {
      height: 360px; /* اختر الارتفاع النهائي الذي تريده */
    overflow: hidden;
}

.sow-blog-layout-grid .sow-entry-thumbnail a {
    display: block;
    height: 100%;
}

.sow-blog-layout-grid .sow-entry-thumbnail img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
}











 

 /* حاوية الصورة */
.single-post .featured-image {
    width: 100%;
    height: 620px;
    overflow: hidden;
    position: relative;
}

/* الصورة – الحاسوب */
.single-post .featured-image img {
    width: 100%;          /* يملأ العرض */
    height: auto;         /* يحافظ على النسبة */
    max-height: 100%;     /* لا يتجاوز الحاوية */
    display: block;
    margin: 0 auto;       /* توسيط أفقي نظيف */
}

/* الموبايل */
@media (max-width: 768px) {
    .single-post .featured-image {
        height: 340px;
    }

    .single-post .featured-image img {
        height: 100%;
        object-fit: cover;
    }
}