.news-detail__meta, .news-detail__related-title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  --font-size: 12px;
  --font-size-rem: 0.75rem;
  --line-height: 16px;
  --line-height-rem: 1rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

.news-detail {
  padding: 0 0 5rem;
  background-color: #fcfaf8;
}
.news-detail__cover {
  margin-bottom: 1rem;
  border-radius: 16px;
  overflow: hidden;
}
.news-detail__cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1232/480;
  object-fit: cover;
}
.news-detail__body {
  display: flex;
  flex-direction: column;
  padding-top: 2rem;
  gap: 2.5rem;
}
.news-detail__main {
  min-width: 0;
}
.news-detail__meta {
  display: block;
  margin-bottom: 1.5rem;
  color: #194547;
}
.news-detail__editor p {
  margin: 0 0 1.5rem;
  color: rgba(17, 27, 33, 0.64);
  --font-size: 15px;
  --font-size-rem: 0.9375rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.news-detail__editor p:last-child {
  margin-bottom: 0;
}
.news-detail__editor p strong {
  color: #111b21;
}
.news-detail__related {
  padding-top: 2rem;
  border-top: 1px solid rgba(17, 27, 33, 0.08);
}
.news-detail__related-title {
  display: block;
  margin-bottom: 0.5rem;
  color: #194547;
}
.news-detail__related-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-detail__related-item {
  border-bottom: 1px solid rgba(17, 27, 33, 0.08);
}
.news-detail__related-link {
  display: block;
  padding: 1.25rem 0;
  color: #111b21;
  --font-size: 15px;
  --font-size-rem: 0.9375rem;
  --line-height: 24px;
  --line-height-rem: 1.5rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  transition: 150ms cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
.news-detail__related-link:hover {
  color: #194547;
}
@media screen and (min-width: 992px) {
  .news-detail {
    padding-bottom: 7rem;
  }
  .news-detail__body {
    flex-direction: row;
    align-items: flex-start;
    padding-top: 4rem;
    gap: 4rem;
  }
  .news-detail__main {
    flex: 1 1 auto;
    max-width: 760px;
  }
  .news-detail__meta {
    margin-bottom: 2rem;
  }
  .news-detail__editor p {
    --font-size: 16px;
    --font-size-rem: 1rem;
    --line-height: 26px;
    --line-height-rem: 1.625rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
  .news-detail__related {
    flex: 0 0 360px;
    border-top: 0;
    padding-top: 0;
  }
}
.page-header__title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: -0.016em;
  --font-size: 32px;
  --font-size-rem: 2rem;
  --line-height: 42px;
  --line-height-rem: 2.625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}

.page-header__title {
  max-width: unset;
}

@media screen and (min-width: 768px) {
  .page-header__title {
    --font-size: 52px;
    --font-size-rem: 3.25rem;
    --line-height: 62px;
    --line-height-rem: 3.875rem;
    font-size: var(--font-size-rem);
    line-height: var(--line-height-rem);
  }
}