.site-header-inner .site-title a {
  color: #fff !important;
}
.builder-item--footer_copyright {
  text-align: center;
}
.tm-artilce-page {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.tm-article-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.tm-article {
  font-size: 14px;
  box-sizing: border-box;
  transition: all 0.4s linear;
  overflow: hidden;
}
.tm-article:hover {
  box-shadow: 0 8px 16px rgba(34, 46, 58, 0.25);
  border-radius: 16px;
}
.tm-article .tm-article-img-container {
  height: 270px;
  overflow: hidden;
  display: block;
  font-size: 0;
}
.tm-article .tm-article-img-container > img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.tm-article .tm-article-img-container .tm-article-content {
  padding: 26px 16px;
  background-color: #fff;
}
.tm-article .tm-article-content {
  padding: 26px 16px;
}
.tm-article .tm-article-content .tm-article-content-text {
  margin-bottom: 20px;
}
.tm-article h3 {
  margin: 16px 0;
  font-size: 24px;
}
.tm-article a {
  color: inherit;
  text-decoration: none;
}
.tm-article p {
  margin: 8px 0;
}
.tm-article .tm-category-text {
  color: #712CE2;
}
.tm-article .tm-article-date {
  color: rgba(34, 46, 58, 0.75);
}
.tm-article .author-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tm-article .author-wrapper .tm-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  flex-grow: 0;
  object-fit: cover;
}
.tm-header-article-container .tm-full-article {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.tm-header-article-container .tm-full-article .tm-article-img-container {
  width: 58%;
  height: auto;
  flex-shrink: 0;
}
.tm-header-article-container .tm-article-list {
  margin-top: 50px;
}
.tm-category-container {
  margin-bottom: 36px;
}
.tm-category-container > h2 {
  margin: 0;
  font-size: 32px;
}
.tm-divider {
  margin: 16px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(34, 46, 58, 0.1);
}
@media (max-width: 1023px) {
  .tm-header-article-container .tm-full-article .tm-article-img-container {
    width: 50%;
    flex-shrink: 0;
  }
  .tm-article .tm-article-img-container {
    height: 220px;
  }
  .tm-article .tm-article-img-container .tm-article-content {
    padding: 26px 16px;
  }
}
@media (max-width: 767px) {
  .tm-article-list {
    grid-template-columns: 1fr;
  }
  .tm-article {
    font-size: 14px;
  }
  .tm-article p {
    margin: 4px 0;
  }
  .tm-article .tm-article-img-container {
    height: 160px;
  }
  .tm-article .tm-article-content {
    padding: 18px 12px;
  }
  .tm-article h3 {
    margin: 6px 0;
    font-size: 16px;
  }
  .tm-header-article-container .tm-full-article {
    display: block;
  }
  .tm-header-article-container .tm-full-article .tm-article-img-container {
    width: 100%;
    height: 160px;
    box-sizing: border-box;
  }
  .tm-header-article-container .tm-article-list {
    margin-top: 20px;
  }
  .tm-category-container {
    margin-bottom: 20px;
  }
  .tm-category-container > h2 {
    margin: 0;
    font-size: 24px;
  }
  .tm-divider {
    margin: 6px 0;
  }
}
.tm-author-avatar {
  display: block;
  position: relative;
  font-size: 0;
  width: 48px;
  height: 48px;
}
.tm-author-avatar::after {
  content: "";
  display: block;
  width: 56px;
  border: 1px solid #712CE2;
  border-radius: 50%/100%;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: 0;
  height: 28px;
  position: absolute;
  top: -4px;
  left: -4px;
}
.tm-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
}
