@charset "UTF-8";
.page-header {
  text-align: center;
  margin-bottom: 50px;
}
.page-header .page-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a365d;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .page-header .page-title {
    font-size: 2rem;
  }
}
.page-header .page-description {
  font-size: 1.1rem;
  color: #718096;
  max-width: 600px;
  margin: 0 auto;
}

.news-item {
  overflow: hidden;
  margin-bottom: 40px;
}
.news-item:hover .news-item__image img {
  transform: scale(1.05);
}
.news-item__image {
  position: relative;
  overflow: hidden;
  height: 272px;
  border-radius: 16px;
}
.news-item__image a {
  display: block;
  height: 100%;
}
.news-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-item__title {
  font-family: "Montserrat", sans-serif;
  margin: 20px 0 8px;
}
.news-item__title a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__excerpt {
  color: #757575;
  font-size: 15px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #a0aec0;
}
@media (max-width: 480px) {
  .news-item__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}

.advise-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #f5f5f5;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 24px;
}
.advise-item:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  background: #fff;
}
.advise-item:hover .advise-item__title,
.advise-item:hover .advise-item__excerpt {
  color: #941b0c !important;
  transition: color 0.2s;
}
.advise-item .advise-item__image a {
  display: flex;
  align-items: start;
  gap: 20px;
  padding: 24px;
}
.advise-item .advise-item__image a img {
  width: 100%;
  height: auto;
  max-width: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.advise-item .advise-item__image a .advise-item__content .advise-item__title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
}
.advise-item .advise-item__image a .advise-item__content .advise-item__excerpt {
  font-size: 14px;
  color: #575757;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  margin: 0;
  height: 57px;
  line-height: 1.4;
}

.news-home .news-category-section {
  margin-bottom: 60px;
}
.news-home .news-category-section:last-child {
  margin-bottom: 0;
}
.news-home .category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .news-home .category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
.news-home .category-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a365d;
  margin: 0;
}
@media (max-width: 768px) {
  .news-home .category-title {
    font-size: 1.5rem;
  }
}
.news-home .view-all-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: #941b0c;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 12px;
}
.news-home .view-all-btn:hover {
  background: #78160a;
  flex-direction: row-reverse;
  transition: all 0.3s ease;
}
.news-home .empty-news {
  text-align: center;
  padding: 60px 20px;
  color: 0;
}
.news-home .empty-news p {
  font-size: 1.1rem;
}

