.entry-content figure.wp-block-table {
  overflow: auto;
  max-height: 100vh;
  border: 1px solid #d2d2d2;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.entry-content figure.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.entry-content figure.wp-block-table table thead {
  position: sticky;
  top: 0;
  z-index: 2;
}

.entry-content figure.wp-block-table table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
}

.entry-content figure.wp-block-table table thead th:first-child {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
  background: #485D74;
}

.entry-content figure.wp-block-table table thead th {
  background: #485D74;
  color: #fff;
}

.entry-content table {
  background-color: var(--color-white);
  line-height: 140%;
}

.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
  border: none;
  padding: 0.75rem;
}

.entry-content table tbody tr:nth-child(even) td {
  background-color: #fff;
}

.entry-content table tbody tr:nth-child(odd) td {
  background-color: #E9EDF0;
}

.table--coaches tr td:first-child {
  font-weight: 600;
}

.table--coaches tr td:nth-child(6) {
  min-width: 80px;
}



@media (max-width: 600px) {
  .entry-content figure.wp-block-table {
    max-height: calc(100vh - 3rem);
  }
}