.news-detail {
  --nd-text-primary: #2A1613;
  --nd-text-secondary: #5E5E5E;
  --nd-text-muted: #4A555F;
  --nd-border: #E2E8F0;
  --nd-accent: #B70000;
  --nd-accent-bg: #FFF0EE;
}
.news-detail__article {
  color: var(--nd-text-primary);
}
.news-detail__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.96px;
  color: var(--nd-text-primary);
  margin-bottom: 16px;
}
@media (max-width: 767.98px) {
  .news-detail__title {
    font-size: 32px;
    line-height: 1.25;
  }
}
.news-detail__meta-row {
  border-bottom: 1px solid var(--nd-border);
  padding-bottom: 24px;
}
.news-detail__avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--nd-border);
}
.news-detail__author-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--nd-text-primary);
  line-height: 24px;
}
.news-detail__author-meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--nd-text-secondary);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 16px;
}
.news-detail__share {
  display: flex;
  gap: 8px;
}
.news-detail__share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 42px;
  background-color: var(--nd-accent-bg);
  border-radius: 12px;
  color: var(--nd-text-secondary);
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.news-detail__share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.news-detail__share-btn:hover, .news-detail__share-btn:focus {
  background-color: var(--nd-accent);
  color: #ffffff;
  transform: translateY(-2px);
}
.news-detail__featured img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--nd-border);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 767.98px) {
  .news-detail__featured img {
    height: 240px;
  }
}
.news-detail__intro {
  font-size: 18px;
  line-height: 28px;
  color: var(--nd-text-primary);
  margin-bottom: 40px;
}
.news-detail__section {
  margin-bottom: 40px;
}
.news-detail__section-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 38px;
  color: var(--nd-text-primary);
  border-left: 4px solid var(--nd-accent);
  padding-left: 16px;
  margin-bottom: 16px;
}
.news-detail__paragraph {
  font-size: 18px;
  line-height: 28px;
  color: var(--nd-text-primary);
}
.news-detail__subheading {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--nd-text-primary);
  padding-top: 20px;
  margin-bottom: 4px;
}
.news-detail__list {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 20px;
}
.news-detail__list li {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.news-detail__list-bold {
  font-weight: 700;
  color: var(--nd-text-primary);
}
.news-detail__list-desc {
  color: var(--nd-text-muted);
  font-weight: 400;
}
.news-detail__insight {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--nd-accent-bg);
  border: 1px solid var(--nd-border);
  border-radius: 4px;
  padding: 24px;
  margin-bottom: 40px;
}
.news-detail__insight-icon {
  flex-shrink: 0;
  color: var(--nd-accent);
  width: 20px;
  height: 26.67px;
}
.news-detail__insight-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--nd-text-primary);
  margin-bottom: 8px;
}
.news-detail__insight-desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--nd-text-muted);
  margin-bottom: 0;
}
.news-detail__card {
  background-color: #ffffff;
  border: 1px solid var(--nd-border);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.news-detail__related-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: var(--nd-text-primary);
  margin-bottom: 16px;
}
.news-detail__related-title svg {
  color: var(--nd-accent);
  flex-shrink: 0;
}
.news-detail__related-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.news-detail__related-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.news-detail__related-item:hover, .news-detail__related-item:focus {
  background-color: rgba(226, 232, 240, 0.4);
  transform: translateY(-1px);
}
.news-detail__related-item:hover .news-detail__related-link, .news-detail__related-item:focus .news-detail__related-link {
  color: var(--nd-accent);
}
.news-detail__related-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 2px;
  border: 1px solid var(--nd-border);
  flex-shrink: 0;
}
.news-detail__related-content {
  min-width: 0;
}
.news-detail__related-link {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: var(--nd-text-primary);
  margin-bottom: 4px;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-detail__related-meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--nd-text-secondary);
  letter-spacing: 0.6px;
  text-transform: uppercase;
  line-height: 16px;
}
.news-detail__divider {
  border: 0;
  border-top: 1px solid var(--nd-border);
  opacity: 1;
  margin-bottom: 32px;
}
.news-detail__cta-title {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: var(--nd-text-primary);
  margin-bottom: 16px;
}
.news-detail__cta-desc {
  font-size: 16px;
  line-height: 24px;
  color: var(--nd-text-muted);
  margin-bottom: 16px;
}
.news-detail__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: var(--nd-accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 2px;
  padding: 12px 16px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.news-detail__cta-btn svg {
  flex-shrink: 0;
}
.news-detail__cta-btn:hover, .news-detail__cta-btn:focus {
  background-color: #990000;
  color: #ffffff;
  transform: translateY(-1px);
}