.news-categories .category-tabs {
  margin-bottom: 40px;
}
.news-categories .category-tabs__wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .news-categories .category-tabs__wrapper {
    justify-content: center;
  }
}
.news-categories .category-tab {
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  color: #718096;
  font-weight: 500;
  transition: all 0.3s ease;
}
.news-categories .category-tab:hover {
  background: #edf2f7;
  color: #2d3748;
}
.news-categories .category-tab.active {
  background: #3182ce;
  color: #ffffff;
}
@media (max-width: 480px) {
  .news-categories .category-tab {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}
.news-categories .empty-news {
  text-align: center;
  padding: 80px 20px;
}
.news-categories .empty-news__content {
  max-width: 400px;
  margin: 0 auto;
}
.news-categories .empty-news__content h3 {
  color: #2d3748;
  margin-bottom: 15px;
}
.news-categories .empty-news__content p {
  color: #718096;
  margin-bottom: 25px;
}
.news-categories .empty-news__content .btn {
  display: inline-block;
  padding: 12px 24px;
  background: #3182ce;
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.news-categories .empty-news__content .btn:hover {
  background: #2768a5;
}

.news-detail .detail__content {
  background: #f5f5f5;
  padding-bottom: 48px;
}
.news-detail .top_content {
  background: #fff;
  display: flex;
  gap: 32px;
  border-radius: 24px;
  padding: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.news-detail .top_content .news-detail__image {
  flex-shrink: 0;
  width: 45%;
  max-height: 400px;
  border-radius: 16px;
  overflow: hidden;
}
.news-detail .top_content .news-detail__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 16px;
}
.news-detail .top_content .news-detail__info {
  width: 55%;
}
.news-detail .top_content .news-detail__meta {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #757575;
  margin-bottom: 24px;
  gap: 16px;
}
.news-detail .top_content .news-detail__meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  line-height: normal;
}
.news-detail .top_content .news-detail__meta .news-detail__time {
  display: flex;
  align-items: center;
  gap: 6px;
}
.news-detail .top_content .news-detail__meta .news-detail__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #e0e0e0;
  display: inline-block;
}
.news-detail .top_content .news-detail__meta .news-detail__category {
  color: #941b0c;
  font-weight: 500;
}
.news-detail .top_content .news-detail__meta .news-detail__category a {
  color: #941b0c;
  text-decoration: none;
  font-weight: 500;
}
.news-detail .top_content .news-detail__meta .news-detail__share {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-detail .top_content .news-detail__meta .news-detail__share a {
  color: #757575;
  font-size: 1.1em;
}
.news-detail .top_content .news-detail__meta .news-detail__share a:hover {
  color: #941b0c;
}
.news-detail .top_content .news-detail__meta .news-detail__share-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-detail .top_content .news-detail__meta .news-detail__share-group .news-detail__share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f2f2f2;
  color: #757575;
  font-size: 1.1em;
  transition: background 0.2s color 0.2s ease;
}
.news-detail .top_content .news-detail__meta .news-detail__share-group .news-detail__share-btn:hover {
  transition: all 0.3s ease;
}
.news-detail .top_content .news-detail__meta .news-detail__share-group .copy_btn::after {
  content: "Đã sao chép liên kết!";
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.news-detail .top_content .news-detail__meta .news-detail__share-group .copy_btn.show-tooltip::after {
  opacity: 1;
  visibility: visible;
}
.news-detail .top_content .news-detail__title {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}
.news-detail .top_content .news-detail__summary {
  font-size: 16px;
  color: #2e2e38;
  line-height: 1.6;
}
.news-detail .main_content .row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.news-detail .main_content .col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .news-detail .main_content .col-lg-3 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 767px) {
  .news-detail .main_content .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.news-detail .main_content .col-lg-9 {
  flex: 0 0 75%;
  max-width: 75%;
  transition: all 0.3s ease;
}
.news-detail .main_content .col-lg-9.expanded {
  flex: 0 0 calc(100% - 64px);
  max-width: 100%;
  margin-left: auto;
}
@media (max-width: 991px) {
  .news-detail .main_content .col-lg-9 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .news-detail .main_content .col-lg-9.expanded {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .news-detail .main_content .col-lg-9 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .news-detail .main_content .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (max-width: 991px) {
  .news-detail .main_content .col-md-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
.news-detail .detail_related .related-container {
  padding-top: 40px;
}
.news-detail .detail_related .related-title {
  font-style: italic;
  font-weight: 700;
  padding-left: 24px;
  color: #000;
  margin-bottom: 40px;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.news-detail .detail_related .related-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 4px;
  height: 100%;
  background: #941b0c;
  border-radius: 0 8px 8px 0;
}
.news-detail #tocSidebar {
  position: relative;
  transition: flex 0.3s ease, max-width 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
}
.news-detail #tocSidebar.toc-hidden {
  flex: 0 0 0 !important;
  max-width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0;
  overflow: hidden;
  visibility: hidden;
}
.news-detail .toc-wrapper {
  border-radius: 16px;
  position: sticky;
  top: 130px;
  transition: all 0.3s ease;
}
.news-detail .toc-wrapper.collapsed {
  padding: 0;
  background: transparent;
  box-shadow: none;
  height: auto;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-detail .toc-wrapper.collapsed .toc-nav {
  display: none;
}
.news-detail .toc-wrapper.collapsed .toc-title {
  display: none;
}
.news-detail .toc-wrapper .toc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}
.news-detail .toc-wrapper .toc-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin: 0;
  transition: opacity 0.3s ease;
}
.news-detail .toc-wrapper .toc-nav {
  max-height: 60vh;
  overflow-y: auto;
}
.news-detail .toc-wrapper .toc-nav::-webkit-scrollbar {
  width: 4px;
}
.news-detail .toc-wrapper .toc-nav::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
.news-detail .toc-wrapper .toc-nav::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}
.news-detail .toc-wrapper .toc-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-detail .toc-wrapper .toc-nav ul li {
  margin-bottom: 0;
}
.news-detail .toc-wrapper .toc-nav ul li a {
  display: block;
  color: #757575;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  padding: 16px 26px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  margin: 0;
}
.news-detail .toc-wrapper .toc-nav ul li a:hover {
  color: #000;
}
.news-detail .toc-wrapper .toc-nav ul li a.active {
  color: #941b0c;
}
.news-detail .toc-wrapper .toc-nav ul li a.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 80%;
  background: #941b0c;
  border-radius: 0 8px 8px 0;
}
.news-detail #mainContent {
  position: relative;
}
.news-detail #mainContent .toc-toggle {
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #757575;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: absolute;
  top: 0;
  left: -49px;
  z-index: 50;
}
.news-detail #mainContent .toc-toggle:hover {
  background: #e0e0e0;
  color: #000;
  transform: scale(1.1);
}
.news-detail #mainContent .toc-toggle.collapsed {
  transform: rotate(180deg) scaleX(-1);
}
.news-detail #mainContent .toc-toggle svg {
  transition: transform 0.3s ease;
}
.news-detail #mainContent .article-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1;
}
.news-detail #mainContent .article-content h1,
.news-detail #mainContent .article-content h2,
.news-detail #mainContent .article-content h3,
.news-detail #mainContent .article-content h4,
.news-detail #mainContent .article-content h5,
.news-detail #mainContent .article-content h6 {
  position: relative;
  scroll-margin-top: 140px;
}
.news-detail #mainContent .article-content h1:before,
.news-detail #mainContent .article-content h2:before,
.news-detail #mainContent .article-content h3:before,
.news-detail #mainContent .article-content h4:before,
.news-detail #mainContent .article-content h5:before,
.news-detail #mainContent .article-content h6:before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  height: 100px;
  width: 1px;
}
.news-detail .latest-news-widget {
  position: sticky;
  top: 130px;
}
.news-detail .latest-news-widget .widget-title {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 12px;
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item__image {
  flex-shrink: 0;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item__image:hover img {
  transform: scale(1.05);
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item__content {
  flex: 1;
  min-width: 0;
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item__title {
  margin: 0;
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item__title a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item__title a:hover {
  color: #941b0c;
}
.news-detail .latest-news-widget .latest-news-list .latest-news-item__date {
  font-size: 12px;
  color: #757575;
}
.news-detail .sidebar-advise .widget-title {
  width: 80%;
}
.news-detail .sidebar-advise .latest-news-list .latest-news-item {
  background: none;
}
.news-detail .toc-mobile-toggle {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #941b0c;
  border: none;
  border-radius: 50%;
  color: white;
  box-shadow: 0 4px 12px rgba(148, 27, 12, 0.3);
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-detail .toc-mobile-toggle:hover {
  background: #651208;
  transform: scale(1.1);
}
.news-detail .toc-mobile-toggle svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 991px) {
  .news-detail .toc-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.news-detail .toc-mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.news-detail .toc-mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 991px) {
  .news-detail .toc-mobile-overlay {
    display: block;
  }
}
.news-detail .toc-mobile-panel {
  position: fixed;
  top: 0;
  right: -350px;
  width: 320px;
  height: 100vh;
  background: white;
  z-index: 1002;
  overflow-y: auto;
  transition: right 0.3s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.news-detail .toc-mobile-panel.active {
  right: 0;
}
.news-detail .toc-mobile-panel .toc-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.news-detail .toc-mobile-panel .toc-mobile-header h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
}
.news-detail .toc-mobile-panel .toc-mobile-header .toc-mobile-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #757575;
  cursor: pointer;
  padding: 5px;
}
.news-detail .toc-mobile-panel .toc-mobile-header .toc-mobile-close:hover {
  color: #000;
}
.news-detail .toc-mobile-panel .toc-mobile-content {
  padding: 20px;
}
@media (max-width: 480px) {
  .news-detail .toc-mobile-panel {
    width: 280px;
    right: -280px;
  }
}
@media (max-width: 991px) {
  .news-detail .main_content #tocSidebar {
    display: none;
  }
  .news-detail .main_content #mainContent {
    order: 1;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .news-detail .main_content #latestNewsSidebar {
    order: 2;
    margin-top: 40px;
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  .news-detail .main_content {
    padding: 20px 0;
  }
  .news-detail .main_content #mainContent .article-content,
  .news-detail .main_content .latest-news-widget {
    padding: 20px;
  }
  .news-detail .main_content #latestNewsSidebar {
    margin-top: 30px;
  }
  .news-detail .latest-news-widget .latest-news-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .news-detail .latest-news-widget .latest-news-list .latest-news-item {
    border-bottom: none;
    padding: 16px;
    background: #f8f8f8;
    border-radius: 12px;
  }
  .news-detail .latest-news-widget .latest-news-list .latest-news-item__image {
    width: 100px;
    height: 75px;
  }
  .news-detail .latest-news-widget .latest-news-list .latest-news-item__title a {
    font-size: 15px;
  }
}
@media (max-width: 480px) {
  .news-detail .main_content .row {
    margin: 0 -10px;
  }
  .news-detail .main_content .row [class*=col-] {
    padding: 0 10px;
  }
  .news-detail .latest-news-widget .latest-news-list {
    grid-template-columns: 1fr;
  }
}
.news-detail html {
  scroll-behavior: smooth;
}
.news-detail .toc-nav a,
.news-detail .latest-news-item,
.news-detail .toc-toggle,
.news-detail .toc-mobile-toggle {
  -webkit-tap-highlight-color: transparent;
}
.news-detail .toc-loading {
  text-align: center;
  padding: 20px;
  color: #757575;
  font-style: italic;
}
@media print {
  .news-detail .toc-wrapper,
  .news-detail .latest-news-widget,
  .news-detail .toc-mobile-toggle,
  .news-detail .toc-mobile-overlay,
  .news-detail .toc-mobile-panel {
    display: none !important;
  }
  .news-detail #mainContent {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  .news-detail .article-content {
    box-shadow: none !important;
    border: 1px solid #ddd !important;
  }
}

.article-header {
  margin-bottom: 30px;
}
.article-header .article-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a365d;
  line-height: 1.3;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .article-header .article-title {
    font-size: 1.8rem;
  }
}
.article-header .article-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #718096;
}
@media (max-width: 480px) {
  .article-header .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.article-header .article-date::before {
  content: "📅";
  margin-right: 5px;
}
.article-header .article-category {
  background: #f7fafc;
  padding: 5px 12px;
  border-radius: 15px;
  color: #3182ce;
  font-weight: 500;
}
.article-header .article-summary {
  font-size: 1.1rem;
  color: #718096;
  font-style: italic;
  line-height: 1.6;
  padding: 20px;
  background: #f7fafc;
  border-radius: 8px;
  border-left: 4px solid #3182ce;
}

.article-image {
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-content {
  font-size: 1rem;
  line-height: 1.7;
  color: #2d3748;
  margin-bottom: 40px;
}
.article-content h1,
.article-content h2,
.article-content h3,
.article-content h4,
.article-content h5,
.article-content h6 {
  color: #000;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 24px;
}
.article-content h1:first-child,
.article-content h2:first-child,
.article-content h3:first-child,
.article-content h4:first-child,
.article-content h5:first-child,
.article-content h6:first-child {
  margin-top: 0;
}
.article-content p {
  margin-bottom: 24px;
  color: #3b3b3b;
  font-size: 16px;
}
.article-content p:last-child {
  margin-bottom: 0;
}
.article-content figure {
  margin-bottom: 24px;
}
.article-content figure img {
  margin: 0;
  display: block;
  max-width: 100%;
  height: auto;
  margin: auto;
  border-radius: 8px;
}
.article-content a {
  color: #3182ce;
  text-decoration: none;
}
.article-content a:hover {
  text-decoration: underline;
}
.article-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.article-content blockquote {
  margin: 25px 0;
  padding: 20px 25px;
  background: #f7fafc;
  border-left: 4px solid #3182ce;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #718096;
}
.article-content ul,
.article-content ol {
  margin: 20px 0;
  padding-left: 30px;
}
.article-content ul li,
.article-content ol li {
  margin-bottom: 8px;
}
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
}
.article-content table th,
.article-content table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}
.article-content table th {
  background: #f7fafc;
  font-weight: 600;
  color: #1a365d;
}

