@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:hover .news-item__title a {
  color: #941b0c;
}
.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;
  line-height: 1.4;
}
.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: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(16, 30, 54, 0.08);
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 40px;
}
.advise-item__image {
  position: relative;
  width: 100%;
  height: 272px;
  overflow: hidden;
}
.advise-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.advise-item__image::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  pointer-events: none;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.advise-item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 20px 16px 20px;
  color: #fff;
  z-index: 2;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), gap 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  gap: 0;
}
.advise-item__content .advise-item__title {
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
  opacity: 1;
  max-height: 28px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.advise-item__content .advise-item__title a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.advise-item__content .advise-item__excerpt {
  font-size: 0.97rem;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.advise-item__content .see_more {
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0;
  max-height: 0;
  visibility: hidden;
  overflow: hidden;
  transition: opacity 0.4s, max-height 0.4s;
}
.advise-item:hover, .advise-item:focus-within {
  box-shadow: 0 8px 32px rgba(16, 30, 54, 0.18);
}
.advise-item:hover .advise-item__image img, .advise-item:focus-within .advise-item__image img {
  transform: scale(1.04);
}
.advise-item:hover .advise-item__image::after, .advise-item:focus-within .advise-item__image::after {
  height: 100%;
}
.advise-item:hover .advise-item__content, .advise-item:focus-within .advise-item__content {
  height: 100%;
  padding: 32px 20px 24px 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  gap: 12px;
}
.advise-item:hover .advise-item__content .advise-item__excerpt, .advise-item:focus-within .advise-item__content .advise-item__excerpt {
  opacity: 1;
  max-height: 22px;
  visibility: visible;
}
.advise-item:hover .advise-item__content .see_more, .advise-item:focus-within .advise-item__content .see_more {
  opacity: 1;
  max-height: 20px;
  visibility: visible;
}

.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%;
}
@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-6 {
  flex: 0 0 50%;
  max-width: 50%;
  transition: all 0.3s ease;
}
.news-detail .main_content .col-lg-6.expanded {
  flex: 0 0 75%;
  max-width: calc(75% - 64px);
  margin-left: 64px;
}
@media (max-width: 991px) {
  .news-detail .main_content .col-lg-6.expanded {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
@media (max-width: 991px) {
  .news-detail .main_content .col-lg-6 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}
@media (max-width: 767px) {
  .news-detail .main_content .col-lg-6 {
    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: all 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;
}
.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);
}
.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;
  }
}

.news-detail__content p {
  font-size: 16px;
  color: #666666;
}

.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: #757575;
  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: #222;
}
.news-tabs__content {
  position: relative;
  padding: 80px 0;
}
.news-tabs__content .head_content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  margin-bottom: 48px;
}
.news-tabs__content .head_content h1,
.news-tabs__content .head_content h2,
.news-tabs__content .head_content h3,
.news-tabs__content .head_content h4 {
  margin-bottom: 0px;
  font-size: 32px;
  font-weight: 700;
  font-style: italic;
  color: #000;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Montserrat", sans-serif;
  padding-left: 28px;
  position: relative;
}
.news-tabs__content .head_content h1::before,
.news-tabs__content .head_content h2::before,
.news-tabs__content .head_content h3::before,
.news-tabs__content .head_content h4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #941b0c;
  border-radius: 0 8px 8px 0;
}
.news-tabs__content .head_content p {
  color: #666666;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 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;
  }
}
.recruitment-tabs-wrapper {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .recruitment-tabs-wrapper {
    margin-bottom: 30px;
  }
}

.recruitment-tabs {
  display: flex;
  gap: 0;
  min-width: -moz-min-content;
  min-width: min-content;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .recruitment-tabs {
    gap: 0;
  }
}

