

.news-hero {
  position: relative;
  padding: 140px 0 80px;
  background-size: cover;
  background-position: center;
  min-height: 360px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.6) 60%, rgba(10, 22, 40, 0.4) 100%);
  z-index: 1;
}

.news-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C9A668 0%, transparent 100%);
  z-index: 2;
  opacity: 0.4;
}

.news-hero .container {
  position: relative;
  z-index: 2;
}

.news-hero__content {
  max-width: 60%;
}

.news-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C9A668;
  display: block;
  margin-bottom: 0.5rem;
}

.news-hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 0.5rem;
}

.news-hero__subtitle {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 1rem;
}

.news-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.news-hero__breadcrumb a {
  color: #C9A668;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-hero__breadcrumb a:hover {
  color: #fff;
}

.news-hero__breadcrumb-separator {
  opacity: 0.3;
}

.news-hero__accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(201, 166, 104, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   Hero - Detail Page
   ============================================ */

.news-detail-hero {
  position: relative;
  padding: 140px 0 70px;
  background-size: cover;
  background-position: center;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.news-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.6) 60%, rgba(10, 22, 40, 0.4) 100%);
  z-index: 1;
}

.news-detail-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C9A668 0%, transparent 100%);
  z-index: 2;
  opacity: 0.4;
}

.news-detail-hero .container {
  position: relative;
  z-index: 2;
}

.news-detail-hero__content {
  max-width: 70%;
}

.news-detail-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C9A668;
  display: block;
  margin-bottom: 0.5rem;
}

.news-detail-hero__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  margin-bottom: 0.5rem;
}

.news-detail-hero__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.news-detail-hero__date,
.news-detail-hero__author {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.news-detail-hero__date::after {
  content: "·";
  margin-left: 1rem;
  opacity: 0.3;
}

.news-detail-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
}

.news-detail-hero__breadcrumb a {
  color: #C9A668;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-detail-hero__breadcrumb a:hover {
  color: #fff;
}

.news-detail-hero__breadcrumb-separator {
  opacity: 0.3;
}

.news-detail-hero__accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at bottom right, rgba(201, 166, 104, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   News Section Layout
   ============================================ */

.news-section {
  padding: 3rem 0 4rem;
  background: #f5f3ef;
}

.news-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

/* ============================================
   Featured Article
   ============================================ */

.news-featured {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
  transition: box-shadow 0.3s ease;
}

.news-featured:hover {
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.10);
}

.news-featured__link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-decoration: none;
  min-height: 320px;
}

.news-featured__image-wrap {
  position: relative;
  overflow: hidden;
  background: #0A1628;
  min-height: 280px;
}

.news-featured__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.news-featured__link:hover .news-featured__image {
  transform: scale(1.04);
}

.news-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 40%, rgba(10, 22, 40, 0.05) 80%, rgba(10, 22, 40, 0.15) 100%);
  pointer-events: none;
}

.news-featured__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: #C9A668;
  padding: 0.15rem 0.7rem;
  border-radius: 100px;
  z-index: 2;
}

.news-featured__body {
  padding: 1.5rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.news-featured__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.news-featured__date,
.news-featured__author {
  font-size: 0.75rem;
  color: #8896a8;
}

.news-featured__date::after {
  content: "·";
  margin-left: 0.75rem;
  opacity: 0.3;
}

.news-featured__title {
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  line-height: 1.2;
  color: #0A1628;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}

.news-featured__link:hover .news-featured__title {
  color: #C9A668;
}

.news-featured__excerpt {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #8896a8;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #0A1628;
  transition: all 0.2s ease;
}

.news-featured__link:hover .news-featured__cta {
  color: #C9A668;
  gap: 0.75rem;
}

.news-featured__cta svg {
  width: 15px;
  height: 15px;
}

/* ============================================
   News Grid (Cards)
   ============================================ */

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.news-item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.04);
  transition: all 0.3s ease;
}

.news-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.08);
  border-color: rgba(201, 166, 104, 0.12);
}

