/* ==========================================================================
   SECTION 4: STILL-ASSET (transitional image with gradient text overlay)
   ========================================================================== */
/* Still-asset: premium automotive editorial block
   Desktop: image is the hero, text left-aligned with left gradient
   Mobile: text at bottom, car fills upper portion */
.still-asset {
  position: relative;
  width: 100%;
  min-height: 85svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}
.still-asset__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.still-asset__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
  object-position: 70% center;
}
/* Left-side gradient for text readability — leaves car visible on right */
.still-asset__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 35%,
    rgba(0,0,0,0.1) 60%,
    transparent 75%
  );
  z-index: 2;
}
/* Bottom fade to next section */
.still-asset__bg::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 25%;
  background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  z-index: 2;
}
.still-asset__content {
  position: relative;
  z-index: 3;
  text-align: left;
  padding: 0 24px 56px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
/* "100% ELECTRIQUE" — the statement, large display type */
.still-asset__display {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.still-asset__display span {
  color: var(--specs-bg);
}
/* Accent bar under the display heading */
.still-asset__accent {
  width: 48px;
  height: 3px;
  background: var(--specs-bg);
  border: none;
  margin: 0 0 24px;
}
.still-asset__heading {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.still-asset__body {
  color: var(--text-secondary);
  max-width: 480px;
  font-size: 15px;
  line-height: 1.7;
  text-align: left;
}
/* Mobile: image top half, text bottom half with dark bg */
@media (max-width: 599px) {
  .still-asset {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .still-asset__bg {
    position: relative;
    height: 50vw;
    min-height: 200px;
  }
  .still-asset__bg img {
    opacity: 1;
    object-position: center center;
  }
  .still-asset__bg::before {
    display: none;
  }
  .still-asset__bg::after {
    height: 40%;
    background: linear-gradient(to top, var(--black) 0%, transparent 100%);
  }
  .still-asset__content {
    position: relative;
    padding: 28px 20px 40px;
    max-width: 100%;
    background: var(--black);
  }
  .still-asset__display {
    font-size: 36px;
    margin-bottom: 12px;
  }
  .still-asset__accent {
    margin-bottom: 16px;
  }
  .still-asset__heading {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
  }
  .still-asset__body {
    display: none;
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 767px) {
  .still-asset {
    min-height: 60svh;
  }
  .still-asset__display {
    font-size: 48px;
  }
}

