/* Utility: container hẹp dùng chung cho body & các tiêu đề phần */
.container--narrow{
  max-width: 760px;            /* bề ngang như ảnh */
  margin: 0 auto;
}

/* HERO: full-width band, nội dung trong .container */
.ne-head{
  padding: 60px 0 20px;
}
.ne-head__title{
  margin: 0;
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--color-text);
}

/* BODY wrapper để tách nhịp với hero & related */
.ne-body{ padding: 40px 0 8px; }

/* Nội dung bài viết (bên trong .container--narrow) */
.ne-article{
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-text, #0f172a);
}
.ne-article h2{ margin: 22px 0 10px; font-size: clamp(18px, 2.2vw, 20px); }
.ne-article h3{ margin: 18px 0 8px;  font-size: clamp(16px, 2vw, 18px); }
.ne-article p{  margin: 0 0 14px; }
.ne-article ul,
.ne-article ol{ margin: 0 0 16px 18px; }

/* RELATED: tiêu đề theo khối hẹp, grid theo container rộng */
.ne-related{ 
    margin-top:40px;
    padding: 10px 0 80px; 
    background: var(--color-bg-soft)
}
.ne-related__title{
  margin: 40px 0 14px;
  padding-left: 24px;
  font-size: clamp(18px, 2.2vw, 20px);
  font-weight: 800;
  color: var(--color-text, #0f172a);
}

/* Grid .ne-list và card .ne-item đã có sẵn ở file page – dùng lại.
   Nếu cần khoảng cách với grid: */
.ne-related .ne-list{ margin: 8px 0 0; }

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
} 

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}
a:active {
  opacity: 0.75;
}
.cta{
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.btn-cta{
  display: inline-flex;        /* quan trọng */
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 12px 22px;
  white-space: nowrap;
}
