.fleet-spotlight {
  perspective: 1100px;
}

.fleet-spotlight-card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  clip-path: inset(0 round 1.25rem);
  background: #0f172a;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  will-change: transform;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.fleet-spotlight-card:hover {
  transform: translateY(-4px) translateZ(0) rotateX(6deg) rotateY(-7deg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}
.fleet-spotlight-card:focus-within {
  transform: translateY(-4px) translateZ(0) rotateX(6deg) rotateY(-7deg);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18);
}

.fleet-spotlight-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(
      1200px 600px at 20% 20%,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
}
.fleet-spotlight-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 15%,
    rgba(15, 23, 42, 0.88) 100%
  );
  pointer-events: none;
}
.fleet-spotlight-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.4s ease;
}
.fleet-spotlight-card:hover .fleet-spotlight-img {
  transform: scale(1.045);
}

.fleet-spotlight-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 18px 16px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--secondary) 28%, rgba(15, 23, 42, 0.92)) 62%,
    var(--primary) 100%
  );
  color: #fff;
}
@media (min-width: 992px) {
  .fleet-spotlight-body {
    padding: 22px 22px 18px;
  }
}

.fleet-spotlight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.fleet-spotlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.fleet-spotlight-year {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.fleet-spotlight-title {
  font-weight: 800;
  margin: 0;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
}
.fleet-spotlight-subtitle {
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
}
