/* Right Listing Claim Section */
.right-listing {
  padding: 10px;
  margin-bottom: 20px;
  margin-top: 60px;
  text-align: center;
  background-color: #fff;
  border-radius: 4px;
  transition: box-shadow 0.3s ease;
  border: solid 1px #ddd;
}

.right-listing a {
  text-decoration: none;
}

.right-listing:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.right-listing h2 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.right-listing b {
  color: orange;
}

.right-listing button {
  background-color: #0678b1;
  color: #fff;
  padding: 8px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.right-listing button:hover {
  background-color: orange;
}

.right-listing img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
}

.filtered-listings {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.listing-item {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 4px;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.listing-item:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.listing-link {
  text-decoration: none;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.listing-link img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
}

.listing-link h3 {
  font-size: 16px;
  margin: 0;
  transition: color 0.3s ease;
}

.listing-link:hover h3 {
  color: #0678b1;
  transition: 0.5s;
}

.listing-item p {
  font-size: 15px;
  color: #666;
  margin-top: 5px;
}

/* Section Titles */
h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
}

/* Banner Images */
.right-banner-image {
  margin-top: 20px;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.right-banner-image img {
  width: 100%;
  height: auto;
  display: block;
}

.right-banner-image:hover img {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .right-listing {
    margin-top: 10px;
  }
}
