.elementor-976 .elementor-element.elementor-element-d576670{--display:flex;--min-height:40vh;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--padding-top:50px;--padding-bottom:50px;--padding-left:25px;--padding-right:25px;}.elementor-976 .elementor-element.elementor-element-610635e2{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;text-align:center;font-family:"Teko", Sans-serif;font-size:23px;font-weight:400;text-transform:uppercase;color:#FFFFFF;}.elementor-976 .elementor-element.elementor-element-7ec57747{--e-image-carousel-slides-to-show:6;}@media(min-width:768px){.elementor-976 .elementor-element.elementor-element-d576670{--content-width:1014px;}}@media(max-width:1024px){.elementor-976 .elementor-element.elementor-element-7ec57747{--e-image-carousel-slides-to-show:6;}}@media(max-width:767px){.elementor-976 .elementor-element.elementor-element-7ec57747{--e-image-carousel-slides-to-show:3;}}/* Start custom CSS *//* Scope */
#stories-fade {
  --sf-h: 450px;
  --sf-radius: 18px;
  --sf-orange: #FD350B; /* updated orange */
  --sf-font: system-ui, -apple-system, "Segoe UI", Inter, Roboto, Arial, sans-serif;
  color: #fff;
  font-family: var(--sf-font);
  font-size: 10pt; /* base font size */
}

/* Remove default widget padding if needed */
#stories-fade .elementor-widget-container { padding: 0; }

/* Card shell */
#stories-fade .sf-card {
  position: relative;
  height: var(--sf-h);
  border-radius: var(--sf-radius);
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0,0,0,.22);
}

/* Front (image) */
#stories-fade .sf-front {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  transition: opacity .35s ease;
}

/* Back (orange panel) */
#stories-fade .sf-back {
  position: absolute;
  inset: 0;
  background: var(--sf-orange); /* this now uses #FD350B */
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity .35s ease;
}

/* Hover/Focus/Tap shows the back */
#stories-fade .sf-card:hover .sf-back,
#stories-fade .sf-card:focus-within .sf-back {
  opacity: 1;
}

/* Fade image out on hover */
#stories-fade .sf-card:hover .sf-front,
#stories-fade .sf-card:focus-within .sf-front {
  opacity: 0;
}

/* Content bits */
#stories-fade .sf-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
#stories-fade .sf-stars {
  letter-spacing: 2px;
  font-size: 0.95em;
}
#stories-fade .sf-rating {
  font-size: 0.75em;
  opacity: 0.85;
}
#stories-fade .sf-quote {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 0 14px;
}
#stories-fade .sf-footer {
  margin-top: auto;
  display: flex;
  gap: 8px;
  align-items: center;
}
#stories-fade .sf-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255,255,255,.4);
}
#stories-fade .sf-name {
  font-weight: 700;
  font-size: 0.95em;
}
#stories-fade .sf-role {
  font-size: 0.8em;
  opacity: 0.9;
}

/* Responsive */
@media (max-width:1024px) {
  #stories-fade .sf-card { height:420px; }
}
@media (max-width:600px) {
  #stories-fade .sf-card { height:360px; }
  #stories-fade .sf-quote { font-size:0.9em; }
}

/* Make the orange panel a 3-row grid */
#stories-fade .sf-back{
  display: grid !important;
  grid-template-rows: auto 1fr auto;
  align-items: center;
  justify-items: center;
  height: 100% !important;
  padding: 24px 20px !important;
  text-align: center;
}

/* Top row (stars + rating) */
#stories-fade .sf-top{
  width: 100% !important;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 8px 0 !important;
}

/* Center quote */
#stories-fade .sf-quote{
  align-self: center !important;
  justify-self: center !important;
  margin: 0 !important;
  max-width: 90% !important;
  line-height: 1.5 !important;
}

/* Bottom (avatar + name) */
#stories-fade .sf-footer{
  align-self: end !important;
  justify-self: center !important;
  display: flex !important;
  gap: 8px;
  margin-top: 10px !important;
}/* End custom CSS */