/* ===============================
   OUR STORIES – Card Layout (Full Image Cover)
   - Image fill width/height
   - Plus icon bottom center
================================ */

.our-stories .cause-block-one{
  height: 100%;
}

/* ===============================
   Image Wrapper (FIXED HEIGHT + FULL COVER)
================================ */
.our-stories .cause-block-one .image-box{
  padding: 0 !important;              /* احتياط لو الثيم بحط padding */
}

.our-stories .cause-block-one .image-box .image{
  height: 300px;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.our-stories .cause-block-one .image-box .image > a{
  display: block;
  height: 100%;
  width: 100%;
}

.our-stories .cause-block-one .image-box .image img{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;                  /* ✅ تعبية كاملة */
object-position: center 15%;
  display: block;
}

/* ===============================
   Content Layout
================================ */
.our-stories .cause-block-one .lower-content{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
  text-align: center;
}

/* خلي آخر عنصر (الزر) ينزل لتحت */
.our-stories .cause-block-one .lower-content > div:last-child{
  margin-top: auto;
  display: flex;
  justify-content: center;
}

/* ===============================
   Plus Icon (+) – Bottom Center
================================ */
.our-stories .cause-block-one .theme-btn.btn-one{
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  background-color: #ff5a1f;
  color: #fff !important;
  font-size: 26px;
  font-weight: 400;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: none;
  box-shadow: 0 8px 20px rgba(255,90,31,0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

/* علامة + */
.our-stories .cause-block-one .theme-btn.btn-one::after{
  content: "+";
  position: relative;
  top: -1px;
}

/* Hover */
.our-stories .cause-block-one .theme-btn.btn-one:hover{
  background-color: #e94e18;
  transform: translateY(-3px) rotate(90deg);
  box-shadow: 0 12px 28px rgba(255,90,31,0.45);
}

/* موبايل */
@media (max-width: 767px){
  .our-stories .cause-block-one .image-box .image{
    height: 290px;
  }
}
span{
    color: #ff6a2a;

}