.page-hero-strip {
  background: linear-gradient(135deg, var(--nav-bg) 0%, #4A2E22 100%);
  padding: 48px 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-hero-strip h1 {
  color: #fff;
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-hero-strip p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.withdraw-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  position: relative;
  z-index: 1;
}

.withdraw-timeline {
  position: sticky;
  top: 80px;
  align-self: start;
}

.withdraw-timeline h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 20px;
}

.timeline-item {
  padding-left: 24px;
  border-left: 3px solid var(--border);
  margin-bottom: 24px;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 4px;
  width: 11px;
  height: 11px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--bg);
}

.timeline-item strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.timeline-item span {
  font-size: 13px;
  color: var(--muted);
}

.withdraw-content h2 {
  font-size: 22px;
  margin: 32px 0 14px;
  color: var(--text);
}

.withdraw-content h2:first-child {
  margin-top: 0;
}

.withdraw-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.withdraw-img-wrap {
  margin: 28px 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-raised);
}

.withdraw-img-wrap img {
  max-width: 500px;
  max-height: 320px;
  width: 100%;
  object-fit: cover;
  display: block;
}

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

  .withdraw-timeline {
    position: static;
  }
}

@media (max-width: 375px) {
  .withdraw-layout,
  .withdraw-img-wrap {
    max-width: 100%;
    overflow-x: hidden;
  }

  .withdraw-img-wrap img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
    height: auto;
  }
}
