.listing-container {
  max-width: 1000px;
  margin: 30px auto;
  font-family: 'Segoe UI', sans-serif;
  padding: 0 15px;
}

.listing-title {
  text-align: center;
  color: #57252D;
  font-weight: bold;
  margin-bottom: 30px;
  font-size: 32px;
}

.listing-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(87, 37, 45, 0.15);
  border-radius: 12px;
  transition: transform 0.3s ease;
  align-items: center;
}

.listing-card:hover {
  transform: translateY(-4px);
}

.listing-image {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(87, 37, 45, 0.3);
}

.listing-content {
  flex: 1;
}

.listing-name {
  color: #57252D;
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 600;
}

.listing-icon {
  color: #d35400;
  margin-right: 8px;
}

.listing-link {
  color: #d35400;
  text-decoration: none;
}

.listing-link:hover {
  text-decoration: underline;
}

.listing-badge {
  background-color: #d35400;
  color: #fff;
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 8px;
  display: inline-block;
}

.listing-meta {
  margin-top: 10px;
  font-style: italic;
  color: #777;
}

.listing-social a {
  color: #57252D;
  margin-right: 12px;
  font-size: 20px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.listing-social a:hover {
  color: #d35400;
}

.listing-empty {
  text-align: center;
  color: #888;
  font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .listing-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .listing-image {
    width: 100%;
    height: auto;
  }

  .listing-name {
    font-size: 20px;
  }
}
