/* News Detail Styles */
/* Tùy chỉnh màu sắc khi bôi đen văn bản cho tất cả trình duyệt */
::selection {
  background-color: #98e0f7;
  /* color: #ffffff; */
}

/* Cho trình duyệt Mozilla Firefox */
::-moz-selection {
  background-color: #98e0f7;
  /* color: #ffffff; */
}

/* Cho trình duyệt WebKit cũ (Safari cũ) */
::-webkit-selection {
  background-color: #98e0f7;
  /* color: #ffffff; */
}
/* Breadcrumb */
/* Breadcrumb Styles */
.breadcrumb-container {
  margin-bottom: 15px;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
    color: rgb(0, 95, 105);
    text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "";
    background-image: url(../images/breadcrumb-arrow.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 12px 0px 5px;
    color: transparent;
    float: none;
}

.breadcrumb-item.active a {
  color: rgb(0, 95, 105);
}

/* News Title */
.news-title-content {
    font-size: 25px;
    font-weight: 700;
    line-height: 1.4;
    text-align: justify;
    color: #1f305a;
}

.news-date {
    font-size: 12px;
    color: #727b88;
}

/* News Meta */
.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.social-sharing a {
  display: inline-block;
  margin-left: 8px;
  width: 24px;
  height: 24px;
}

.facebook-share {
  background-color: #3b5998;
  border-radius: 3px;
}

.twitter-share {
  background-color: #1da1f2;
  border-radius: 3px;
}

.linkedin-share {
  background-color: #0077b5;
  border-radius: 3px;
}

/* News Content */
.news-detail-content {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  text-align: justify;
}

.news-detail-content p {
    margin-bottom: 20px;
    font-weight: 400;
    color: rgb(0, 0, 0);
    font-size: 18px;
}

@media (max-width: 768px) {
  .news-detail-content p {
    font-size: 14px;
  }

    .news-detail-content h3 {
        font-size: 24px;
    }

    .news-detail-content h5 {
        font-size: 16px;
    }
}

.news-highlight {
  margin: 20px 0;
  padding: 15px;
  /* border-left: 3px solid rgb(0, 95, 105); */
  background-color: rgb(246, 246, 246);
  border-radius: 10px;
}

.news-highlight li {
  margin-left: 20px;
  margin-bottom: 10px;
}

.news-highlight a {
    display: block;
    color: #005f69;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}

.news-highlight li:last-child {
    margin-bottom: 0;
}


/* News Images */
.news-image-content {
  margin: 20px 0;
  text-align: center;
}

.news-image-content img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.image-caption {
  font-size: 14px;
  color: #666;
  text-align: center;
  font-style: italic;
}

/* News Tags and Source */
.news-source {
  margin-top: 10px;
  font-size: 18px;
  text-align: right;
}

/* Related Sources */
.news-related-sources {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.news-related-sources a {
    margin-top: 10px;
    color: #005f69;
    text-decoration: none;
    font-size: 18px;
}

/* Social Sharing Bottom */
.social-sharing-bottom {
  margin-top: 20px;
}

.facebook-share-btn {
  display: inline-block;
  padding: 5px 15px;
  background-color: #1877f2;
  color: #fff;
  border-radius: 3px;
  text-decoration: none;
  font-weight: bold;
}

.facebook-share-btn:hover {
  background-color: #4693f8;
}


.wp-news-content-detail-right.wp-right-container {
  background-color: #fff;
  padding: 0;
}

.wp-news-content-detail-right>.right-slider-container {
    background-color: rgb(255, 255, 255);
    box-shadow: none;
    height: auto;
    border-radius: none;
    overflow: auto;
    border-width: none;
    border-style: solid;
    border-color: none;
    border-image: none;
    padding: 0;
    border-radius: 0;
    border: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .news-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  .news-content-left {
    padding: 15px;
  }
  
  .news-title {
    font-size: 20px;
  }
  
  .news-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .social-sharing {
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .news-title {
    font-size: 18px;
  }
  
  .news-detail-content {
    font-size: 15px;
  }
}