/*############# CUSTOM START ############*/
.blog__article__paragraph h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  margin-bottom: 20px;
}

.blog__article__paragraph h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 20px;
}

.blog__article__paragraph h5 {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .blog__article__paragraph h3,
  .blog__article__paragraph h4 {
    font-size: 24px;
    line-height: 29px;
  }
  .blog__article__paragraph h5 {
    font-size: 20px;
    line-height: 32px;
  }
}
@media screen and (max-width: 509px) {
  .blog__article__paragraph h3,
  .blog__article__paragraph h4,
  .blog__article__paragraph h5 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
  }
}
/*############# CUSTOM END ##############*/
.blog__article {
  max-width: 793px;
  width: calc(70% - 20px);
  float: left;
  margin-top: 40px;
  margin-right: 20px;
}

.blog__article .blog__article-title {
  font-family: "Inter";
  font-weight: 600;
  font-size: 36px;
  line-height: 120.4%;
}

.blog__article .blog__article-date {
  margin: 4px 0 40px;
  font-weight: 600;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #697B87;
}

.blog__article .blog__article-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 520px;
  margin-bottom: 40px;
}

.blog__article .blog__article-annatation {
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
}

.blog__article-content .content-label {
  margin: 40px 0 20px;
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  color: #172A3F;
}

.blog__article-content .content-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px 0;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: #172A3F;
  border-top: 1px solid rgba(205, 221, 227, 0.6);
}

.blog__article-content .content-item:last-child {
  border-bottom: 1px solid rgba(205, 221, 227, 0.6);
}

.blog__article-content .content-item::before {
  content: '';
  display: block;
  position: relative;
  width: 5px;
  height: 5px;
  border-top: 2px solid #627080;
  border-right: 2px solid #627080;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: 5px;
  margin-right: 15px;
}

.blog__article-content .content-item:hover {
  color: #000;
}

.blog__article__paragraph {
  margin-top: 40px;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  margin-bottom: 10px;
}

.blog__article__paragraph .paragraph-title {
  font-family: "Inter";
  margin-bottom: 20px;
}

.blog__article__paragraph h3.paragraph-title {
  font-weight: 500;
  font-size: 28px;
  line-height: 48px;
  margin-bottom: 20px;
}

.blog__article__paragraph h4.paragraph-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 20px;
}

.blog__article__paragraph h5.paragraph-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 12px;
}

.blog__article__note {
  font-family: "Inter";
  margin-top: 40px;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  padding-left: 26px;
  position: relative;
}

.blog__article__note::before {
  content: '';
  display: block;
  position: absolute;
  width: 3px;
  height: calc(100% - 14px);
  background-color: #CDDDE3;
  left: 0;
  top: 8px;
}

.blog ul {
  font-weight: 300;
  font-size: 16px;
  line-height: 40px;
}

.blog ul > li {
  position: relative;
  padding-left: 24px;
  line-height: 28px;
}

.blog ul > li:not(:last-child) {
  margin-bottom: 10px;
}

.blog ul > li::before {
  content: '';
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: black;
  margin-right: 16px;
  left: 0;
  top: 10px;
}

.blog ol {
  font-weight: 300;
  font-size: 16px;
  line-height: 40px;
  counter-reset: liCounter;
}

.blog ol ul {
  margin-top: 10px;
}

.blog ol > li {
  position: relative;
  padding-left: 39px;
  line-height: 28px;
}

.blog ol > li:not(:last-child) {
  margin-bottom: 10px;
}

.blog ol > li::before {
  counter-increment: liCounter;
  content: counter(liCounter) ".";
  display: block;
  position: absolute;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  min-width: 23px;
  text-align: end;
  margin-right: 16px;
  color: black;
  left: 0;
}

.blog ol > li a {
  color: black;
}

.blog ol > li a:hover {
  color: #697B87;
}

.blog ol > li a:active {
  color: #697B87;
}

.blog__article__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border: 1px solid #CDDDE3;
  font-size: 16px;
  font-weight: 300;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 40px 0 121px;
  overflow: auto;
}

.blog__article__table .table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog__article__table .table__row .table__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  min-width: 149px;
  padding: 0 24px;
  height: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog__article__table .table__row .table__column:not(:first-child) {
  border-left: 1px solid #CDDDE3;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.blog__article__table .table__row .table__column:first-child {
  min-width: 198px;
}

.blog__article__table .table__row:nth-child(2n) {
  background: rgba(205, 221, 227, 0.24);
}

.blog__article__table .table__row:first-child {
  font-weight: 600;
}

@media screen and (max-width: 1130px) {
  .blog__article {
    width: 100%;
    min-width: 100%;
    margin-right: 0;
  }
  .blog__article__table {
    margin-bottom: 42px;
  }
  .blog__article__table .table__row .table__column:not(:first-child) {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .blog__article .blog__article-title {
    font-weight: 500;
    font-size: 28px;
    line-height: 48px;
  }
  .blog__article__table {
    width: calc(100% + ((100vw - 100%) / 2));
    max-width: 648px;
    margin-right: calc((100vw - 100%) / 2);
  }
  .blog__article__table .table__row {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .blog__article-content .content-label {
    font-size: 24px;
    line-height: 29px;
  }
  .blog__article__paragraph h3.paragraph-title,
  .blog__article__paragraph h4.paragraph-title {
    font-size: 24px;
    line-height: 29px;
  }
  .blog__article__paragraph h5.paragraph-title {
    font-size: 20px;
    line-height: 32px;
  }
  .right-bar__recent-articles {
    display: none;
  }
}

@media screen and (max-width: 509px) {
  .blog__article .blog__article-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
  }
  .blog__article .blog__article-image {
    height: 174px;
  }
  .blog__article .blog__article-annatation {
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
  }
  .blog__article-content .content-label {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
  }
  .blog__article__paragraph {
    font-size: 14px;
    line-height: 24px;
  }
  .blog__article__paragraph h3.paragraph-title,
  .blog__article__paragraph h4.paragraph-title,
  .blog__article__paragraph h5.paragraph-title {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
  }
  .blog__article-content .content-item {
    font-size: 14px;
    line-height: 24px;
  }
  .paragraph-content {
    font-size: 14px;
    line-height: 24px;
  }
  .blog__article__note {
    font-size: 16px;
    line-height: 22px;
  }
}

