body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #f2f6fb;
  color: #222;
  margin: 0;
  /* padding: 24px; */
}

.finance-widget {
  width: 100%;
  max-width: none;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 1px solid #d8e2f1;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(35, 60, 101, 0.14);
  /* padding: 20px; */
  /* margin: 20px 0; */
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.finance-widget > h2 {
  grid-column: 1 / -1;
  margin: 0 0 12px;
  font-size: 1.2rem;
  text-align: center;
  color: #1e3a7a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.finance-widget h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 1.2rem;
  color: #1e3a7a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.finance-item {
  min-height: 120px;
  border: 1px solid #e1e9f4;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-align: center;
}

@media (max-width: 960px) {
  .finance-widget {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .finance-widget {
    grid-template-columns: 1fr;
  }
  .finance-widget > h2 {
    font-size: 1rem;
  }
}

.finance-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.finance-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(35, 60, 101, 0.12);
}

.label {
  font-weight: 600;
  color: #4d6ba6;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.value {
  font-weight: 700;
  font-size: 1.4rem;
  color: #1a2f63;
  margin-top: 8px;
}