.im-service-strips {
  padding: 90px 0;
}

.im-service-strips__wrap {
  max-width: 1180px;
}

/* make sure list behaves */
.im-service-strips__list {
  margin: 0;
  padding: 0;
}

.im-service-strip {
  list-style: none;
}

/* ROW (force exact behaviour regardless of theme globals) */
.im-service-strips .im-service-strip__link {
  position: relative;
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  align-items: center !important;

  padding: 56px 48px;
  text-decoration: none;
  background: #0b0b0b;
  color: #fff;

  border-top: 1px solid rgba(255,255,255,0.14);
  overflow: hidden;
}

.im-service-strips .im-service-strip:last-child .im-service-strip__link {
  border-bottom: 1px solid rgba(255,255,255,0.14);
}

/* LEFT IMAGE PANEL — hidden until hover */
.im-service-strips .im-service-strip__imgwrap {
  position: absolute !important;
  left: 0;
  top: 0;
  height: 100%;
  width: 240px;

  opacity: 0;
  transform: translateX(-28px);
  overflow: hidden;

  transition: transform 260ms ease, opacity 220ms ease;
  pointer-events: none;
}

.im-service-strips .im-service-strip__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content shifted right to make room for image panel */
.im-service-strips .im-service-strip__content {
  display: grid;
  gap: 14px;
  padding-left: 240px;
  min-width: 0;
}

.im-service-strips .im-service-strip__title {
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.05em;
  text-transform: uppercase;
  margin: 0;
}

.im-service-strips .im-service-strip__desc {
  font-size: 15px;
  opacity: 0.85;
  max-width: 52ch;
}

.im-service-strips .im-service-strip__num {
  font-size: clamp(56px, 6vw, 108px);
  font-weight: 300;
  letter-spacing: -0.02em;
  opacity: 0.9;
}

/* HOVER — flip row + reveal image */
.im-service-strips .im-service-strip__link:hover,
.im-service-strips .im-service-strip__link:focus-visible {
  background: #f1f1f1;
  color: #0b0b0b;
  border-top-color: rgba(0,0,0,0.14);
}

.im-service-strips .im-service-strip__link:hover .im-service-strip__imgwrap,
.im-service-strips .im-service-strip__link:focus-visible .im-service-strip__imgwrap {
  opacity: 1;
  transform: translateX(0);
}

/* keep border bottom on hover */
.im-service-strips .im-service-strip:last-child .im-service-strip__link:hover,
.im-service-strips .im-service-strip:last-child .im-service-strip__link:focus-visible {
  border-bottom-color: rgba(0,0,0,0.14);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .im-service-strips .im-service-strip__link {
    padding: 42px 24px;
  }
  .im-service-strips .im-service-strip__imgwrap {
    width: 190px;
  }
  .im-service-strips .im-service-strip__content {
    padding-left: 190px;
  }
}

@media (max-width: 700px) {
  .im-service-strips .im-service-strip__link {
    grid-template-columns: 1fr !important;
    gap: 18px;
    padding: 34px 18px;
  }

  .im-service-strips .im-service-strip__imgwrap {
    position: static !important;
    width: 100%;
    height: 220px;
    transform: none;
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .im-service-strips .im-service-strip__content {
    padding-left: 0;
  }

  .im-service-strips .im-service-strip__num {
    justify-self: start;
    opacity: 0.7;
  }

  .im-service-strip.is-open .im-service-strip__link {
    background: #f1f1f1;
    color: #0b0b0b;
  }

  .im-service-strip.is-open .im-service-strip__imgwrap {
    opacity: 1;
  }
}