.news-item__link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.news-item__image-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0A1628;
}

.news-item__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.news-item:hover .news-item__image {
  transform: scale(1.05);
}

.news-item__body {
  padding: 1rem 1rem 0.75rem;
}

.news-item__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.news-item__date,
.news-item__author {
  font-size: 0.7rem;
  color: #8896a8;
}

.news-item__date::after {
  content: "·";
  margin-left: 0.5rem;
  opacity: 0.3;
}

.news-item__title {
  font-size: 0.9375rem;
  line-height: 1.3;
  color: #0A1628;
  margin-bottom: 0.25rem;
  transition: color 0.2s ease;
  letter-spacing: -0.01em;
}

.news-item:hover .news-item__title {
  color: #C9A668;
}

.news-item__excerpt {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: #8896a8;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-item__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0A1628;
  transition: all 0.2s ease;
}

.news-item:hover .news-item__cta {
  color: #C9A668;
  gap: 0.75rem;
}

.news-item__cta svg {
  width: 13px;
  height: 13px;
}

.news-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #8896a8;
  padding: 2rem 0;
}

/* ============================================
   Pagination
   ============================================ */

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.news-pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0A1628;
  text-decoration: none;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  transition: all 0.2s ease;
  background: #fff;
  border: 1px solid rgba(10, 22, 40, 0.06);
}

.news-pagination__btn:hover {
  background: #0A1628;
  color: #fff;
  border-color: #0A1628;
}

.news-pagination__btn svg {
  width: 16px;
  height: 16px;
}

.news-pagination__current {
  font-size: 0.8125rem;
  color: #8896a8;
}

/* ============================================
   Sidebar
   ============================================ */

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.news-sidebar__widget {
  background: #fff;
  border-radius: 8px;
  padding: 1.25rem;
  border: 1px solid rgba(10, 22, 40, 0.04);
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.04);
}

.news-sidebar__widget-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.news-sidebar__search-group {
  display: flex;
  align-items: center;
  border: 1px solid rgba(10, 22, 40, 0.08);
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.2s ease;
}

.news-sidebar__search-group:focus-within {
  border-color: #C9A668;
  box-shadow: 0 0 0 3px rgba(201, 166, 104, 0.08);
}

.news-sidebar__search-group input {
  flex: 1;
  border: none;
  padding: 0.6rem 0.8rem;
  font-size: 0.875rem;
  color: #0A1628;
  background: transparent;
  outline: none;
  font-family: inherit;
}

.news-sidebar__search-group input::placeholder {
  color: #8896a8;
  opacity: 0.6;
}

.news-sidebar__search-group button {
  padding: 0.6rem 0.8rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #8896a8;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-sidebar__search-group button:hover {
  color: #C9A668;
}

.news-sidebar__search-group button svg {
  width: 18px;
  height: 18px;
}

/* Latest Posts */
.news-sidebar__posts {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.news-sidebar__post {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.news-sidebar__post:hover {
  background: #f5f3ef;
}

.news-sidebar__post-image {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  background: #0A1628;
}

.news-sidebar__post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-sidebar__post-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  min-width: 0;
}

.news-sidebar__post-title {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0A1628;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.news-sidebar__post:hover .news-sidebar__post-title {
  color: #C9A668;
}

.news-sidebar__post-date {
  font-size: 0.7rem;
  color: #8896a8;
  margin-top: 0.1rem;
}

.news-sidebar__empty {
  font-size: 0.875rem;
  color: #8896a8;
}

/* ============================================
   Detail Page
   ============================================ */

.news-detail-section {
  padding: 3rem 0 4rem;
  background: #f5f3ef;
}

.news-detail-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.news-detail-main {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.06);
}

.news-detail__image-wrap {
  position: relative;
  overflow: hidden;
  background: #0A1628;
}

.news-detail__image {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
}

.news-detail__image-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 48px;
  border-left: 3px solid #C9A668;
  border-bottom: 3px solid #C9A668;
  border-radius: 0 0 0 4px;
  opacity: 0.5;
  z-index: 2;
  pointer-events: none;
}

