#investor .a-CardView-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

/* ================= ACTIONS ================= */

#investor .a-CardView-button--hot {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2563eb, #215bd8);
  color: #fff;
  font-weight: 600;
  border: none;
  transition: transform .3s ease, box-shadow .3s ease;
}

#investor .a-CardView-button--hot:hover {
  background: linear-gradient(135deg, #2563eb, #215bd8);
}

#investor .a-CardView-button {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: transform .3s ease, box-shadow .3s ease;
}

#investor .a-CardView-actions {
    padding-block-start: 0px;
}



/* Banner */
.investors-banner {
  margin:64px 0;
  background:linear-gradient(135deg,#2563eb,#22d3ee);
  border-radius:32px;
  padding:64px;
  color:#fff;
}
.banner-actions {
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn-white {
  background:#fff;
  color:#2563eb;
  padding:16px 32px;
  border-radius:20px;
  border:none;
  font-weight:600;
}
.btn-outline {
  background:transparent;
  border:1px solid rgba(255,255,255,.5);
  color:#fff;
  padding:16px 32px;
  border-radius:20px;
}

/* Animation */
@keyframes fadeUp {
  from {opacity:0; transform:translateY(20px)}
  to {opacity:1; transform:none}
}