
.news-detail {
  width: 100%;
  max-width: 1200px;
}

.news-detail__hero {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.news-detail__title {
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  color: #333333;
  margin: 30px 0 8px;
}

.news-detail__date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 22px;
  color: #949494;
  margin: 0 0 20px;
}

.news-detail__date i {
  font-size: 14px;
  flex-shrink: 0;
}

.news-detail__content p {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #333333;
  margin: 0 0 20px;
}

.news-detail__section {
  font-size: 24px;
  line-height: 33px;
  font-weight: 400;
  color: #333333;
  margin: 60px 0 20px;
}

.news-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  padding-left: 25px;
}

.news-detail__list li {
  position: relative;
  padding-left: 15px;
  font-size: 18px;
  line-height: 25px;
  color: #333333;
  margin-bottom: 10px;
}

.news-detail__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF7A4F;
  flex-shrink: 0;
}

.news-detail__figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 20px 0;
}

.news-detail__figure img {
  display: block;
  width: 341px;
  height: 341px;
  object-fit: cover;
  border-radius: 6px;
}

.news-detail__caption {
  font-size: 18px;
  line-height: 25px;
  font-weight: 400;
  color: #333333;
  text-align: center;
  margin-top: 20px;
}

