.article-footer-bar {
  position: relative;
}

.article-footer-bar::before {
  pointer-events: none !important;
}

.footer-back-btn {
  position: relative;
  z-index: 10;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* Tăng vùng bấm nhưng không làm “to” giao diện */
.footer-back-btn::after {
  content: "";
  position: absolute;
  inset: -10px;
  color: #FFF;
}

.footer-back-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  background-color: #0077b5;
  border-radius: 50px;
}

/* Icon trắng, chống “mất” trên nền trắng */
.footer-back-btn i {
  color: #fff;
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
  /* giúp nổi trên nền trắng */
  filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.85));
}

/* Khối Icon Mạng Xã Hội */
.footer-social-icons {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.social-icon-btn {
  width: 35px;
  height: 35px;
  background-color: #fff; /* Màu xám cho nền icon */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #747474;
  font-size: 30px;
  margin-left: 8px; /* Khoảng cách giữa các icon */
  text-decoration: none;
  transition: background-color 0.2s;
  border: solid 1px #888;
}

.social-icon-btn:not(.zalo):hover {
  background-color: #0d6efd; /* Đổi màu khi hover */
  color: #fff;
  border-color: #0d6efd;
  text-decoration: none;
}

.social-icon-btn.zalo .zaloxanh {
  display: none;
}

.social-icon-btn.zalo:hover .zaloxam {
  display: none;
}

.social-icon-btn.zalo:hover .zaloxanh {
  display: block;
}

.social-icon-btn:hover.facebook {
  background-color: #4281ff;
  border-color: #4281ff;
}

.social-icon-btn:hover.twitter {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.social-icon-btn:hover.linkedin {
  background-color: #0077b5;
  border-color: #0077b5;
}

/* Căn chỉnh lại thanh điều hướng Previous/Next (Tách riêng khỏi Footer Bar) */
.article-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px dotted #ccc;
  margin-top: 30px; /* Giữ khoảng cách trên thanh đen */
}