/* Auto Listings Pro Styles */

.alp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.alp-car {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.alp-car:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.alp-car img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.alp-car h3 {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #222;
}

.alp-car p {
  margin: 6px 0;
  color: #555;
}

.alp-btn {
  display: inline-block;
  margin-top: 8px;
  background-color: #0073aa;
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.alp-btn:hover {
  background-color: #005f8d;
}
