.news-detail {
  background-color: var(--color-white);
  padding: 80px 0;
}

.news-detail__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.news-detail__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: center;
  max-width: 800px;
  width: 100%;
}

.news-detail__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.news-detail__title-group {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
}

.news-detail__title {
  flex: 1;
  font-family: var(--font-family-main);
  font-size: var(--font-size-4);
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text);
  letter-spacing: 3.2px;
  margin: 0;
  min-width: 0;
}

.news-detail__date {
  font-family: var(--font-family-main);
  font-size: var(--font-size-10);
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-main);
  flex-shrink: 0;
}

.news-detail__eyecatch {
  width: 100%;
  overflow: hidden;
  border-radius: var(--border-radius-sm);
}

.news-detail__eyecatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-detail__divider {
  background-color: var(--color-main);
  border-radius: 100vw;
  width: 160px;
  height: 2px;
  margin: 0;
}

.news-detail__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.news-detail__content-text {
  font-family: var(--font-family-main);
  font-size: var(--font-size-8);
  font-weight: 400;
  line-height: 1.8;
  color: var(--color-text);
  width: 100%;
}

.news-detail__content-text p {
  margin: 0 0 16px 0;
}

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

.news-detail__content-text img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-sm);
  margin: 16px 0;
}

.news-detail__back-to-list {
  display: flex;
  align-items: center;
  justify-content: center;
}


@media screen and (max-width: 960px) {
  .news-detail {
    padding: 40px 0;
  }
  .news-detail__title-group {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
