.article {
  display: grid;
  gap: 2rem;
  @media (min-width: 1024px) {
    grid-template-columns: 1fr 35.6rem;
  }
}
.article__thumb {
  img {
    width: 100%;
  }
}
.article__content {
}

.text {
  text-align: center;
}

.sections {
  --gap: 1rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.section {
  --gap: 1rem;
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.section__title {
  font-size: var(--g-fz--h3);
  color: var(--g-color--heading--blue);
  &::before {
    content: "■";
  }
}
.section__content {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}

.table-set {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.table-set__table {
  tr {
    @media (max-width: 1023px) {
      display: flex;
      flex-direction: column;
    }
  }
  th,
  td {
    padding: 0.75rem 0.5rem;
    text-align: center;
  }
  th {
    background-color: #7099d0;
    color: var(--g-color--white);
    font-size: var(--g-fz--p1);
  }
  td {
    background-color: #e9e9e9;
    font-size: var(--g-fz--p2);
  }
}
.table-set__text {
}
