.posts__categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}

.posts__category {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 9999px;
}

.post__title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 72px;
  line-height: 80px !important;
  text-align: center;
  color: var(--primary-color);
}

.post__meta {
  margin-bottom: 64px;
  font-size: 18px;
  font-weight: 400;
  color: #6E6E6E;
  text-align: center;
}

.post__thumb {
  text-align: center;
  margin-bottom: 40px;
}

.post__thumb img {
  max-width: 100%;
  height: auto;

}

.post__content-wrapper {
  max-width: 910px;
  margin: 0 auto;
}

.single-post h1 {
  line-height: 1;
}

.single-post h1,
.single-post h2,
.single-post h3,
.single-post h4,
.single-post h5,
.single-post h6 {
  font-weight: 400;

}

.single-post a:not(.wp-block-button__link) {
  color: var(--primary-color);
}

/* NEWS LIST */
.extra-news {
  padding-bottom: 160px;
}

.extra-news__main-title {
  margin-bottom: 64px;
  margin-top: 0;
  font-size: 72px;
  line-height: 80px;
  font-weight: 400;
  color: var(--primary-color);
}

.extra-news__thumb {
  display: block;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.extra-news__tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.extra-news__title {
  margin: 16px 0;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-regular);
}

.single-post .extra-news__title a {
  text-decoration: none;
  color: var(--default-dark);
}

.extra-news__date {
  display: block;
  font-size: 18px;
  color: #6E6E6E;
}

.extra-news__tag {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 9999px;
  transition: all .15s ease;
}

.single-post .extra-news__cta .btn {
  margin-top: 64px;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 996px) {
  .post__title {
    font-size: 48px;
    line-height: 56px !important;
  }

  .extra-news__list {
    gap: 48px;
  }

  .extra-news__main-title {
    font-size: 62px;
    margin-bottom: 52px;
  }
}

@media (max-width: 692px) {
  .extra-news {
    padding-bottom: 80px;
  }

  .post__title {
    font-size: 38px !important;
    line-height: 42px !important;
  }

  .extra-news__main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
}