
/* TITLE */
.finance-box h3 {
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
}

.finance-box h3::after {
  content: "";
  width: 60px;
  height: 3px;
  background: var(--accent-red);
  display: block;
  margin-top: 8px;
  border-radius: 5px;
}

/* TABLE */
.finance-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 12px;
}

/* HEADER */
.finance-table th {
  background: var(--primary-blue);
  color: #fff;
  padding: 14px;
  text-align: left;
  font-size: 14px;
}

/* BODY */
.finance-table td {
  padding: 14px;
  font-size: 14px;
  color: var(--text-black);
  border-bottom: 1px solid #eee;
}

/* ROW HOVER */
.finance-table tr:hover td {
  background: #f9fbff;
}

/* IMAGE */
.finance-img {
  width: 100%;
  border-radius: 14px;
  margin-top: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.4s;
}

.finance-img:hover {
  transform: scale(1.03);
}

/* RESPONSIVE */
@media(max-width:768px){
  .finance-box {
    padding: 20px;
  }

  .finance-table th,
  .finance-table td {
    font-size: 13px;
    padding: 10px;
  }
}