.list-cards-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.list-card {
  padding: 12px 16px;
  background: #fff;
  border-left: none;
  border-right: none;
  border-top: none;
  border-bottom: 1px solid #e1e8ed;
}

.list-card-inner {
  gap: 10px;
}

@media (min-width: 768px) {
  .list-card-inner {
    gap: 12px;
  }
}

.list-card-left {
  flex: 0 0 44px;
}

@media (min-width: 768px) {
  .list-card-left {
    flex: 0 0 56px;
  }
}

.list-card-right {
  flex: 1 1 auto;
  min-width: 0;
}

.list-card-header {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
}

.list-card-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #f5f5f5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .list-card-avatar {
    width: 48px;
    height: 48px;
  }
}

.list-card-avatar-link {
  display: inline-flex;
  border-radius: 50%;
}

.list-card-body {
  padding: 0;
}

.list-card-name {
  flex: 1 1 auto;
  font-weight: 600;
  font-size: 0.95rem;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.list-card-time {
  font-size: 0.8rem;
  color: #6c757d;
  white-space: nowrap;
  margin-left: 0;
}

.list-card-dropdown-toggle {
  border: none;
  background: transparent;
  color: #6c757d;
  padding: 2px 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
}

.list-card-dropdown-toggle:hover {
  background: rgba(15, 20, 25, 0.03);
}

.list-card-dropdown-menu {
  font-size: 0.9rem;
}

.list-card-text {
  margin: 0.3rem 0;
}

.list-card .card-desc-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 10;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.list-card-meta {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.list-card-footer {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.list-cards-state {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  flex-direction: column;
  gap: 8px;
}

.list-cards-footer-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0 32px;
}
