.cashout-hero {
  position: relative;
  padding: 64px 24px;
  background: linear-gradient(160deg, rgba(251, 113, 133, 0.25) 0%, rgba(26, 11, 16, 0.95) 60%);
  overflow: hidden;
}

.cashout-hero h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-style: italic;
  color: var(--accent);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cashout-hero .blur-orb {
  width: 300px;
  height: 300px;
  top: -50px;
  right: 10%;
  background: var(--pastel-blend);
}

.cashout-content {
  padding: 48px 0 64px;
}

.cashout-columns {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.cashout-main h2 {
  font-size: 1.25rem;
  color: var(--primary);
  font-style: italic;
  margin: 28px 0 12px;
}

.cashout-main p {
  color: rgba(255, 241, 242, 0.88);
  margin-bottom: 14px;
}

.cashout-rail {
  padding: 28px;
  border-radius: var(--soft-radius);
  position: sticky;
  top: 78px;
}

.cashout-rail img {
  width: 100%;
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
}

.cashout-rail ul {
  list-style: none;
}

.cashout-rail li {
  padding: 10px 0;
  color: var(--muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}

.cashout-types {
  display: flex;
  gap: 16px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.cashout-type-pill {
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.15);
  color: var(--secondary);
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .cashout-columns {
    grid-template-columns: 1fr;
  }

  .cashout-rail {
    position: static;
  }
}

@media (max-width: 375px) {
  .cashout-rail img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 220px;
  }
}
