.article__table {
  margin: 43px 0 50px;
  display: flex;
  position: relative;
  padding-top: 19px;
}
.article__table:before {
  content: "";
  display: block;
  border-top: solid 1px #939392;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.article__table-title {
  width: calc((100% / 3) * 1);
  font-size: 1.375rem;
  line-height: 1.625rem;
  text-transform: uppercase;
  color: var(--kmnd-body-color-primary);
}
.article__table-content {
  width: calc((100% / 3) * 2);
}
.article__table-content p {
  position: relative;
  padding-bottom: 16px;
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
}
.article__table-content p:first-of-type {
  margin-top: 0;
}
.article__table-content p:last-of-type {
  margin-bottom: 0;
}
.article__table-content p:after {
  content: "";
  display: block;
  border-top: solid 1px #939392;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.article__table-content p span {
  display: block;
  width: 50%;
  max-width: 233px;
}
@media (max-width: 576px) {
  .article__table {
    margin: 53px 0 34px;
    display: block;
    padding-top: 0;
  }
  .article__table:before {
    display: none;
  }
  .article__table-title {
    width: 100%;
    font-size: 1rem;
    line-height: 1.188rem;
  }
  .article__table-content {
    width: 100%;
  }
  .article__table-content p {
    padding-bottom: 13px;
    margin-top: 13px;
  }
  .article__table-content p:after {
    width: 100vw;
    left: -15px;
  }
  .article__table-content p:first-of-type {
    margin-top: 13px;
    padding-top: 13px;
  }
  .article__table-content p:first-of-type:before {
    content: "";
    display: block;
    border-top: solid 1px #939392;
    position: absolute;
    left: -15px;
    top: 0;
    width: 100vw;
  }
  .article__table-content p span:nth-of-type(1) {
    width: 70%;
    max-width: 193px;
  }
  .article__table-content p span:nth-of-type(2) {
    width: 30%;
    text-align: center;
  }
}