.article-tags {
  margin-bottom: 30px;
}
.article-tags .tags-label {
  font-weight: 600;
  color: #2d3748;
  margin-right: 15px;
}
.article-tags .tag {
  display: inline-block;
  background: #f7fafc;
  color: #3182ce;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.85rem;
  margin: 0 8px 8px 0;
  font-weight: 500;
}

.article-share {
  padding: 25px 0;
  border-top: 1px solid #e2e8f0;
}
.article-share .share-label {
  font-weight: 600;
  color: #2d3748;
  display: block;
  margin-bottom: 15px;
}
.article-share .share-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.article-share .share-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.article-share .share-btn--facebook {
  background: #1877f2;
  color: #ffffff;
}
.article-share .share-btn--facebook:hover {
  background: #0b5fcc;
}
.article-share .share-btn--twitter {
  background: #1da1f2;
  color: #ffffff;
}
.article-share .share-btn--twitter:hover {
  background: #0c85d0;
}
.article-share .share-btn--linkedin {
  background: #0077b5;
  color: #ffffff;
}
.article-share .share-btn--linkedin:hover {
  background: #005582;
}

.related-articles {
  border-top: 2px solid #e2e8f0;
  padding-top: 50px;
}
.related-articles .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a365d;
  text-align: center;
  margin-bottom: 40px;
}

