.cksp-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.cksp-item {
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 15px;
}
.cksp-thumb img {
  width: 190px;
  border-radius: 8px;
  height: revert-layer;
}
.cksp-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cksp-title a {
  color: #0073b7;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}
.cksp-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0;
}
.cksp-meta {
  font-size: 14px;
  color: #555;
}
.cksp-meta i {
  color: #0073b7;
  margin-right: 5px;
}
.cksp-more {
  color: #0073b7;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cksp-more:hover {
  color: #005f99;
  text-decoration: underline;
  margin-right: -3px;
}
.cksp-title a:hover {
  color: #f39324;
}
.cksp-pagination {
  text-align: center;
  margin-top: 30px;
}
.cksp-pagination a,
.cksp-pagination span {
  display: inline-block;
  padding: 8px 14px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #0073b7;
}
.cksp-pagination .current {
  background-color: #0073b7;
  color: white;
  border-color: #0073b7;
}
.cksp-pagination a:hover {
  background-color: #005f99;
  color: white;
}
.cksp-no-results {
  text-align: center;
  padding: 40px 20px;
  color: #666;
}