/* ============================================
   NEWS DETAILS SECTION
   ============================================ */

.news-details-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 55%, var(--surface-muted) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.news-details-section::before {
  content: '';
  position: absolute;
  top: 100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(74, 156, 194, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.news-details-article {
  position: relative;
  z-index: 1;
  /* max-width: 1200px; */
  margin: 0 auto;
}

/* ============================================
   FEATURED IMAGE
   ============================================ */

.news-featured-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-lg);
}

.news-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-featured-image:hover img {
  transform: scale(1.05);
}

/* ============================================
   CONTENT WRAPPER
   ============================================ */

.news-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ============================================
   META INFORMATION
   ============================================ */

.news-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(74, 156, 194, 0.2);
}

.meta-date,
.meta-author,
.meta-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--gray-700);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.meta-date:hover,
.meta-author:hover,
.meta-category:hover {
  color: var(--primary);
}

.news-meta i {
  font-size: 12px;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.meta-date:hover i,
.meta-author:hover i,
.meta-category:hover i {
  transform: scale(1.2);
}

/* ============================================
   ARTICLE TITLE
   ============================================ */

.news-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 42px;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 0;
}

/* ============================================
   ARTICLE BODY
   ============================================ */

.news-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.news-paragraph {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  margin: 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-paragraph:first-letter {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1em;
}

.news-body p+p {
  margin-top: 8px;
}

/* ============================================
   NEWS FOOTER (META & SHARE)
   ============================================ */

.news-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(74, 156, 194, 0.2);
  flex-wrap: wrap;
  gap: 20px;
}

.reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--gray-700);
  text-transform: uppercase;
}

.reading-time i {
  font-size: 12px;
  color: var(--primary);
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(74, 156, 194, 0.12);
  color: var(--primary);
  border: 1px solid rgba(74, 156, 194, 0.3);
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-btn:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(74, 156, 194, 0.3);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
  .news-details-section {
    padding: 60px 0;
  }

  .news-featured-image {
    height: 400px;
    margin-bottom: 48px;
  }

  .news-title {
    font-size: 36px;
  }

  .news-paragraph {
    font-size: 15px;
    line-height: 1.8;
  }

  .news-meta {
    gap: 16px;
  }

  .news-footer {
    padding-top: 24px;
  }
}

@media (max-width: 768px) {
  .news-details-section {
    padding: 50px 0;
  }

  .news-details-section::before {
    top: -100px;
    right: -200px;
    width: 400px;
    height: 400px;
  }

  .news-featured-image {
    height: 350px;
    margin-bottom: 40px;
    border-radius: 8px;
  }

  .news-title {
    font-size: 28px;
    line-height: 1.3;
  }

  .news-meta {
    gap: 12px;
    padding-bottom: 16px;
    font-size: 13px;
  }

  .news-paragraph {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }

  .news-content-wrapper {
    gap: 24px;
  }

  .share-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .reading-time {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .news-details-section {
    padding: 40px 0;
  }

  .news-featured-image {
    height: 280px;
    margin-bottom: 32px;
    border-radius: 6px;
  }

  .news-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 12px;
  }

  .meta-date,
  .meta-author,
  .meta-category {
    font-size: 12px;
  }

  .news-paragraph {
    font-size: 13px;
    line-height: 1.7;
    text-align: left;
  }

  .news-content-wrapper {
    gap: 20px;
  }

  .news-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-top: 20px;
  }

  .share-buttons {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .share-btn {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .reading-time {
    font-size: 11px;
  }
}