.listing {
  margin-top: 5rem;
}

@media (max-width: 1024px) {
  .listing {
    width: 90%;
    margin: 5rem auto 0;
  }
}

.listing .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.listing-search-restult {
  margin-bottom: 3rem;
}

.listing-search-restult h1 {
  font-size: 2.6rem;
  color: #292c39;
  font-weight: 400;
}

.listing-search-restult h1 strong {
  color: #0078e7;
  text-transform: uppercase;
}

.listing .pagination-objects{
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media (max-width: 1024px) {
  .listing .pagination-objects {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 640px) {
  .listing .pagination-objects {
    grid-template-columns: 1fr;
  }
}

.listing-cover {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.listing-cover img {
  min-width: 100%;
  height: 20rem;
  object-fit: cover;
}

.listing-item-header {
  margin-top: 1rem;
}

.listing-item-header h1 {
  font-size: 2rem;
  line-height: 2.2rem;
  color: #292c39;
  font-weight: 700;
}

.listing-item:hover .listing-item-header h1 {
  text-decoration: underline;
}

.highcontrast .listing-item-header h1 {
  color: #fff;
}

.listing-item-header p {
  font-size: 1.6rem;
  color: #292c39;
  font-weight: 500;
  margin-top: 1rem;
  display: block;
}

.highcontrast .listing-item-header p {
  color: #fff;
}

.listing-item-header p i {
  color: #0083c8;
  margin-right: 0.5rem;
}

.highcontrast .listing-item-header p i {
  color: #ffc506;
}
