.data-section {
  max-width: 1100px;
  margin: 85px auto;
  padding: 0 25px;
}
.data-stack {
  display: grid;
  gap: 24px;
}
.data-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.data-card {
  overflow: hidden;
  border: 1px solid #dfe5ef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 24px #15223d0a;
}
.data-card h3 {
  margin: 0;
  padding: 20px 23px;
  background: #f3f5ff;
  color: var(--navy);
  font:
    800 21px "Plus Jakarta Sans",
    sans-serif;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  text-align: left;
  padding: 13px 18px;
  border-bottom: 1px solid #d9e1ed;
  font-size: 14px;
}
thead th {
  background: #eaf3ff;
  color: #153968;
  font-weight: 800;
}
tbody tr:last-child th,
tbody tr:last-child td {
  border-bottom: 0;
}
tbody th {
  width: 60%;
  font-weight: 600;
  color: #34415c;
}
tbody td {
  color: #172f57;
}
.three-column td,
.three-column th {
  width: auto;
}
@media (max-width: 760px) {
  .data-section {
    margin: 55px auto;
    padding: 0 15px;
  }
  .data-columns {
    grid-template-columns: 1fr;
  }
  .data-card {
    overflow-x: auto;
  }
  .data-card h3 {
    font-size: 18px;
    padding: 17px;
  }
  .three-column {
    min-width: 620px;
  }
  th,
  td {
    padding: 12px;
    font-size: 13px;
  }
}
.data-card h3 {
  background: #eef4fc;
  color: #0b2e6b;
}
thead th {
  background: #e8f7ed;
  color: #0a8f2e;
}
tbody td {
  color: #123f85;
}
@media (max-width: 760px) {
  .data-card table {
    min-width: 520px;
  }
  .data-card {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .data-card h3 {
    position: sticky;
    left: 0;
  }
  .data-columns {
    min-width: 0;
  }
}
