﻿/* Fund card */
.fund-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  padding: 18px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

/* Hover */
.fund-card:hover {
  transform: translateY(-6px);
}

/* Image */
.fund-image {
  width: 40%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 50px;
}

/* Text color */
.fund-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #525252 !important;
  margin-bottom: 50px !important;
}

/* Button base */
.fund-button {
  display: inline-block !important;
  padding: 10px 28px !important;
  border-radius: 16px !important;
  background-color: #014086 !important;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 14px !important;
  border: 2px solid #014086 !important;
  transition: all 0.3s ease !important;
}

/* Button hover */
.fund-button:hover {
  background-color: transparent !important;
  color: #014086 !important;
  border-color: #014086 !important;
}
