/**
 * Sell Your Boat page , Bourne Builders
 */

/* Process steps */
.sell-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}

.sell-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-border), var(--color-gold), var(--color-border));
  z-index: 0;
}

.sell-step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  position: relative;
  z-index: 1;
}

.sell-step__number {
  width: 56px;
  height: 56px;
  background: var(--color-white);
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 500;
  color: var(--color-gold);
}

.sell-step__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--color-navy);
}

.sell-step__desc {
  font-size: var(--text-sm);
  color: var(--color-slate);
  line-height: var(--leading-loose);
}

/* Valuation section photo */
.sell-valuation-photo {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border-radius: var(--radius-xl);
  margin-block: var(--space-10);
}

.sell-valuation-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .sell-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .sell-steps::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .sell-steps {
    grid-template-columns: 1fr;
  }
}
