/*Tiêu đề container*/
.section-title{
  padding-bottom: 50px;
}
.section-title h3{
  font-family: 'Poppins', sans-serif; 
  font-weight: 700;
  font-size: 32px;
  line-height: 40px;
  text-align: center;
  padding-bottom: 30px;
  color: black;
  padding-top: 50px;
}.section-title p{
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  color: #858C95;
}
.ai-topic-links {
  background: #fdfbff;
  border: 1px solid #dcd3f5;
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}

.ai-topic-row {
  display: flex;
  flex-wrap: wrap;
}

.ai-topic-col {
  padding: 0 20px;
}

/* Cột 1 chiếm 1/3 */
.column-1 {
  flex: 1 1 33.33%;
  padding-right: 30px;
}
.column-1 ul li a {
  font-weight: 700; /* In đậm toàn bộ chữ */
  text-decoration: none;
}

/* Cột 2-3 chiếm 2/3 */
.column-2-3 {
  flex: 1 1 66.66%;
  padding-left: 30px;
}

.column-1 h3,
.column-2-3 h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.ai-topic-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ai-topic-col li {
  margin-bottom: 10px;
}

.ai-topic-col a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.2s;
}

.ai-topic-col a:hover {
  color: #5f2eea;
}

/* Cột 2-3 nằm ngang */
.ai-topic-inner-row {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  border-left: 1px solid #dcd3f5; /* Đường giữa cột 1 và 2-3 */
}

.inner-col {
  flex: 1;
  padding: 0 20px;
  border-left: 1px solid #dcd3f5; /* Đường giữa cột 2 và 3 */
}
/* Nút tam giác mặc định ẩn (desktop) */
/* Header gồm tiêu đề và nút ▼ */
.ai-topic-toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toggle-button {
  background: none;
  border: none;
  font-size: 0;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;utf8,<svg fill="black" viewBox="0 0 24 24" width="24" height="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: none; /* mặc định ẩn */
}

/* Nút mở → quay lên */
.toggle-button.open {
  transform: rotate(180deg);
}
/* Responsive */
@media (max-width: 768px) {
  .ai-topic-row {
    flex-direction: column;
  }

  .column-1,
  .column-2-3 {
    flex: 100%;
    padding: 0;
    border: none;
    text-align: center;
  }

  .ai-topic-inner-row {
    flex-direction: column;
    border: none;
    text-align: left;
    padding-left: 5px;
  }

  .inner-col {
    border: none;
    padding: 0;
  }
  .toggle-button {
    display: inline-block;
  }

  .toggle-links {
    display: none;
  }

  .toggle-links.show {
    display: block;
    margin-top: 10px;
  }

  .ai-topic-toggle-header {
    cursor: pointer;
  }
  /* Căn giữa cụm tiêu đề + nút tam giác */
.column-2-3 .ai-topic-toggle-header {
  display: flex;
  justify-content: center; /* Căn giữa */
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-top: 30px;
}

/* Tiêu đề */
.column-2-3 .ai-topic-toggle-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
}
