.w3f-domain-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 50px 0px;
  font-family: "Poppins", sans-serif;
  color: #111;
}
.w3f-domain-item {
  background-color: #fff;
  border: 1.5px solid #eee;
  border-radius: 12px;
  padding: 1.8rem 2rem;
  box-shadow: 0 3px 8px rgb(0 0 0 / 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.w3f-domain-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.w3f-domain-link:hover .w3f-domain-item {
  border-color: #ff6a00;
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.1);
}
.w3f-domain-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.3rem 0;
  color: #222;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.w3f-domain-link:hover .w3f-domain-title {
  color: #ff6a00;
}
.w3f-domain-url {
  font-size: 0.95rem;
  font-weight: 400;
  color: #ff6a00;
  margin: 0 0 2rem 0;
  word-break: break-word;
  line-height: 1.4;
}
.w3f-meta-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.w3f-meta-item {
  font-size: 0.85rem;
  font-weight: 400;
  color: #444;
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.w3f-meta-label {
  font-weight: 600;
  text-transform: uppercase;
  color: #444;
  margin-right: 0.5rem;
  font-size: 0.8rem;
}
.w3f-meta-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  fill: #444;
}
.w3f-domain-item::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #fff3ea;
  margin: 3rem 0 0 0;
}
.w3f-pagination-wrapper {
  clear: both;
  margin-top: 2rem;
  padding: 1rem 0;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}
.w3f-pagination {
  text-align: center;
}
.w3f-pagination ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.w3f-pagination li {
  display: inline-block;
}
.w3f-pagination a,
.w3f-pagination span {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.w3f-pagination a:hover {
  border-color: #ff6a00;
  color: #ff6a00;
}
.w3f-pagination .current {
  background: #ff6a00;
  color: #fff;
  border-color: #ff6a00;
}
.w3f-search-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin: 1rem 0 2rem 0;
  text-align: center;
}
