.news-detail-section {
  padding: 60px 20px 40px;
  background-color: var(--bg-darker-blue);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.news-header {
  margin-bottom: 50px;
  border-left: 4px solid var(--neon-cyan);
  padding-left: 30px;
}

.news-main-title {
  font-size: 3rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  line-height: 1.1;
}

.news-subtitle {
  font-size: 1.3rem;
  color: var(--neon-cyan);
  margin-bottom: 20px;
  font-weight: 300;
  max-width: 800px;
}

.news-meta-info {
  display: flex;
  gap: 25px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meta-item i {
  color: var(--neon-cyan);
  margin-right: 8px;
}

.news-body-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.news-text-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.news-image-container {
  position: relative;
}

.news-featured-img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(0, 255, 255, 0.1);
  display: block;
}

.image-accent-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: var(--neon-cyan);
  filter: blur(80px);
  opacity: 0.1;
  z-index: -1;
}

@media (max-width: 992px) {
  .news-main-title {
    font-size: 2.5rem;
  }

  .news-body-layout {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .news-body-layout {
    grid-template-columns: 1fr;
  }

  .news-image-container {
    order: -1;
    margin-bottom: 30px;
  }

  .news-header {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .news-detail-section {
    padding-top: 60px;
  }

  .news-main-title {
    font-size: 1.8rem;
  }

  .news-subtitle {
    font-size: 1.1rem;
  }

  .news-text-content p {
    font-size: 1.05rem;
  }
}
