.btn-links {
  margin-top: 0;
}

.table thead th:before {
  display: none;
}

/* Custom styles for matching design */
.ul-type-mark {
  list-style: none;
  padding-left: 0;
}
.ul-type-mark > li {
  position: relative;
  padding: 0 0 10px 28px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.ul-type-mark > li:before {
  content: "!";
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 16px;
  background-color: #22d3ee;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.ul-type-mark .ul-type-dot02 {
  margin-top: 5px;
}
.ul-type-mark .ul-type-dot02 li {
  font-weight: 500;
  color: #666;
  padding-left: 15px;
}
.ul-type-mark .txt-purple {
  color: #c084fc !important;
}
.txt-indent {
  padding-left: 15px;
  font-weight: 500;
  color: #666;
}

/* Q.E. Groups */
.qe-group {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #ccc;
}
.qe-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* Download buttons */
.download-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.download-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.download-item .label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 13px;
  color: #333;
  border-radius: 4px;
  min-width: 50px;
}
.download-item .label.yellow {
  background-color: #fbbf24;
}
.download-item .btn-down {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding-bottom: 4px;
}
.download-item .btn-down::after {
  content: "";
  display: inline-block;
  width: 13px;
  height: 11px;
  background: url("../img/content/ico_down2.png") no-repeat center / contain;
}

/* Q.E. Layout */
.qe-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.qe-info {
  flex: 3.5;
}
.qe-diagram {
  flex: 6.5;
}
.diagram-tit {
  font-weight: 700;
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  padding-left: 28px;
  position: relative;
}
.diagram-tit:before {
  content: "!";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 16px;
  background-color: #22d3ee;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.track-grid {
  display: flex;
  gap: 15px;
}
.track-col {
  flex: 1;
  background-color: #f3f4f6;
  border-radius: 15px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.track-col:first-child {
  background-color: #cbd5e1;
}
.track-head {
  font-weight: 800;
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  position: relative;
  width: 100%;
  text-align: center;
}
.track-head:after {
  content: "";
  display: block;
  width: 30px;
  height: 1.5px;
  background-color: #fff;
  margin: 12px auto 0;
}
.track-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 15px;
}
.track-box .item {
  padding: 14px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
}
.track-box .item.pill {
  border-radius: 99px;
}
.track-box .item.rounded {
  border-radius: 12px;
}
.track-box .item.purple {
  background-color: #c084fc;
  color: #fff;
}
.track-box .item.blue {
  background-color: #24355b;
  color: #fff;
}
.track-box .item.h-2 {
  height: 114px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.track-box .item.h-3 {
  height: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .qe-layout {
    flex-direction: column;
    gap: 40px;
  }
  .qe-info,
  .qe-diagram {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .track-grid {
    flex-direction: column;
    gap: 20px;
  }
  .track-col {
    padding: 20px;
  }
  .track-box .item.h-2,
  .track-box .item.h-3 {
    height: auto;
    min-height: 60px;
  }
  .download-item {
    gap: 10px;
  }
  .download-item .btn-down {
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .track-head {
    font-size: 18px;
  }
  .ul-type-mark > li {
    font-size: 14px;
    padding-left: 28px;
  }
  .ul-type-mark > li:before {
    width: 22px;
    height: 14px;
  }
}