.news-tabs__nav {
  background: #f5f5f5;
}
.news-tabs__nav .tab_nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
  font-weight: 700;
}
.news-tabs .news-tab {
  background: none;
  border: none;
  outline: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 0 0 20px;
  text-transform: capitalize;
  color: #000;
  margin: 0;
  cursor: pointer;
  position: relative;
  transition: color 0.2s, border-color 0.2s;
}
.news-tabs .news-tab.active {
  color: #222;
}
.news-tabs .news-tab.active::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #941b0c;
  border-radius: 8px 8px 0 0;
}
.news-tabs .news-tab:hover:not(.active) {
  color: #1a365d;
}
.news-tabs__content {
  position: relative;
  padding: 80px 0;
}
.news-tabs .news-tab-panel {
  display: none;
}
.news-tabs .news-tab-panel.active {
  display: block;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.news-tabs .news-tab__footer {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.content_service_cat {
  padding: 80px 0;
}
.content_service_cat .title_cat {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 40px;
  text-transform: uppercase;
  color: #941b0c;
  text-align: center;
  margin-bottom: 80px;
}

@media (max-width: 768px) {
  .news-detail__wrapper {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 10px;
  }
  .article-share .share-buttons {
    justify-content: center;
  }
  .pagination__list {
    flex-wrap: wrap;
    justify-content: center;
  }
}
