.news-wrapper {
  display: flex;
  justify-content: center;
  padding: 50px 20px;
  background: #f5f5f7;
}

.news-box {
  max-width: 900px;
  width: 100%;
  background: #ffffff;
  padding: 30px 40px;
  border-radius: 14px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

/* TITLE */
.news-title {
  font-size: 36px;
  font-weight: 800;
  text-align: left;
  color: #111;
  margin-bottom: 25px;
  line-height: 1.3;
}

/* NEWS META */
.news-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 15px;
  color: #555;
  margin: 12px 0 25px;
}

.news-meta i {
  margin-right: 6px;
  color: #777;
}

.meta-author,
.meta-date {
  display: flex;
  align-items: center;
}

/* IMAGE */
.news-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
  max-height: 450px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.news-content {
  font-size: 18px;
  line-height: 1.75;
  color: #222;
  text-align: justify;
  margin-top: 15px;
  letter-spacing: 0.2px;
}

.news-content p {
  margin: 12px 0;
}

/* BACK BUTTON */
.btn-back {
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .news-box {
    padding: 25px;
  }

  .news-title {
    font-size: 28px;
  }

  .news-content {
    font-size: 17px;
  }
}
