.xo-parts-wrap {
  background: #000;
  padding: clamp(80px, 10vw, 140px) 24px;
}

.xo-parts-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.xo-parts-title {
  color: #fff;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  margin-bottom: 12px;
}

.xo-parts-subtitle {
  color: rgba(255,255,255,.7);
  font-size: 18px;
  margin-bottom: 48px;
}

/* Grid */
.xo-parts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* Card */
.xo-parts-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  background: #111;
  text-decoration: none;
}

/* Image */
.xo-parts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s ease;
}

/* Overlay */
.xo-parts-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.65),
    rgba(0,0,0,.15)
  );
  transition: opacity .4s ease;
}

/* Label */
.xo-parts-card span {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .02em;
  transition: color .25s ease, transform .25s ease;
}

/* Hover */
.xo-parts-card:hover img {
  transform: scale(1.06);
}

.xo-parts-card:hover span {
  transform: translateY(-4px);
}
