/* Add custom CSS styles below */ 
a.banner-entry.square-photos {
    background: transparent; /* خلفية شفافة */
}

.banner-entry {
    transition:
        transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),       /* حركة تكبير/تصغير */
        background-size 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), /* انتقال حجم الخلفية */
        background-position 0.6s ease;                             /* انتقال موضع الخلفية */
}

.banner-entry:hover {
    transform: scale(1.05) translateY(-10px); /* تكبير وتحريك لأعلى عند الهوفر */
}

img {
    background: transparent !important; /* إزالة خلفية الصور */
    border-radius: 0;                   /* إزالة الزوايا الدائرية */
}
.index section.s-block--fixed-banner:nth-of-type(1) > .container,
.index section.s-block--fixed-banner:nth-of-type(6) > .container {
    max-width: 100%; /* تمديد الكونتينر بعرض الصفحة */
    padding: 0;      /* إزالة الهوامش الداخلية */
}

section.s-block.s-block--fixed-banner.wide-placeholder:first-of-type {
    margin-top: 0 ;
}
/* Desktop */
.banner-entry {
    height: 664px;
}

/* Mobile */
@media (max-width: 767px) {
    .banner-entry {
        height: 170px; /* غيّر الرقم اللي يعجبك */
    }
   .s-block--banners .grid.one-row {
        grid-template-columns: repeat(3, 1fr); /* عمودين للشاشات الصغيرة */
        gap: 1rem;
    }
  
}