.v43-bank-balances {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #cfe0ed;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(26, 62, 91, .06);
}

.v43-bank-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}

.v43-bank-title small,
.v43-bank-grid span {
  color: #607994;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.v43-bank-title h2 {
  margin: 3px 0 0;
  color: #102b50;
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
}

.v43-bank-title > strong {
  color: #26825f;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 500;
}

.v43-bank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.v43-bank-grid article {
  min-width: 0;
  padding: 15px;
  border-left: 3px solid #65b6e8;
  border-radius: 10px;
  background: #f8fbfd;
}

.v43-bank-grid strong {
  display: block;
  margin: 8px 0 4px;
  color: #26825f;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.v43-bank-grid strong.negative { color: #c5543f; }
.v43-bank-grid small { color: #8092a5; }

@media (max-width: 760px) {
  .v43-bank-title { align-items: flex-start; flex-direction: column; }
  .v43-bank-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .v43-bank-grid { grid-template-columns: 1fr; }
}
