#cps-live-search {
  padding: 0 40px;
  border: 1px solid #ddd;
  border-radius: 15px;
}
.cps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 20px;
}
.cps-item {
  /*   display: flex;
  flex-direction: column; */
  height: 100%;
  border: 1px solid #eee;
  border-radius: 20px;
  text-align: left;
  transition: all 0.3s ease;
  background: #fff;
}
.cps-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cps-item .cps-thumb img {
  width: 100%;
  height: auto;
  border-radius: 20px 20px 0 0;
  display: block;
}
.cps-body {
  /*   display: flex;
  flex-direction: column;
  flex: 1; */
  padding: 28px;
}
.cps-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 16px;
}
.cps-desc {
  /*   flex: 1; */
  font-size: 16px;
  margin-bottom: 24px;
}
.cps-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #0073aa;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cps-btn:hover {
  background: #005f8d;
}

.cps-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}
.cps-page {
  padding: 8px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #f5f5f5;
  cursor: pointer;
  user-select: none;
  transition: 0.2s ease;
}
.cps-page:hover {
  background-color: #132436;
  color: white;
}
.cps-page.active {
  background-color: #132436;
  color: #fff;
  font-weight: bold;
}
.cps-page.disabled {
  color: #aaa;
  background-color: #eee;
  cursor: not-allowed;
  pointer-events: none;
}
.cps-dots {
  padding: 6px 10px;
  color: #aaa;
  user-select: none;
}
.cps-page.disabled {
  color: #aaa;
  background-color: #eee;
  cursor: not-allowed;
  pointer-events: none;
}

.search-group {
  position: relative;
  width: 100%;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: #999;
}

/* .search-input {
  width: 100%;
  padding: 10px 40px 10px 40px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
} */

.clear-search-btn {
  position: absolute !important;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  padding: 8px !important;
  background-color: transparent !important;
  border: none !important;
  cursor: pointer !important;
  color: #454545 !important;
  font-size: 16px !important;
}

.clear-search-btn:hover {
  color: #000;
}
.cps-no-results-container {
  padding: 20px;
}
.cps-no-results-title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 16px;
}
.cps-no-results-title,
.cps-no-results-para {
  text-align: center;
}
/* Hide native clear icon in input[type="search"] for Chrome, Safari, Edge */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

/* Firefox */
input[type="search"]::-moz-search-cancel-button {
  display: none;
}

.cps-button {
  width: 100%;
  /*   margin-top: auto; */
}

.cps-button a {
  width: 100%;
  border-radius: 44px;
  background: #e9eaeb;
  padding: 4px 4px 4px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.32px;
  color: #132436;
  transition: all 0.3s ease;
}

.cps-button a:hover {
  background: #132436;
  color: #fff;
}

.cps-button span {
  padding: 7px 16px;
  border-radius: 50px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cps-button span svg {
  width: 18px;
  height: 18px;
}
