@charset "UTF-8";
.CardCash {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: clamp(14px, 2.6vw, 32px);
  padding: clamp(18px, 3vw, 30px);
  border-radius: 28px;
  background: radial-gradient(circle at 20% 20%, #5db4ff, #1f6feb 40%), linear-gradient(120deg, #1f6feb, #00d3db);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.16);
  color: #ffffff;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 640px) {
  .CardCash {
    flex-direction: column;
  }
}

.CardCashVisible {
  opacity: 1;
  transform: translateY(0);
}

.CardCashAside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 170px;
}
@media (max-width: 640px) {
  .CardCashAside {
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
  }
}

.CardCashIconWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 8px 16px rgba(255, 255, 255, 0.2);
  position: relative;
  isolation: isolate;
}
.CardCashIconWrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.25), transparent 65%);
  filter: blur(18px);
  opacity: 0.4;
  z-index: -1;
  transform: translateY(16px);
}
.CardCashIconWrapper :global(svg) {
  width: 48px;
  height: 48px;
}
@media (max-width: 600px) {
  .CardCashIconWrapper {
    width: 70px;
    height: 70px;
  }
}

.CardCashIconCaption {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}
@media (max-width: 640px) {
  .CardCashIconCaption {
    text-align: left;
  }
}

.CardCashBody {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.CardCashTitle {
  margin: 0;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.CardCashDescription {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
}

.CardCashBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  height: 26px;
  border-radius: 999px;
  background: #ffffff;
  color: #005c63;
  font-size: 0.85rem;
  font-weight: 700;
}

.CardCashList {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.95rem;
}
@media (max-width: 600px) {
  .CardCashList {
    flex-direction: column;
    gap: 8px;
  }
}

.CardCashListItem {
  position: relative;
  padding-left: 20px;
}
.CardCashListItem::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #b6ffd4;
  font-weight: 700;
}