/* ==============================
           ARTICLE HEADER
        ================================ */
.article-header {
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
  border-bottom: 1px solid #e5e7eb;
  border-left: 4px solid #334a1b;
  padding: 45px 0 30px;
}

/* ARTICLE */

.article-header-inner {
  width: 80%;
  margin: 0 auto;
  padding: 0 20px;
}

.article-breadcrumb {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 14px;
}

.article-breadcrumb a {
  color: #000;
  text-decoration: none;
}

.article-breadcrumb span {
  margin: 0 6px;
}

.article-title {
  font-size: 30px;
  line-height: 1.5;
  font-weight: 700;
  color: #334a1b;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 16px;
}

.article-sapo {
  font-size: 17px;
  line-height: 1.65;
  color: #374151;
  text-align: justify;
}

/* ==============================
           CONTENT WRAP
        ================================ */
.content-wrap {
  width: 80%;
  margin: 30px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 3fr 1.2fr;
  gap: 32px;
}

/* LEFT CONTENT */
.content-left {
  font-size: 17px;
  line-height: 1.75;
}

.news-featured-image {
  margin-bottom: 20px;
  text-align: center;
}

.news-featured-image img {
  height: auto;
  border-radius: 6px;
}

.news-featured-image figcaption {
  margin-top: 8px;
  font-size: 16px;
  color: #6b7280;
  text-align: center;
  font-style: italic;
}

.content-left h2 {
  font-size: 17px;
  margin: 4px 0 4px;
  color: #ba8b15;
  font-weight: bold;
  line-height: 1.5;
  text-transform: none !important;
}

.content-left h3 {
  font-size: 17px;
  margin: 4px 0 4px;
  color: #222;
  font-weight: bold;
  line-height: 1.5;
}

.content-left p {
  margin-bottom: 6px;
  color: #222;
  line-height: 1.5;
  font-size: 16px !important;
}

/* RIGHT SIDEBAR */
.content-right {
  position: relative;
}

.sidebar-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 20px;
}

.sidebar-box h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #334a1b;
  font-weight: bold;
}

.sidebar-box ul {
  list-style: none;
}

.sidebar-box li {
  margin-bottom: 10px;
}

.sidebar-box a {
  color: #ba8b15;
  text-decoration: none;
  font-size: 16px;
}

.sidebar-box a:hover {
  color: #334a1b;
  text-decoration: none;
  font-size: 16px;
}

.article-author-box {
  margin-top: 40px;
  padding: 18px 20px;
  background: #f8f9fb;
  border-left: 4px solid #ba8b15;
  border-radius: 4px;
}

.article-author-box p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #ba8b15;
}

.article-author-box strong {
  color: #ba8b15;
}

section strong,
section b,
section cite {
  font-weight: bold;
  line-height: 31px;
  color: #000;
}

/* ==============================
           RESPONSIVE
        ================================ */
@media (max-width: 992px) {
  .content-wrap {
    grid-template-columns: 1fr;
    display: grid !important;
  }
}

@media (max-width: 768px) {
  .content-left {
    width: 100% !important;
  }
  .tintuc-bds-right {
    width: 100% !important;
  }
  .article-header {
    padding: 30px 0 0px !important;
  }
  .content-wrap {
    display: grid !important;
    width: 100% !important;
  }
  .article-header-inner {
    width: 100% !important;
  }
  .article-title {
    font-size: 20px;
  }

  .article-sapo {
    font-size: 17px;
  }

  .content-left h3 {
    font-size: 16px;
  }
}

.tax-banner {
  background: linear-gradient(135deg, #0d47a1, #2196f3);
  padding: 140px 20px 120px;
}

/* Container */
.tax-services {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
}

/* Item */
.service-item {
  position: relative;
  flex: 0 0 auto;
  /* không cho flex bóp */
}

/* Tooltip */
.tooltip {
  position: absolute;
  bottom: 150px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);

  width: 340px;
  /* cố định chiều rộng */
  max-width: 90vw;
  /* mobile không tràn màn */
  background: #fff;
  padding: 20px 26px;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.6;
  color: #0d47a1;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);

  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  pointer-events: none;
  /* tránh rung hover */
  z-index: 10;
}

/* Mũi tên */
.tooltip::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #fff;
}

/* Hover */
.service-item:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Vòng tròn */
.service-circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 17px;
  color: #0d47a1;
  cursor: pointer;

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: 0.3s;
}

.service-item:hover .service-circle {
  transform: translateY(-10px) scale(1.08);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
}

/* Mobile */
@media (max-width: 768px) {
  .service-circle {
    width: 90px;
    height: 90px;
    font-size: 16px;
  }

  .tooltip {
    width: 280px;
    font-size: 16px;
    padding: 16px 20px;
  }
}

/* ===============================
 MỤC TIN TỨC NỔI BẬT KHÁM PHÁ - TIỆN ÍCH
================================ */
.fonttieudetin {
  font-size: 20px;
  font-weight: bold;
  margin-top: 8px;
}
.tintuc-bds-titletv {
  color: #334a1b;
  border-bottom: 2px solid #334a1b;
  padding-bottom: 6px;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
}
/* Wrapper */
.tintuc-bds-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 auto;
  width: 80%;
  padding: 0 15px;
  box-sizing: border-box;
  margin-top: 30px;
  padding-bottom: 40px;
}

/* CỘT TRÁI */
.tintuc-bds-left {
  flex: 2 1 0;
  min-width: 300px;
}

