.text-list-wrap {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #ececec;
}

.text-list-wrap li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 8px;
  border-bottom: 1px dashed #dfdfdf;
}

.text-list-wrap li a {
  flex: 1;
  min-width: 0;
  color: #2d2d2d;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-list-wrap li a:hover {
  color: var(--academy-red);
}

.text-list-date {
  color: #999;
  font-family: Arial, sans-serif;
  font-size: 13px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .text-list-wrap li {
    padding: 12px 4px;
  }
  .text-list-wrap li a {
    font-size: 14px;
  }
}
