/* ------------------------------ */
/* page: NEWS detail */
/* ------------------------------ */

.newsDetailMain {
  background: var(--color-white);
}

.newsDetail {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 96px;
}

.newsDetail__meta {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.newsDetail__date {
  font-size: 16px;
  line-height: 1.4;
  color: #838383;
}

.newsDetail__tag {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.newsDetail__tag--notice {
  color: var(--color-orange);
}

.newsDetail__title {
  margin: 18px 0 0;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.45;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.newsDetail__capture {
  margin: 34px 0 0;
}

.newsDetail__capture img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.newsDetail__body {
  margin-top: 34px;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

.newsDetail__body p {
  margin: 0 0 1.25em;
}

.newsDetail__body p:last-child {
  margin-bottom: 0;
}

.newsDetail__back {
  margin-top: 44px;
}

.newsDetail__backLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text);
}

.newsDetail__backLink::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}