.news-detail__body {
  padding: 1.5rem 1.75rem 1.5rem;
}

.news-detail__heading {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: #0A1628;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.news-detail__meta-date,
.news-detail__meta-author {
  font-size: 0.8125rem;
  color: #8896a8;
}

.news-detail__meta-date::after {
  content: "·";
  margin-left: 1rem;
  opacity: 0.3;
}

.news-detail__content {
  font-size: 0.9375rem;
  line-height: 1.9;
  color: #8896a8;
}

.news-detail__content p {
  margin-bottom: 0.75rem;
}

.news-detail__content p:last-child {
  margin-bottom: 0;
}

/* Download */
.news-detail__download {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.news-detail__download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  background: #0A1628;
  padding: 0.6rem 1.5rem 0.6rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.news-detail__download-btn:hover {
  background: #1a2a3e;
  gap: 0.75rem;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.15);
  color: #fff;
}

.news-detail__download-btn svg {
  width: 18px;
  height: 18px;
}

/* Share */
.news-detail__share {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 22, 40, 0.06);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.news-detail__share-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0A1628;
}

.news-detail__share-links {
  display: flex;
  gap: 0.5rem;
}

.news-detail__share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(10, 22, 40, 0.06);
  color: #8896a8;
  transition: all 0.2s ease;
  text-decoration: none;
}

.news-detail__share-link:hover {
  background: #0A1628;
  color: #fff;
  border-color: #0A1628;
  transform: translateY(-2px);
}

.news-detail__share-link svg {
  width: 16px;
  height: 16px;
}

/* Related Articles */
.news-detail__related {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem 1.5rem;
  border-top: 1px solid rgba(10, 22, 40, 0.06);
}

.news-detail__related-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0A1628;
  margin-bottom: 1rem;
}

.news-detail__related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.news-detail__related-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.04);
  transition: all 0.2s ease;
}

.news-detail__related-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(10, 22, 40, 0.08);
  border-color: rgba(201, 166, 104, 0.12);
}

.news-detail__related-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0A1628;
}

.news-detail__related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.news-detail__related-item:hover .news-detail__related-image img {
  transform: scale(1.05);
}

.news-detail__related-content {
  padding: 0.75rem;
  background: #fff;
}

.news-detail__related-title-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #0A1628;
  line-height: 1.3;
  display: block;
  transition: color 0.2s ease;
}

.news-detail__related-item:hover .news-detail__related-title-text {
  color: #C9A668;
}

