.wp-block-lazyblock-table-section {
  /*margin: 100px 0;*/
  margin: 50px 0;
}

.table-section-top {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 8%;
}

.table-section-content {
  display: none;
}

.table-section-top .table-section-content {
  display: block;
  flex: 1;
}

.table-section-title {
  width: 40%;
  background-color: #70C0A3;
  color: #fff;
  padding: 60px 60px;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.2;
  margin-left: auto;
}

html[lang="en-US"] .table-section-title {
  font-size: calc(48px - 2px);
}

.table {
  background-color: #fff;
  box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.3);
}

.table-row {
  display: flex;
}

.table-header {
  width: 390px;
  background-color: #7a7a7a;
  color: #fff;
  font-weight: 600;
  padding: 40px 40px;
}

.table-content {
  flex: 1;
  padding: 40px 40px;
}

@media screen and (max-width: 1280px) {
  .wp-block-lazyblock-table-section {
    margin: 40px 0;
  }

  .table-section-top {
    padding-right: 0;
  }

  .table-section-content {
    display: block;
    margin-top: 30px;
  }

  .table-section-top .table-section-content {
    display: none;
  }

  .table-section-title {
    width: 83%;
    padding: 40px 60px;
    font-size: 36px;
  }

  html[lang="en-US"] .table-section-title {
    font-size: calc(36px - 2px);
  }

  .table-header {
    width: 192px;
    padding: 20px 20px;
  }

  .table-content {
    padding: 20px 20px;
  }
}

@media screen and (max-width: 768px) {
  .table-section-content {
    margin-top: 20px;
  }

  .table-section-title {
    width: 72%;
    font-size: 28px;
  }

  html[lang="en-US"] .table-section-title {
    font-size: calc(28px - 2px);
  }
}

@media screen and (max-width: 480px) {
  .table-header {
    width: 40%;
  }
}