/* ===============================
   BASE
================================ */
body.news-detail-page .itp-header {
  background: rgba(10, 20, 80, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
body.news-detail-page #wrapper,
body.news-detail-page .news-detail-layout {
  overflow: visible !important;
  margin-top: 16px;
}


/* ===============================
   HEADER
================================ */
.news-header {
  background: #ffffff;
  border-bottom: 1px solid #eaeaea;
  padding: 14px 0;
}

.news-header .logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ===============================
   LAYOUT
================================ */
.news-detail-layout {
  display: grid;
  grid-template-columns: 2.8fr 1.2fr;
  gap: 48px;
  
  margin-bottom: 80px;
}

/* ===============================
   ARTICLE
================================ */
.news-article {
  max-width: 820px;
}

.news-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
}

/* meta */
.news-meta {
  margin-top: -80px;
  font-size: 14px;
  color: #666;
}

.news-meta .dot {
  margin: 0 6px;
}

/* title */
.news-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin: 18px 0 28px;
}

/* content */
.news-content {
  font-size: 18px;
  line-height: 1.75;
  color: #333;
  text-align: justify;
}

.news-content p {
  margin-bottom: 22px;
}

.news-content img {
  max-width: 100%;
  border-radius: 12px;
  margin: 30px 0;
}

/* ===============================
   SIDEBAR
================================ */
.news-sidebar {
  position: sticky;
  top: 140px;
  margin-top: 80px;
}

.sidebar-title {
  font-weight: 700;
  margin-bottom: 18px;
}

.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-item {
  display: flex;
  gap: 12px;
  cursor: pointer;
}

.sidebar-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
}

.sidebar-item h6 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.sidebar-item small {
  font-size: 12px;
  color: #777;
}

.sidebar-item:hover h6 {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .news-detail-layout {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
  }

  .news-hero img {
    height: 300px;
  }
}
