
.fmsw-showcase{
  position:relative;
  overflow:hidden;
  direction: rtl;
  --fmsw-accent-w: 40%;
}
.fmsw-showcase:before{
  content:"";
  position:absolute;
  top:0; bottom:0;
  right:0;
  width: var(--fmsw-accent-w, 40%);
  background-color:#ff5a1f;
  z-index:0;
}
.fmsw-showcase:after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  right:0;
  width: var(--fmsw-accent-w, 40%);
  pointer-events:none;
  background-image: var(--fmsw-accent-img);
  background-size: cover;
  background-position: center;
  opacity: var(--fmsw-accent-opacity, 0);
  z-index:1;
}

/* Left background image layer */
.fmsw-showcase__bg-left{
  position:absolute;
  top:0; bottom:0;
  left:0;
  width: calc(100% - var(--fmsw-accent-w, 40%));
  pointer-events:none;
  background-image: var(--fmsw-left-img);
  background-size: var(--fmsw-left-size, cover);
  background-position: var(--fmsw-left-pos, center center);
  background-repeat: no-repeat;
  opacity: var(--fmsw-left-opacity, 0);
  z-index: 1;
}

.fmsw-showcase__inner{
  position:relative;
  z-index:2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.fmsw-showcase__grid{
  display:flex;
  gap: 36px;
  align-items:center;
}
.fmsw-showcase__content{
  flex: 1 1 52%;
  min-width: 300px;
}
.fmsw-showcase__media{
  flex: 1 1 48%;
  min-width: 300px;
  display:flex;
  justify-content:center;
}
.fmsw-showcase__kicker{
  font-size: 14px;
  font-weight: 800;
  color: #ff5a1f;
  margin-bottom: 14px;
  letter-spacing: .2px;
}
.fmsw-showcase__title{
  margin: 0 0 14px 0;
  line-height: 1.25;
  font-weight: 900;
  position: relative;
}
.fmsw-showcase__title:after{
  content:"";
  display:block;
  width: 90px;
  height: 3px;
  background: #ff5a1f;
  margin-top: 12px;
  border-radius: 999px;
  opacity: .95;
}
.fmsw-showcase__title-highlight{
  display:inline-block;
  margin-right: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  background:#ff5a1f;
  color:#fff;
  vertical-align: middle;
  box-shadow: 0 10px 25px rgba(255,90,31,.18);
}
.fmsw-showcase__desc{
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
}
.fmsw-showcase__stats{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.fmsw-stat{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #f0e7dc;
  background:#fff;
  box-shadow: 0 12px 30px rgba(17,24,39,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fmsw-stat:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(17,24,39,.10);
}
.fmsw-stat__icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 18px;
  flex: 0 0 44px;
}
.fmsw-stat__meta{
  min-width: 0;
}
.fmsw-stat__num{
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
  color:#111827;
}
.fmsw-stat__suffix{
  font-size: 14px;
  font-weight: 800;
  margin-right: 2px;
}
.fmsw-stat__label{
  font-size: 13px;
  font-weight: 900;
  color:#ff5a1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fmsw-showcase__media-frame{
  width: 100%;
  max-width: 560px;
  height: 420px;
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.25);
  box-shadow: 0 22px 60px rgba(17,24,39,.14);
  overflow:hidden;
}
.fmsw-showcase__media-frame img{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 1024px){
  .fmsw-showcase__grid{ gap: 26px; }
  .fmsw-showcase__stats{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

/* Mobile */
@media (max-width: 767px){
  .fmsw-showcase__inner{
    padding: 44px 18px !important;
  }
  .fmsw-showcase:before,
  .fmsw-showcase:after{
    width: 100% !important;
    right: 0;
    opacity: .08;
  }
  .fmsw-showcase__bg-left{
    width: 100% !important;
    opacity: calc(var(--fmsw-left-opacity, 0) * 0.55);
  }
  .fmsw-showcase__grid{
    flex-direction: column-reverse;
    gap: 20px;
    align-items: stretch;
  }
  .fmsw-showcase__content,
  .fmsw-showcase__media{
    min-width: 0;
  }
  .fmsw-showcase__kicker{
    font-size: 13px;
    margin-bottom: 10px;
  }
  .fmsw-showcase__title{
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 12px;
  }
  .fmsw-showcase__title:after{
    width: 86px;
    height: 3px;
    margin-top: 10px;
  }
  .fmsw-showcase__title-highlight{
    margin-right: 6px;
    padding: 6px 10px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
  }
  .fmsw-showcase__desc{
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 18px;
  }
  .fmsw-showcase__stats{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px;
  }
  .fmsw-stat{
    padding: 12px 12px;
  }
  .fmsw-stat__icon{
    width: 42px;
    height: 42px;
  }
  .fmsw-stat__num{ font-size: 17px; }
  .fmsw-stat__label{ font-size: 12px; }
  .fmsw-showcase__media-frame{
    max-width: 100%;
    height: 240px !important;
    border-width: 1px;
  }
}

@media (max-width: 480px){
  .fmsw-showcase__title{ font-size: 22px; }
  .fmsw-showcase__stats{ grid-template-columns: 1fr !important; }
  .fmsw-showcase__media-frame{ height: 220px !important; }
}
