.t-article__image {
  position: relative;
  margin-bottom: 3rem;
}
.t-article__image img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: 1rem;
}
.t-article__image--small {
  height: 30rem;
}
.t-article__image--medium {
  height: 50rem;
}
.t-article__image--large {
  height: 70rem;
}
.t-article__image--adapt img {
  height: auto;
  position: relative;
}
.t-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.t-article__tag {
  text-decoration: none;
  color: var(--color-white);
  padding: 0.5rem 1rem;
  background-color: var(--color-primary);
}
.t-article__info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: var(--body-fs-sm);
  color: var(--color-primary-border);
  margin-bottom: 1rem;
}
.t-article__share {
  display: flex;
  margin-bottom: 1.5rem;
}
.t-article__share.show-line--top {
  border-top: 1px solid var(--color-primary-border);
  padding-top: 4rem;
}
.t-article__share .m-list-social {
  display: flex;
  align-items: center;
}
.t-article__share .m-list-social__item {
  margin-left: 3rem;
}
@media screen and (min-width: 768px) {
  .t-article__share .m-list-social__item {
    margin-left: 4rem;
  }
}
.t-article__share .m-list-social__link {
  display: flex;
  text-decoration: none;
  color: currentColor;
  align-items: center;
}
.t-article__share .m-list-social__link .icon {
  margin-left: 0.5rem;
}
.t-article__share .t-item__share-label {
  font-weight: 700;
}

.template-article .rte a {
  font-weight: 400;
  text-decoration: underline;
}
