@charset "UTF-8";
.t-article__image {
  position: relative;
}
.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;
}
.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, .t-article__image, .t-article__heading {
  margin-bottom: var(--spacing-xl);
}
@media screen and (min-width: 1100px) {
  .t-article__tags, .t-article__image, .t-article__heading {
    margin-bottom: var(--spacing-lg-2);
  }
}
.t-article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.t-article__tag {
  text-decoration: none;
  color: rgb(var(--color-button-label));
  padding: 0.5rem 1rem;
  background-color: rgb(var(--color-button));
}
.t-article__content ul {
  list-style-type: none; /* Remove default bullet points */
  padding-left: 1.5rem;
}
.t-article__content ul li {
  position: relative; /* Position relative to align bullet */
  margin-bottom: 1rem;
}
.t-article__content ul li::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-accent);
  border-radius: var(--border-radius-2);
  position: absolute;
  left: -1rem; /* Position bullet to the left of text */
  top: 0.5rem;
}
.t-article__comment-wrapper {
  margin-top: 3rem;
}
.t-article__comments {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: var(--layout-block-spacing-small);
}
.t-article__comment {
  padding-bottom: 2rem;
  border-bottom: 1px solid rgb(var(--color-border));
}
.t-article__comment:last-of-type {
  border-bottom: none;
}
.t-article__comments-author {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 3rem;
  font-size: var(--body-fs-xs);
  color: rgb(var(--color-border));
}
.t-article__comments-author-name {
  text-transform: uppercase;
}
.t-article__comments-author-name::after {
  content: "•";
  margin: 0 0 0 1.3rem;
}
.t-article__error-message, .t-article__form-status-error {
  font-size: var(--body-fs-sm);
}
.t-article__info {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.t-article__info-publishing {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
  flex-wrap: nowrap;
}
@media screen and (min-width: 1100px) {
  .t-article__info-publishing {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.t-article__author {
  border-radius: var(--border-radius-40);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.25rem 1.25rem 0.25rem 0.5rem;
}
.t-article__author-image {
  width: 2rem;
  height: 2rem;
}
.t-article__author-image img {
  border-radius: 50%;
  width: 2rem;
  height: 2rem;
}
.t-article__author-name {
  font-family: var(--ff-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
}
.t-article__date {
  font-size: var(--body-fs-xs);
  line-height: var(--body-lh-xs);
  text-wrap: nowrap;
}