/* Tin tức item: Hình 3 phần, text 7 phần */
.tintuc-bds-news-item {
  display: flex;
  gap: 0px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tintuc-bds-news-img {
  flex: 3 0 15%;
  min-width: 100px;
}
.tintuc-bds-news-img img {
  width: 85%;
  height: auto;
  display: block;
  border-radius: 5px;
}
.tintuc-bds-news-content {
  flex: 7 0 65%;
}
.tintuc-bds-news-title {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  text-decoration: none;
  color: #ba8b15;
  font-size: 17px;
  line-height: 26px;
}

.tintuc-bds-news-title:hover {
  display: block;
  font-weight: bold;
  margin-bottom: 2px;
  text-decoration: none;
  color: #334a1b !important;
  font-size: 17px;
  line-height: 21px;
}
.tintuc-bds-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  display: block;
  width: 80%;
  text-align: justify;
}

/* CỘT PHẢI */
.tintuc-bds-right {
  flex: 1 1 0;
  min-width: 250px;
}

/* Sticky desktop */
@media (min-width: 992px) {
  .tintuc-bds-right {
    position: sticky;
    top: 20px;
    align-self: flex-start;
  }
}

/* Box tiện ích */

.utilities__header {
  font-size: 20px !important;
}

.utilities__line {
  background: #334a1b !important;
}

.utilities__clock {
  font-size: 15px !important;
  color: #000 !important;
}

.utilities__clock strong {
  color: #000 !important;
}

.tintuc-bds-box {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #fff;
}
.tintuc-bds-gold-box table {
  width: 100%;
  border-collapse: collapse;
}
.tintuc-bds-gold-box th,
.tintuc-bds-gold-box td {
  border: 1px solid #ccc;
  padding: 5px;
  text-align: center;
}
.tintuc-bds-note {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}
.tintuc-bds-weather-box {
  text-align: center;
}
.tintuc-bds-temp {
  font-size: 2rem;
  font-weight: bold;
}
.tintuc-bds-weather-info span {
  display: block;
  font-size: 0.9rem;
}
.tintuc-bds-news-title {
  display: block;
  font-weight: bold;
  margin-bottom: 2px;
  text-decoration: none;
  color: #ba8b15;
  font-size: 17px;
  line-height: 21px;
}

/* RESPONSIVE MOBILE */
@media (max-width: 991px) {
  .tintuc-bds-wrapper {
    flex-direction: column;
    width: 100% !important;
  }
  .tintuc-bds-left,
  .tintuc-bds-right {
    width: 100%;
    flex: none;
  }
  .tintuc-bds-news-item {
    flex-direction: row;
  }
  .tintuc-bds-news-img {
    flex: 3 0 30%;
  }
  .tintuc-bds-news-content {
    flex: 7 0 65%;
  }
  .tintuc-bds-right {
    position: relative;
    margin-top: 20px;
  }
  .tintuc-bds-news-title {
    display: block;
    font-weight: bold;
    margin-bottom: 2px;
    text-decoration: none;
    color: #ba8b15;
    font-size: 17px;
    line-height: 21px;
  }
  .tintuc-bds-text {
    font-size: 16px;
    line-height: 1.3;
    color: #333;
    display: none;
  }
}
/* ===============================
 KẾT THÚC MỤC TIN TỨC NỔI BẬT KHÁM PHÁ - TIỆN ÍCH
================================ */

.content-wrap {
  display: flex;
  gap: 30px;
}

.content-left {
  width: 70%;
}

.tintuc-bds-right {
  width: 30%;
}
.tintuc-bds-right {
  position: sticky;
  top: 110px;
}

/* ===== KHỐI NỘI DUNG ===== */
.phan-noidung ul {
  list-style: none;
  padding-left: 0;
  margin: 15px 0;
}

/* ===== LI ===== */
.phan-noidung ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  line-height: 1.6;
  color: #333;
}

/* ===== DẤU “–” ===== */
.phan-noidung ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  top: 0;
  color: #ddd;
  font-weight: bold;
}

/* ===== ĐOẠN VĂN ===== */
.phan-noidung p,
.product-content p {
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 1.7;
}

/* ===== BÔI ĐẬM TỪ KHÓA ===== */
.phan-noidung strong {
  color: #000;
  font-weight: 600;
}

/* ===== BLOCK QUOTE (nổi bật nội dung quan trọng) ===== */
.phan-noidung blockquote {
  border-left: 4px solid #334a1b;
  background: #fff5f5;
  padding: 12px 15px;
  margin: 15px 0;
  font-style: italic;
  color: #444;
}

/* ===== BOX NỔI BẬT (callout) ===== */
.phan-noidung .box-highlight {
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid #334a1b;
  padding: 12px 15px;
  margin: 20px 0;
  border-radius: 6px;
}

/* ===== IMAGE TRONG BÀI ===== */
.phan-noidung img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 10px 0;
}

/* ===== CAPTION ẢNH ===== */
.phan-noidung figure {
  text-align: center;
}

.phan-noidung figcaption {
  font-size: 13px;
  color: #777;
  margin-top: 5px;
}

/* ===== HR (ngăn cách nội dung) ===== */
.phan-noidung hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 25px 0;
}

/* ===== H3, H4 (tăng SEO heading) ===== */
.phan-noidung h3 {
  font-size: 18px;
  color: #222;
  margin-top: 18px;
  margin-bottom: 8px;
}

.phan-noidung h4 {
  font-size: 16px;
  color: #444;
  margin-top: 15px;
}

/* ===== LIST ĐẸP HƠN ===== */
.phan-noidung ul li {
  transition: 0.2s;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .phan-noidung p {
    font-size: 15px;
  }
}
