/* Work card — image strip at top */
.a-card-img {
  width: calc(100% + 56px);
  margin: -28px -28px 24px -28px;
  height: 190px;
  overflow: hidden;
  position: relative;
}

.a-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(40%) brightness(0.72);
  transition: filter 0.5s ease, transform 0.6s ease;
  display: block;
}

.a-card:hover .a-card-img img {
  filter: grayscale(20%) brightness(0.85);
  transform: scale(1.03);
}

/* Start section left — image overlay */
.start-l-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.start-l-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(30%) brightness(0.25);
}