.news-detail__related-date {
  font-size: 0.65rem;
  color: #8896a8;
  margin-top: 0.2rem;
  display: block;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
  .news-hero__content,
  .news-detail-hero__content {
    max-width: 80%;
  }

  .news-layout,
  .news-detail-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .news-featured__link {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .news-featured__image-wrap {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  .news-featured__body {
    padding: 1rem;
  }

  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-detail__related-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .news-hero,
  .news-detail-hero {
    padding: 120px 0 50px;
    min-height: 280px;
  }

  .news-hero__content,
  .news-detail-hero__content {
    max-width: 100%;
  }

  .news-hero__title {
    font-size: 1.8rem;
  }

  .news-hero__subtitle {
    font-size: 0.9375rem;
  }

  .news-detail-hero__title {
    font-size: 1.4rem;
  }

  .news-detail-hero__meta {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .news-detail-hero__date::after {
    content: none;
  }

  .news-section {
    padding: 2rem 0 2.5rem;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .news-featured__body {
    padding: 0.75rem;
  }

  .news-featured__title {
    font-size: 1rem;
  }

  .news-featured__excerpt {
    font-size: 0.8125rem;
    -webkit-line-clamp: 2;
  }

  .news-item__body {
    padding: 0.75rem;
  }

  .news-item__title {
    font-size: 0.875rem;
  }

  .news-detail-section {
    padding: 2rem 0 2.5rem;
  }

  .news-detail__body {
    padding: 1rem;
  }

  .news-detail__heading {
    font-size: 1.2rem;
  }

  .news-detail__content {
    font-size: 0.875rem;
  }

  .news-detail__share {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .news-sidebar__widget {
    padding: 1rem;
  }

  .news-pagination {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .news-detail__download-btn {
    width: 100%;
    justify-content: center;
  }

  .news-detail__related {
    padding: 1rem;
  }

  .news-detail__related-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Dark Mode Support
   ============================================ */

@media (prefers-color-scheme: dark) {
  .news-section {
    background: #0A1628;
  }

  .news-featured {
    background: #1a2a3e;
  }

  .news-featured__body {
    background: #1a2a3e;
  }

  .news-featured__title {
    color: #fff;
  }

  .news-featured__excerpt {
    color: #8896a8;
  }

  .news-featured__cta {
    color: #fff;
  }

  .news-featured__link:hover .news-featured__cta {
    color: #C9A668;
  }

  .news-featured__date,
  .news-featured__author {
    color: #8896a8;
  }

  .news-item {
    background: #1a2a3e;
    border-color: rgba(255, 255, 255, 0.04);
  }

  .news-item:hover {
    border-color: rgba(201, 166, 104, 0.15);
  }

  .news-item__title {
    color: #fff;
  }

  .news-item__excerpt {
    color: #8896a8;
  }

  .news-item__cta {
    color: #fff;
  }

  .news-item:hover .news-item__cta {
    color: #C9A668;
  }

  .news-item__date,
  .news-item__author {
    color: #8896a8;
  }

  .news-detail-section {
    background: #0A1628;
  }

  .news-detail-main {
    background: #1a2a3e;
  }

  .news-detail__heading {
    color: #fff;
  }

  .news-detail__content {
    color: #8896a8;
  }

  .news-detail__meta-date,
  .news-detail__meta-author {
    color: #8896a8;
  }

  .news-detail__share-label {
    color: #fff;
  }

  .news-detail__share-link {
    border-color: rgba(255, 255, 255, 0.06);
    color: #8896a8;
  }

  .news-detail__share-link:hover {
    background: #C9A668;
    color: #fff;
    border-color: #C9A668;
  }

  .news-detail__download {
    border-top-color: rgba(255, 255, 255, 0.04);
  }

  .news-detail__download-btn {
    background: #C9A668;
  }

  .news-detail__download-btn:hover {
    background: #b8974a;
  }

  .news-detail__related {
    border-top-color: rgba(255, 255, 255, 0.04);
  }

  .news-detail__related-title {
    color: #fff;
  }

  .news-detail__related-item {
    border-color: rgba(255, 255, 255, 0.04);
  }

  .news-detail__related-content {
    background: #1a2a3e;
  }

  .news-detail__related-title-text {
    color: #fff;
  }

  .news-detail__related-date {
    color: #8896a8;
  }

  .news-sidebar__widget {
    background: #1a2a3e;
    border-color: rgba(255, 255, 255, 0.04);
  }

  .news-sidebar__widget-title {
    color: #fff;
  }

  .news-sidebar__search-group {
    background: #0A1628;
    border-color: rgba(255, 255, 255, 0.04);
  }

  .news-sidebar__search-group input {
    color: #fff;
  }

  .news-sidebar__search-group input::placeholder {
    color: #8896a8;
  }

  .news-sidebar__post:hover {
    background: #0A1628;
  }

  .news-sidebar__post-title {
    color: #fff;
  }

  .news-sidebar__post-date {
    color: #8896a8;
  }

  .news-pagination {
    border-top-color: rgba(255, 255, 255, 0.04);
  }

  .news-pagination__btn {
    background: #1a2a3e;
    border-color: rgba(255, 255, 255, 0.04);
    color: #fff;
  }

  .news-pagination__btn:hover {
    background: #C9A668;
    border-color: #C9A668;
  }

  .news-pagination__current {
    color: #8896a8;
  }

  .news-empty {
    color: #8896a8;
  }
}