.article {
  display: grid;
  gap: 2rem;
  @media (min-width: 1024px) {
    grid-template-columns: 38.5rem 1fr;
  }
}
.article__thumb {
  img {
  }
}
.article__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.graph-bg {
  background: url(./bg-graph.jpg) no-repeat center / cover;
}
.graph {
  margin: 0 auto;
  width: 100%;
  @media (min-width: 1024px) {
    width: var(--g-width--max-content);
  }
}

.strength-bg {
  background: url(./bg-strengths.jpg) no-repeat center / cover;
}
.strengths {
}
.strengths__list {
  align-items: center;
  counter-reset: css-counter 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  list-style-type: none;
  margin: 0;
}
.strengths__list-item {
  align-items: stretch;
  counter-increment: css-counter 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 1.5rem;
  @media (min-width: 1024px) {
    flex-direction: row;
    margin-bottom: 3rem;
  }
  &:before {
    align-items: center;
    background-color: var(--g-color--blue);
    border: 1px solid var(--g-color--blue--strong);
    content: "0" counter(css-counter);
    color: var(--g-color--white);
    display: inline-flex;
    font-size: var(--g-fz--h2);
    justify-content: center;
    margin-right: 0;
    padding: 0.5rem 0;
    width: 100%;
  }
  @media (min-width: 1024px) {
    &:before {
      margin-right: 2rem;
      padding: 0.5rem 2.1rem;
      width: 12.2rem;
    }
  }
  &:last-child {
    margin-bottom: 0;
  }
}
.strengths__details {
  background-color: var(--g-color--white);
  padding: 2rem;
  width: 100%;
  @media (min-width: 1024px) {
    padding: 3rem;
  }
}
.strengths__title {
  color: var(--g-color--white);
  text-align: center;
  padding: 0 4rem;
  &:after {
    background-color: var(--g-color--white);
    content: "";
    display: block;
    height: 1px;
    margin: 3rem auto 0;
    width: 8rem;
  }
  @media (min-width: 1024px) {
    &:after {
      margin: 3rem auto 0;
      width: 19.7rem;
    }
  }
}
.strengths__sub-title {
  align-items: center;
  display: flex;
  flex-direction: column;
  font-weight: 500;
  margin-bottom: 1.2rem;
  text-align: center;
  white-space: normal;
  @media (min-width: 1024px) {
    flex-direction: row;
    font-weight: 700;
    white-space: nowrap;
  }
  &:after {
    background-color: var(--g-color--blue);
    content: "";
    display: block;
    height: 1px;
    margin-left: 0;
    margin-top: 1.5rem;
    width: 100%;
  }
  @media (min-width: 1024px) {
    &:after {
      margin-left: 2.5rem;
    }
  }
}
.strengths__sub-desc {
  font-size: var(--g-fz--p2);
}
.differences {
  padding: 4rem 0;
}
.differences__title {
  text-align: center;
  &:after {
    background-color: var(--g-color--blue);
    content: "";
    display: block;
    height: 1px;
    margin: 3rem auto 2rem;
    width: 7.9rem;
  }
  @media (min-width: 1024px) {
    &:after {
      margin: 3rem auto 5rem;
      width: 19.7rem;
    }
  }
}

.differences {
}
.differences__table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  @media (max-width: 1023px) {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    height: auto;
    width: auto;
  }
  &.differences__table::-webkit-scrollbar {
    -webkit-appearance: none;
  }
  &.differences__table::-webkit-scrollbar-vertical {
    width: 0;
  }
  &.differences__table::-webkit-scrollbar-horizontal {
    height: 12px;
  }
  &.differences__table::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border: 1px solid #d1d5d4;
  }
  &.differences__table::-webkit-scrollbar-track {
    background-color: #d1d5d4;
    display: block;
    margin: 0 15px;
  }
}
.differences__table-fix {
  @media (max-width: 1023px) {
    display: table;
    overflow-x: initial;
    white-space: normal;
    width: 100%;
  }
}
.differences__table-fix tr th, .differences__table-fix tr td {
  @media (max-width: 767px) {
    font-size: 1.4rem !important;
  }
}
.differences__table tr th {
  background-color: #c6c6c6;
  border-bottom: 10px solid #fff;
  color: #2b2b2b;
  font-size: var(--g-fz--h3);
  height: 17.34rem;
  padding: 0.5rem;
  &:first-child {
    background-color: transparent;
  }
  &:nth-child(2) {
    background-color: var(--g-color--blue--student);
    color: var(--g-color--white);
  }
  &:nth-child(4) {
    background-color: #d9d9d9;
  }
}
.differences__table tr td {
  background-color: #eaeaea;
  border-bottom: 10px solid #fff;
  color: var(--g-color--text);
  font-size: var(--g-fz--h3);
  height: 12.1rem;
  padding: 0.5rem;
  text-align: center;
  &:first-child {
    background-color: var(--g-color--blue);
    color: var(--g-color--white);
    font-size: var(--g-fz--h3);
  }
  &:nth-child(2) {
    background-color: #bfddffd1;
  }
  &:nth-child(4) {
    background-color: var(--g-color--gray--light);
  }
}
.differences__table tr td span {
  font-size: var(--g-fz--p2);
}

.links-bg {
  background: url(./bg-links.jpg) no-repeat center / cover;
}
.links {
  display: grid;
  grid-template-columns: 24rem;
  justify-content: center;
  gap: 2rem;
  @media (min-width: 1024px) {
    grid-template-columns: repeat(2, 33rem);
  }
}
.links__button {
}
