.xyntara-explore-page {
  --xe-radius: 14px;
}

.xyntara-explore-hero {
  margin-top: 68px;
  background: linear-gradient(180deg, var(--grey-bg, #f6f6f6) 0%, #fff 100%);
  padding: 44px 24px 40px;
  border-bottom: 1px solid #e8eef5;
}

.xyntara-explore-hero h1 {
  margin: 0 0 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 800;
  color: var(--dark, #2a2b32);
}

.xyntara-explore-hero p {
  max-width: 680px;
  color: #6b7280;
  margin: 0 0 18px;
}

.xyntara-explore-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 640px;
  border-radius: 12px;
  border: 1.5px solid #dce7f4;
  background: #fff;
  padding: 8px 10px 8px 12px;
}

.xyntara-explore-search i {
  color: #8ea0b5;
}

.xyntara-explore-search input {
  flex: 1;
  min-width: 120px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: #273244;
}

.xyntara-explore-search button {
  border: 1px solid var(--blue, #056cb8);
  background: var(--blue, #056cb8);
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.xyntara-explore-search button:hover {
  background: #045a99;
  border-color: #045a99;
}

.xyntara-explore-main {
  padding-top: 42px !important;
  padding-bottom: 80px !important;
}

.xyntara-explore-grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.xyntara-explore-grid-list > li {
  margin: 0;
  padding: 0;
}

.xyntara-explore-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #d6e2f0;
  border-radius: var(--xe-radius);
  padding: 18px;
  transition: all 0.22s ease;
}

.xyntara-explore-card:hover {
  border-color: var(--blue, #056cb8);
  box-shadow: 0 8px 24px rgba(5, 108, 184, 0.12);
  transform: translateY(-2px);
  text-decoration: none;
}

.xyntara-explore-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-light, #eef4fb);
  color: var(--blue, #056cb8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.xyntara-explore-card h4 {
  margin: 0 0 6px;
  color: #223247;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.xyntara-explore-card p {
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  font-weight: 600;
}

.xyntara-explore-empty {
  grid-column: 1 / -1;
  text-align: center;
  background: #fff;
  border: 1.5px solid #dbe5f1;
  border-radius: var(--xe-radius);
  padding: 28px 16px !important;
}

.xyntara-explore-pagination-wrap .pagination {
  gap: 6px;
  justify-content: center;
}

.xyntara-explore-pagination-wrap .page-link {
  border-radius: 10px;
  border: 1.5px solid #e8eef5;
  color: #5a6c7d;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
}

.xyntara-explore-pagination-wrap .page-item:not(.disabled) .page-link:hover {
  border-color: var(--blue, #056cb8);
  color: var(--blue, #056cb8);
  background: var(--blue-light, #eef4fb);
}

.xyntara-explore-pagination-wrap .page-item.disabled .page-link {
  opacity: 0.5;
}

@media (max-width: 576px) {
  .xyntara-explore-search {
    padding: 8px;
    gap: 8px;
  }
  .xyntara-explore-search button {
    padding: 8px 11px;
  }
}