.recruitment-tab {
  padding: 16px 24px;
  background: #f5f5f5;
  border: none;
  border-radius: 12px;
  color: #757575;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .recruitment-tab {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .recruitment-tab {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}

.recruitment-tab--active {
  color: #fff;
  background: #941b0c;
}

.recruitment-items-container {
  animation: fadeIn 0.3s ease-in;
}

.recruitment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.recruitment-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f5f5f5;
  border-radius: 16px;
  padding: 16px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  width: calc((100% - 40px) / 3);
}
.recruitment-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.recruitment-card__logo {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruitment-card__logo-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.recruitment-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 110px);
}
.recruitment-card__content .recruitment-card__location {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: flex-end;
}
.recruitment-card__content .location-item {
  font-size: 14px;
  color: #757575;
}

.recruitment-card__title {
  margin-bottom: 8px-;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #000;
}
.recruitment-card:hover .recruitment-card__title {
  color: #941b0c;
}

.recruitment-card__meta {
  font-size: 16px;
  color: #000;
}

.empty-recruitment {
  text-align: center;
  padding: 60px 20px;
  background: #f7fafc;
  border-radius: 12px;
  margin: 40px 0;
}
.empty-recruitment p {
  font-size: 1.1rem;
  color: #718096;
  margin: 0;
}

.recruitment-loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  gap: 20px;
}
.recruitment-loading-spinner .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e2e8f0;
  border-top-color: #941b0c;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.recruitment-loading-spinner p {
  font-size: 16px;
  color: #718096;
  margin: 0;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.pagination-nav {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  padding: 20px 0;
  border-top: 1px solid #e2e8f0;
}
@media (max-width: 768px) {
  .pagination-wrapper {
    margin: 30px 0;
  }
}

.recruitment-page {
  background: #f5f5f5;
}

.recruitment-detail-content {
  display: flex;
  gap: 24px;
  padding-bottom: 80px;
}
.recruitment-detail-content .block-content {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}
.recruitment-detail-content .block_left {
  width: 30%;
}
.recruitment-detail-content .block_left .name {
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}
.recruitment-detail-content .block_left .recruitment-summary p {
  color: #6b7280;
  font-size: 15px;
}
.recruitment-detail-content .block_left .recruitment-summary p strong {
  color: #000;
}
.recruitment-detail-content .block_left .detail {
  padding-top: 16px;
  border-top: solid 1px #e5e7eb;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 16px;
}
.recruitment-detail-content .block_left .detail .item_detail {
  display: flex;
  flex-direction: column;
}
.recruitment-detail-content .block_left .detail .item_detail span {
  font-size: 15px;
  color: #6b7280;
}
.recruitment-detail-content .block_left .detail .item_detail span strong {
  color: #000;
}
.recruitment-detail-content .block_right {
  width: 70%;
  padding: 48px 60px;
}
.recruitment-detail-content .block_right .recruitment-content h1,
.recruitment-detail-content .block_right .recruitment-content h2,
.recruitment-detail-content .block_right .recruitment-content h3,
.recruitment-detail-content .block_right .recruitment-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #000;
}
.recruitment-detail-content .block_right .recruitment-content p {
  color: #2e2e38;
  font-size: 16px;
  line-height: 1.6;
}

.box_apply {
  padding-top: 24px;
  margin-top: 24px;
  border-top: solid 1px #e5e7eb;
}

.apply-form-wrapper {
  max-width: 100%;
}

