/* ============================================
   News Detail
   ============================================ */
.news-detail {
  background-color: #f4f4ef;
  padding: 0 0 120px;
}

.news-detail__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.news-detail__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #2b0f09;
  line-height: 1.6;
  margin-bottom: 16px;
}

.news-detail__date {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #2b0f09;
  margin-bottom: 40px;
}

/* Body */
.news-detail__body {
  border-top: 1px solid #bbb2ad;
  padding-top: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: -0.04em;
  color: #3b2a1a;
}

.news-detail__body p {
  margin-bottom: 24px;
}

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

.news-detail__body strong {
  font-weight: 700;
}

/* Image */
.news-detail__image {
  margin: 40px 0;
}

.news-detail__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ============================================
   Article Navigation
   ============================================ */
.news-detail__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 64px;
}

.news-detail__nav-prev,
.news-detail__nav-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #2b0f09;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  transition: opacity 0.3s;
}

.news-detail__nav-prev:hover,
.news-detail__nav-next:hover {
  opacity: 0.6;
}

.news-detail__nav-prev.is-disabled,
.news-detail__nav-next.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.news-detail__nav-arrow {
  height: 14px;
  width: auto;
}

.news-detail__nav-arrow--prev {
  transform: scaleX(-1);
}

.news-detail__nav-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #2b0f09;
  background-color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 24px;
  transition: opacity 0.3s;
}

.news-detail__nav-back:hover {
  opacity: 0.6;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .news-detail {
    padding: 0 0 64px;
  }

  .news-detail__inner {
    padding: 0 20px;
  }

  .news-detail__title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .news-detail__date {
    font-size: 13px;
    margin-bottom: 28px;
  }

  .news-detail__body {
    padding-top: 28px;
    font-size: 14px;
    line-height: 2;
  }

  .news-detail__body p {
    margin-bottom: 20px;
  }

  .news-detail__image {
    margin: 28px 0;
  }

  .news-detail__nav {
    margin-top: 48px;
    gap: 8px;
  }

  .news-detail__nav-prev,
  .news-detail__nav-next {
    font-size: 12px;
    padding: 6px 12px;
    flex-shrink: 0;
  }

  .news-detail__nav-back {
    font-size: 13px;
    padding: 6px 16px;
  }

  .news-detail__nav-arrow {
    height: 12px;
  }
}
