/* Chống tràn khung sang bên phải */
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Cắt bỏ phần dư thừa bên phải */
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}
/* Khung chứa Video YouTube tỉ lệ 16:9 */
.video-responsive {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

/* Fix chiều cao ảnh Slide để không bị vỡ giao diện */
.tm-slick-slider img {
  width: 100%;
  height: 350px; 
  object-fit: cover;
  border-radius: 8px;
}

/* Ép Dots của Slick thành 1 dòng ngang */
.slick-dots {
  display: flex !important;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin-top: 15px;
  overflow: hidden;
}
.slick-dots li { margin: 0 3px !important; }
.slick-dots li button {
  width: 5px !important; height: 5px !important;
  border-radius: 50%;
  background: #ccc;
  border: none;
  font-size: 0;
}