.apply-form-title {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .apply-form-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.recruitment-apply-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.recruitment-apply-form .form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recruitment-apply-form .form-group {
  display: flex;
  justify-content: space-between;
}
.recruitment-apply-form .form-control {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  color: #949494;
  background: #f5f5f5;
  transition: all 0.3s ease;
  border: none;
}
.recruitment-apply-form .form-control::-moz-placeholder {
  color: #999;
}
.recruitment-apply-form .form-control::placeholder {
  color: #999;
}
.recruitment-apply-form .form-control:focus {
  outline: none;
  border-color: #999;
  background-color: #fff;
}
.recruitment-apply-form .form-control:hover {
  border-color: #cbd5e0;
}
@media (max-width: 768px) {
  .recruitment-apply-form .form-control {
    padding: 10px 14px;
    font-size: 13px;
  }
}
.recruitment-apply-form .form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  background: #f5f5f5;
  border: none;
}
.recruitment-apply-form .form-textarea::-moz-placeholder {
  color: #999;
}
.recruitment-apply-form .form-textarea::placeholder {
  color: #999;
}
.recruitment-apply-form .form-textarea:focus {
  outline: none;
  border-color: #999;
  background-color: #fff;
}
.recruitment-apply-form .form-file-group {
  position: relative;
}
.recruitment-apply-form .form-file-group .file-section {
  display: flex;
  gap: 16px;
}
.recruitment-apply-form .form-file-group .file-section .file-label {
  font-size: 14px;
  color: #000;
  font-weight: 600;
}
.recruitment-apply-form .form-file-group .file-section .file-label .required {
  font-weight: 700;
  color: #dc2626;
}
.recruitment-apply-form .form-file-group .file-section .btn_file .file-status {
  font-size: 14px;
  color: #000;
  font-weight: 500;
}
.recruitment-apply-form .form-file-group .file-section .btn_file .file-hint {
  font-size: 12px;
  color: #757575;
  font-weight: 500;
  margin-top: 4px;
}
.recruitment-apply-form .file-input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  z-index: -1;
}
.recruitment-apply-form .file-selected {
  margin-top: 8px;
}
.recruitment-apply-form .file-selected-info {
  padding: 10px 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 4px;
  font-size: 13px;
  color: #166534;
  display: flex;
  align-items: center;
  gap: 6px;
}
.recruitment-apply-form .error-message {
  font-size: 12px;
  color: #dc2626;
  display: none;
  margin-top: 4px;
  padding: 6px 10px;
  background: #fee2e2;
  border-radius: 4px;
  border-left: 2px solid #dc2626;
}
.recruitment-apply-form .error-message.active {
  display: block;
}
.recruitment-apply-form .form-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 768px) {
  .recruitment-apply-form .form-actions {
    flex-direction: column;
    justify-content: center;
  }
}
.recruitment-apply-form .btn-choose-file {
  padding: 4px 8px;
  background: transparent;
  color: #941b0c;
  border: 2px solid #941b0c;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: inline-block;
  text-align: center;
}
.recruitment-apply-form .btn-choose-file:hover {
  background: #fff5f5;
}
.recruitment-apply-form .btn-choose-file:active {
  transform: scale(0.98);
}
@media (max-width: 768px) {
  .recruitment-apply-form .btn-choose-file {
    width: 100%;
  }
}
.recruitment-apply-form .btn-submit {
  padding: 12px 32px;
  background: #941b0c;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.recruitment-apply-form .btn-submit:hover {
  background: #7a1508;
  box-shadow: 0 2px 8px rgba(148, 27, 12, 0.2);
}
.recruitment-apply-form .btn-submit:active {
  transform: scale(0.98);
}
.recruitment-apply-form .btn-submit:disabled {
  background: #a0aec0;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .recruitment-apply-form .btn-submit {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
  }
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  z-index: 9999;
  animation: slideInRight 0.3s ease-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  max-width: 90%;
}
.notification.notification-success {
  background: #10b981;
  color: #fff;
}
.notification.notification-error {
  background: #ef4444;
  color: #fff;
}
.notification.notification-warning {
  background: #f59e0b;
  color: #fff;
}
.notification.notification-info {
  background: #3b82f6;
  color: #fff;
}
@media (max-width: 768px) {
  .notification {
    left: 10px;
    right: 10px;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.success-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.success-modal.active {
  display: flex;
}
.success-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-out;
}
.success-modal__content {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUpAndFade 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}
@media (max-width: 640px) {
  .success-modal__content {
    padding: 40px 24px;
    max-width: calc(100% - 32px);
  }
}
.success-modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.success-modal__icon svg {
  width: 44px;
  height: 44px;
  color: #ffffff;
}
.success-modal__title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
@media (max-width: 640px) {
  .success-modal__title {
    font-size: 24px;
  }
}
.success-modal__message {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 32px 0;
}
@media (max-width: 640px) {
  .success-modal__message {
    font-size: 14px;
    margin-bottom: 24px;
  }
}
.success-modal__button {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: none;
  padding: 14px 48px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.success-modal__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}
.success-modal__button:active {
  transform: translateY(0);
}
@media (max-width: 640px) {
  .success-modal__button {
    padding: 12px 32px;
    font-size: 14px;
    width: 100%;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUpAndFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lawyer-slider-wrapper {
  display: flex;
  gap: 24px;
  align-items: stretch;
  margin-top: 80px;
  background: transparent;
  padding: 0;
}
@media (max-width: 1400px) {
  .lawyer-slider-wrapper {
    gap: 24px;
    margin: 40px 0;
  }
}
@media (max-width: 1024px) {
  .lawyer-slider-wrapper {
    gap: 20px;
    flex-direction: column;
    margin: 30px 0;
  }
}
@media (max-width: 768px) {
  .lawyer-slider-wrapper {
    gap: 16px;
    margin: 25px 0;
  }
}

.lawyer-main-carousel-container {
  flex: 0 0 auto;
  width: 400px;
  position: relative;
  height: auto;
  max-height: 535px;
}
@media (max-width: 1400px) {
  .lawyer-main-carousel-container {
    width: 38%;
    min-height: 480px;
  }
}
@media (max-width: 1024px) {
  .lawyer-main-carousel-container {
    width: 100%;
    min-height: 450px;
  }
}
@media (max-width: 768px) {
  .lawyer-main-carousel-container {
    min-height: 380px;
  }
}
@media (max-width: 480px) {
  .lawyer-main-carousel-container {
    min-height: 320px;
  }
}

.lawyer-main-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}
.lawyer-main-carousel.owl-carousel .owl-stage-outer {
  height: 100%;
}
.lawyer-main-carousel.owl-carousel .owl-stage {
  height: 100%;
}
.lawyer-main-carousel.owl-carousel .owl-item {
  height: 100%;
}

.lawyer-main-item {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 533px;
  transition: all 0.3s ease;
  padding: 0;
  position: relative;
  background: linear-gradient(to bottom, #0d0d0d 0%, #141414 80%, #5a1107 95%, #941b0c 100%);
}

.lawyer-main-image-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lawyer-main-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.lawyer-main-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  text-align: center;
}

.lawyer-carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a365d;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(16, 30, 54, 0.15);
  z-index: 10;
}
.lawyer-carousel-nav:hover {
  background: #fff;
  box-shadow: 0 4px 20px rgba(16, 30, 54, 0.25);
  transform: translateY(-50%) scale(1.1);
}
.lawyer-carousel-nav:active {
  transform: translateY(-50%) scale(0.95);
}
.lawyer-carousel-nav svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  pointer-events: none;
}
@media (max-width: 768px) {
  .lawyer-carousel-nav {
    width: 40px;
    height: 40px;
  }
  .lawyer-carousel-nav svg {
    width: 20px;
    height: 20px;
  }
}

