.course-content h3 {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(201, 107, 42, .10);
  border: 1px solid rgba(201, 107, 42, .22);
  border-radius: 40px;
  padding: 4px 14px;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Mặc định <= 3 item */
.course-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

/* Nếu có từ item thứ 4 trở lên => tự chia 2 cột */
.course-content ul:has(li:nth-child(4)) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 30px;
  padding-left: 20px;
}

.note-box ul {
  display: block !important;
}

.course-content {
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.8;
}

.course-content p strong {
  color: var(--text);
}

.course-content ul li:not(:last-child) {
  margin-bottom: 10px;
}

.course-content ul li::marker {
  color: var(--orange);
}

.avata-author {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 100%;
  border: 3px solid #c96b2a;
}

.review-avatar img {
  width: 34px;
  border-radius: 100%;
}

.cd-buy-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cd-includes .cii img {
  width: 25px;
}

.related-courses .course-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/**/
#video-popup {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  z-index: 99999;
}

.vp-inner {
  width: 1000px;
  max-width: 90%;
  background: #fff;
  border-radius: 7px;
  padding: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.vp-inner iframe {
  width: 100%;
  border-radius: 10px;
}

.vp-close {
  position: absolute;
  right: 15px;
  top: 10px;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
}

.ci-icon2 {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f3f4f6;
}

@media (max-width: 768px) {}