.news-detail-page {
  --nd-green: #0b6f30;
  --nd-green-dark: #075523;
  --nd-orange: #ff6b18;
  --nd-text: #45413c;
  --nd-muted: #7b756e;
  --nd-border: #e9e3da;
  color: var(--nd-text);
  background: #fff;
}
.news-detail-header {
  position: relative;
  padding: 22px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 15%,rgba(255,107,24,.09),transparent 24%),
    linear-gradient(110deg,#f6fbf4,#fffaf4);
}
.news-detail-header__breadcrumb {
  min-height: 34px;
  margin-bottom: 23px;
}
.news-detail-header__breadcrumb .breadcrumb {
  margin: 0;
  padding: 0;
  background: transparent;
}
.news-detail-header__inner {
  max-width: 940px;
}
.news-detail-header__category {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--nd-orange);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.news-detail-header h1 {
  margin: 0 0 13px;
  color: var(--nd-green-dark);
  font-size: clamp(30px,4vw,46px);
  font-weight: 800;
  line-height: 1.25;
}
.news-detail-header__inner > p {
  max-width: 800px;
  margin: 0 0 16px;
  color: #66605a;
  font-size: 14px;
  line-height: 1.75;
}
.news-detail-header__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  color: var(--nd-muted);
  font-size: 14px;
}
.news-detail-header__meta time,
.news-detail-header__meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-detail-header__meta i {
  color: var(--nd-green);
}
.news-detail-body {
  padding: 38px 0 55px;
}
.news-detail-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 330px;
  gap: 30px;
  align-items: start;
}
.news-detail-article {
  min-width: 0;
}
.news-detail-article__cover {
  aspect-ratio: 1.63/1;
  margin: 0 0 27px;
  overflow: hidden;
  border-radius: 14px;
  background: #f2eee8;
  box-shadow: 0 8px 26px rgba(55,43,28,.09);
}
.news-detail-article__cover picture,
.news-detail-article__cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.news-detail-article__content {
  color: #4f4a45;
  font-size: 14px;
  line-height: 1.85;
}
.news-detail-article__content h2,
.news-detail-article__content h3,
.news-detail-article__content h4 {
  margin: 25px 0 12px;
  color: var(--nd-green-dark);
  font-weight: 800;
  line-height: 1.4;
}
.news-detail-article__content h2 {font-size:23px}
.news-detail-article__content h3 {font-size:19px}
.news-detail-article__content h4 {font-size:16px}
.news-detail-article__content p {
  margin: 0 0 15px;
}
.news-detail-article__content img {
  max-width: 100%;
  height: auto!important;
  margin: 10px auto;
  border-radius: 9px;
}
.news-detail-article__content blockquote {
  margin: 22px 0;
  padding: 17px 20px;
  border-left: 4px solid var(--nd-orange);
  border-radius: 0 9px 9px 0;
  color: #5e5953;
  background: #fff8f1;
}
.news-detail-article__content table {
  width: 100%!important;
  margin: 18px 0;
  border-collapse: collapse;
}
.news-detail-article__content th,
.news-detail-article__content td {
  padding: 10px;
  border: 1px solid var(--nd-border);
}
.news-detail-article__content a {
  color: var(--nd-green);
}
.news-detail-article__empty {
  padding: 40px;
  border: 1px solid var(--nd-border);
  border-radius: 10px;
  text-align: center;
}
.news-detail-article__empty i {
  display: block;
  margin-bottom: 9px;
  color: var(--nd-green);
  font-size: 30px;
}
.news-detail-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 17px 20px;
  border: 1px solid var(--nd-border);
  border-radius: 10px;
  background: #fbfcfa;
}
.news-detail-share strong,
.news-detail-share span {
  display: block;
}
.news-detail-share strong {
  color: var(--nd-green-dark);
  font-size: 14px;
}
.news-detail-share span {
  margin-top: 2px;
  color: var(--nd-muted);
  font-size: 14px;
}
.news-detail-sidebar {
  position: sticky;
  top: 20px;
}
.news-detail-sidebar__box {
  padding: 23px 20px;
  border: 1px solid var(--nd-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(58,45,29,.08);
}
.news-detail-sidebar__eyebrow {
  color: var(--nd-orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.news-detail-sidebar__box > h2 {
  margin: 4px 0 17px;
  color: var(--nd-green-dark);
  font-size: 19px;
  font-weight: 800;
}
.news-detail-related article {
  display: grid;
  grid-template-columns: 90px minmax(0,1fr);
  gap: 11px;
  padding: 12px 0;
  border-bottom: 1px solid var(--nd-border);
}
.news-detail-related article:first-child {
  padding-top: 0;
}
.news-detail-related article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.news-detail-related__image {
  aspect-ratio: 1.25/1;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}
.news-detail-related__image picture,
.news-detail-related__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.news-detail-related h3 {
  margin: 0 0 7px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}
.news-detail-related h3 a {
  color: var(--nd-green-dark);
  text-decoration: none;
}
.news-detail-related time {
  color: var(--nd-muted);
  font-size: 14px;
}
.news-detail-related time i {
  margin-right: 3px;
  color: var(--nd-green);
}
.news-detail-sidebar__empty {
  color: var(--nd-muted);
  font-size: 14px;
}
.news-detail-sidebar__cta {
  margin-top: 18px;
  padding: 25px 22px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(145deg,var(--nd-green),var(--nd-green-dark));
  text-align: center;
}
.news-detail-sidebar__cta > i {
  font-size: 28px;
}
.news-detail-sidebar__cta h2 {
  margin: 10px 0 7px;
  color: #fff;
  font-size: 17px;
}
.news-detail-sidebar__cta p {
  margin: 0 0 15px;
  color: rgba(255,255,255,.82);
  font-size: 14px;
  line-height: 1.6;
}
.news-detail-sidebar__cta a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--nd-orange);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.news-detail-products {
  padding: 42px 0 55px;
  background: #fafbf8;
}
.news-detail-products__heading {
  margin-bottom: 22px;
  text-align: center;
}
.news-detail-products__heading span {
  color: var(--nd-orange);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.news-detail-products__heading h2 {
  margin: 4px 0 0;
  color: var(--nd-green-dark);
  font-size: 26px;
}
.news-detail-products__grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 22px;
}
.news-detail-products__grid article {
  overflow: hidden;
  padding-bottom: 17px;
  border: 1px solid var(--nd-border);
  border-radius: 11px;
  background: #fff;
}
.news-detail-products__image {
  aspect-ratio: 1.45/1;
  display: block;
  overflow: hidden;
}
.news-detail-products__image picture,
.news-detail-products__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.news-detail-products h3 {
  margin: 14px 15px 8px;
  font-size: 14px;
}
.news-detail-products h3 a {
  color: var(--nd-green-dark);
}
.news-detail-products__link {
  margin: 0 15px;
  color: var(--nd-orange);
  font-size: 14px;
  font-weight: 800;
}
@media (max-width:991px) {
  .news-detail-layout {
    grid-template-columns:minmax(0,1fr) 280px;
    gap:22px;
  }
}
@media (max-width:767px) {
  .news-detail-layout {
    grid-template-columns:1fr;
  }
  .news-detail-sidebar {
    position:static;
  }
  .news-detail-products__grid {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:575px) {
  .news-detail-header {
    padding-bottom:30px;
  }
  .news-detail-body {
    padding-top:25px;
  }
  .news-detail-article__cover {
    border-radius:9px;
  }
  .news-detail-share {
    align-items:flex-start;
    flex-direction:column;
  }
  .news-detail-products__grid {
    grid-template-columns:1fr;
  }
}
