/* Add custom CSS styles below */ 
/* 🟢 Banner - Desktop */
.s-block--fixed-banner .banner--fixed {
  border-radius: 0;
  width: 95%;
  height: 600px; /* مقاس الديسكتوب */
  max-height: 900px;
  object-fit: cover;
  display: block;
  margin-left: auto; /* يخليه في النص */
  margin-right: auto;
}

/* 📱 Banner - Mobile */
@media (max-width: 768px) {
  .s-block--fixed-banner .banner--fixed {
    width: 100%;
    height: 300px; /* مقاس الجوال */
    max-height: 200px;
    object-fit: cover;
  }
}