.finn-ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.finn-ad-card {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.finn-ad-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.finn-ad-image-wrap {
  position: relative;
  width: 100%;
  height: 200px;
}

.finn-ad-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.finn-ad-price {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 106, 255, 0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 0.85rem;
  line-height: 1.2;
}

.finn-ad-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.finn-ad-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px 0;
  color: #1a202c;
  line-height: 1.3;
}

.finn-ad-location {
  font-size: 0.85rem;
  color: #718096;
  margin: 0;
}
