.sub-cash-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.sub-cash-header {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  margin-bottom: 40px;
  align-items: end;
}

.sub-cash-header h1 {
  font-family: var(--font-mono);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.sub-cash-header-img {
  max-width: 500px;
  max-height: 320px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.sub-cash-header-img img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
}

.sub-cash-quote {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 40px;
  position: relative;
}

.sub-cash-quote::before {
  content: "MISSION CONTROL";
  position: absolute;
  top: -1px;
  left: 20px;
  font-family: var(--font-mono);
  font-size: 8px;
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  letter-spacing: 0.12em;
}

.sub-cash-quote p {
  font-size: 17px;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
}

.sub-cash-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sub-cash-col h2 {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.sub-cash-col p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sub-cash-types {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.sub-cash-type {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 14px 18px;
}

.sub-cash-type-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--primary);
  flex-shrink: 0;
}

.sub-cash-type strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  margin-bottom: 4px;
}

.sub-cash-type span {
  font-size: 13px;
  color: var(--muted);
}

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

  .sub-cash-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .sub-cash-header-img {
    max-width: 100%;
    overflow: hidden;
  }

  .sub-cash-header-img img {
    max-width: 100%;
    height: auto;
    max-height: 240px;
    object-fit: contain;
  }
}