.lawyer-carousel-prev {
  left: -24px;
}
@media (max-width: 768px) {
  .lawyer-carousel-prev {
    left: -20px;
  }
}
@media (max-width: 480px) {
  .lawyer-carousel-prev {
    left: -15px;
  }
}

.lawyer-carousel-next {
  right: -24px;
}
@media (max-width: 768px) {
  .lawyer-carousel-next {
    right: -20px;
  }
}
@media (max-width: 480px) {
  .lawyer-carousel-next {
    right: -15px;
  }
}

.lawyer-info-container {
  flex: 0 0 auto;
  width: calc((100% - 400px - 48px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 24px;
}
@media (max-width: 1400px) {
  .lawyer-info-container {
    width: 28%;
  }
}
@media (max-width: 1024px) {
  .lawyer-info-container {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .lawyer-info-container {
    width: 100%;
  }
}

.lawyer-info-carousel {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.lawyer-info-item {
  display: none;
  flex-direction: column;
  width: 100%;
  padding: 0;
  animation: fadeIn 0.5s ease-out;
}
.lawyer-info-item.active {
  display: flex;
}

.lawyer-sub-name {
  font-size: 16px;
  color: #666666;
  font-weight: 600;
}

.lawyer-main-name {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 32px;
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 1400px) {
  .lawyer-main-name {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 1024px) {
  .lawyer-main-name {
    font-size: 28px;
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .lawyer-main-name {
    font-size: 24px;
    margin-bottom: 14px;
  }
}
@media (max-width: 480px) {
  .lawyer-main-name {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.lawyer-main-description {
  margin-bottom: 16px;
  max-height: 360px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f5f5f5;
}
.lawyer-main-description p {
  color: #666666;
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.4;
}
.lawyer-main-description p:last-child {
  margin-bottom: 0;
}
.lawyer-main-description::-webkit-scrollbar {
  width: 3px;
  background: #f5f5f5;
  border-radius: 4px;
}
.lawyer-main-description::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}
.lawyer-main-description::-webkit-scrollbar-thumb:hover {
  background: #a0a0a0;
}

.lawyer-view-detail-btn {
  font-family: "Montserrat", sans-serif;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 12px;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: capitalize;
}
.lawyer-view-detail-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #941b0c;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 12px 12px 0 0;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lawyer-view-detail-btn:hover {
  transform: translateY(-2px);
}
.lawyer-view-detail-btn:hover::after {
  background: #166534;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lawyer-thumbnails-carousel {
  gap: 16px;
  width: 100%;
}
@media (max-width: 1400px) {
  .lawyer-thumbnails-carousel {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .lawyer-thumbnails-carousel {
    gap: 12px;
  }
}
@media (max-width: 600px) {
  .lawyer-thumbnails-carousel {
    gap: 10px;
  }
}
.lawyer-thumbnails-carousel.owl-carousel .owl-stage {
  gap: 12px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  width: 100% !important;
}
.lawyer-thumbnails-carousel.owl-carousel .owl-item {
  flex: 0 0 calc(25% - 12px);
  height: auto;
}
@media (max-width: 1400px) {
  .lawyer-thumbnails-carousel.owl-carousel .owl-item {
    flex: 0 0 calc(25% - 10.5px);
    margin-right: 14px;
  }
}
@media (max-width: 768px) {
  .lawyer-thumbnails-carousel.owl-carousel .owl-item {
    flex: 0 0 calc(25% - 9px);
    margin-right: 12px;
  }
}
@media (max-width: 600px) {
  .lawyer-thumbnails-carousel.owl-carousel .owl-item {
    flex: 0 0 calc(33.333% - 7px);
    margin-right: 10px;
  }
}
@media (max-width: 480px) {
  .lawyer-thumbnails-carousel.owl-carousel .owl-item {
    flex: 0 0 calc(33.333% - 7px);
    margin-right: 10px;
  }
}

.lawyer-thumbnail-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lawyer-thumbnail-item.active .lawyer-thumbnail-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #941b0c;
  opacity: 1;
}
.lawyer-thumbnail-item.active .lawyer-thumbnail-image {
  transform: scale(1.05);
}
.lawyer-thumbnail-item.active .lawyer-thumbnail-name {
  color: #941b0c;
}
@media (max-width: 480px) {
  .lawyer-thumbnail-item {
    aspect-ratio: 1;
  }
}

.lawyer-thumbnail-link {
  width: 100%;
  height: 139px;
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #0d0d0d 0%, #141414 80%, #ccb9b9 95%, #fff 100%);
  border-radius: 8px;
}

.lawyer-thumbnail-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.lawyer-thumbnail-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
  text-align: center;
  padding: 10px;
}

.lawyer-thumbnail-name {
  font-family: "Montserrat", sans-serif;
  color: #757575;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  transition: all 0.3s ease;
  z-index: 2;
}

@keyframes lawyerFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.lawyer-main-item {
  animation: lawyerFadeIn 0.5s ease-out;
}

.lawyer-thumbnail-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.lawyer-title {
  margin-bottom: 48px;
  padding-left: 28px;
  position: relative;
}
.lawyer-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 4px;
  height: 100%;
  background: #941b0c;
  border-radius: 0 12px 12px 0;
}
.lawyer-title .lawyer-title__name {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  color: #000;
  line-height: 1.2;
}
.lawyer-title .lawyer-title__name strong {
  font-weight: 700;
  font-size: 32px;
}
.lawyer-title .lawyer-title__position {
  font-size: 16px;
  color: #666666;
}

.lawyer-detail__wrapper {
  display: flex;
  gap: 48px;
}
.lawyer-detail__wrapper .lawyer-detail__image {
  width: 480px;
  height: 640px;
  position: relative;
  background: linear-gradient(to bottom, #0d0d0d 0%, #141414 80%, #5a1107 95%, #941b0c 100%);
  border-radius: 24px;
  overflow: hidden;
}
.lawyer-detail__wrapper .lawyer-detail__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lawyer-detail__wrapper .lawyer-detail__content {
  width: calc(100% - 480px - 48px);
}
.lawyer-detail__wrapper .lawyer-detail__content p,
.lawyer-detail__wrapper .lawyer-detail__content span,
.lawyer-detail__wrapper .lawyer-detail__content li {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.6;
}
.lawyer-detail__wrapper .lawyer-detail__content p:last-child,
.lawyer-detail__wrapper .lawyer-detail__content span:last-child,
.lawyer-detail__wrapper .lawyer-detail__content li:last-child {
  margin-bottom: 0;
}
.lawyer-detail__wrapper .lawyer-detail__content h1,
.lawyer-detail__wrapper .lawyer-detail__content h2,
.lawyer-detail__wrapper .lawyer-detail__content h3,
.lawyer-detail__wrapper .lawyer-detail__content h4,
.lawyer-detail__wrapper .lawyer-detail__content h5 {
  font-size: 20px;
  font-weight: 700;
  color: #3b3b3b;
}

.lawyer-detail__related {
  background: #f5f5f5;
  padding: 80px;
}
.lawyer-detail__related-title {
  margin-bottom: 40px;
  padding-left: 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
  font-style: italic;
  position: relative;
}
.lawyer-detail__related-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 4px;
  height: 100%;
  background: #941b0c;
  border-radius: 0 12px 12px 0;
}
.lawyer-detail__related .lawyer-detail__related-slider {
  position: relative;
}
.lawyer-detail__related .lawyer-detail__related-slider .owl-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  display: block;
  width: 100%;
  z-index: 3;
}
.lawyer-detail__related .lawyer-detail__related-slider .owl-nav button {
  background: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.lawyer-detail__related .lawyer-detail__related-slider .owl-nav button svg {
  display: block;
}
.lawyer-detail__related .lawyer-detail__related-slider .owl-nav button:hover {
  background: #941b0c;
}
.lawyer-detail__related .lawyer-detail__related-slider .owl-nav button:hover svg {
  stroke: #fff;
}
.lawyer-detail__related .lawyer-detail__related-slider .owl-nav .owl-prev {
  position: absolute;
  left: -24px;
}
.lawyer-detail__related .lawyer-detail__related-slider .owl-nav .owl-next {
  position: absolute;
  right: -24px;
}

.lawyer-related-item {
  overflow: hidden;
  height: 100%;
  box-shadow: none;
  transition: box-shadow 0.2s;
}
.lawyer-related-item .lawyer-related-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.lawyer-related-item .lawyer-related-image {
  width: 100%;
  height: 273px;
  background: linear-gradient(to bottom, #0d0d0d 0%, #141414 80%, #978f8e 95%, #c9bdbb 100%);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.lawyer-related-item .lawyer-related-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 640px;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.lawyer-related-item .lawyer-related-name {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #000;
  font-weight: 600;
  margin-top: 12px;
  line-height: 1.3;
}
.lawyer-related-item:hover .lawyer-related-image {
  border-radius: 16px;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #0d0d0d 0%, #141414 80%, #7a6f0a 95%, #928406 100%);
}
.lawyer-related-item:hover .lawyer-related-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #941b0c;
}
.lawyer-related-item:hover .lawyer-related-image img {
  transform: scale(1.1);
  transition: all 0.3s ease;
}
