/* PAGE NEWS DETAIL */
#news-detail {
  background: white;
  padding: 60px 20px;
  color: black;
}

#news-detail .ctm-section-title h2 {
  text-align: center;
  color: rgb(86, 23, 75);
  font-size: 2rem;
  margin-bottom: 40px;
  letter-spacing: 5px;
  font-weight: bold;
}

#news-detail .cnt-news-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#news-detail .box-news {
  background: linear-gradient(to right, rgb(86, 23, 75), rgb(185, 48, 159));
  padding: 20px;
  border-radius: 20px;
  color: white;
  width: 100%;
}

#news-detail .icon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
  position: relative;
}

#news-detail .icon i {
  position: absolute;
  left: 0;
  font-size: 2rem;
  color: white;
}

#news-detail .icon h3 {
  flex: 1;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  color: white;
  font-weight: 500;
  margin-left: 50px;
}

#news-detail .news-content {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  padding: 0 40px;
}

#news-detail .news-content img {
  width: 150px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
}

#news-detail .news-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  color: #f8c5f7 !important;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  #news-detail .news-content {
    flex-direction: column;
    align-items: center;
  }

  #news-detail .news-content img {
    width: 100%;
    margin-bottom: 20px;
  }

  #news-detail .news-content p {
    text-align: center;
  }
}
