.sell-hero {
  min-height: auto;
  padding-bottom: 1.5rem;
}

.sell-title {
  margin: 0.35rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 8vw, 4rem);
  line-height: 1.05;
  max-width: 14ch;
  animation: rise 1s ease 0.12s both;
}

.sell-visual {
  background:
    linear-gradient(180deg, rgba(20, 32, 27, 0.2), rgba(20, 32, 27, 0.75)),
    url("https://images.unsplash.com/photo-1464366400600-7168b8af9bc3?auto=format&fit=crop&w=1400&q=80")
      center / cover;
}

.sell-list,
.sell-steps {
  margin: 1rem auto 0;
  padding: 0;
  max-width: 22rem;
  text-align: left;
  color: var(--muted);
}

.sell-list {
  list-style: none;
}

.sell-list li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.sell-list li::before {
  content: "– ";
  color: var(--gold);
}

.sell-steps {
  padding-left: 1.2rem;
  margin-bottom: 1.4rem;
}

.sell-steps li {
  margin: 0.45rem 0;
}

.price-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.price {
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem 1rem;
  text-align: left;
  background: rgba(0, 0, 0, 0.15);
}

.price.featured {
  border-color: rgba(201, 164, 106, 0.55);
  background: rgba(201, 164, 106, 0.08);
}

.price h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--gold-soft);
}

.price-sum {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.price .muted {
  margin-top: 0.35rem;
}

.footer a {
  color: var(--gold-soft);
}

@media (min-width: 768px) {
  .price-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}
