/* =================================================
   LISTING / OFFERS GRID
================================================= */

.listing-grid,
.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 24px;
}


/* =================================================
   CARD
================================================= */

.listing-card,
.offer-card {
  position: relative;
  display: flex;
  flex-direction: column;

  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;

  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);

  transition:
    transform .15s ease,
    box-shadow .15s ease;
}

.listing-card:hover,
.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}


/* =================================================
   IMAGE – FIXED HEIGHT (NO JUMPING)
================================================= */

.listing-thumb,
.listing-card img,
.offer-card img {
  width: 100%;
  height: 180px;            /* ⬅️ KLÍČOVÉ */
  object-fit: cover;
  display: block;
  background: #eaeaea;
}


/* =================================================
   SKELETON LOADING (OBRÁZKY)
================================================= */

.listing-card img:not([src]),
.offer-card img:not([src]) {
  background: linear-gradient(
    100deg,
    #eee 40%,
    #f5f5f5 50%,
    #eee 60%
  );
  background-size: 200% 100%;
  animation: skeleton 1.2s ease-in-out infinite;
}

@keyframes skeleton {
  to {
    background-position: -200% 0;
  }
}


/* =================================================
   BADGE
================================================= */

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;

  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 700;

  border-radius: 999px;
  background: var(--primary);
  color: var(--dark);

  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  pointer-events: none;

  transition: transform .2s ease;
}

/* mikro animace */
.listing-card:hover .badge,
.offer-card:hover .badge {
  transform: scale(1.05);
}

/* barvy dle sekce */
.badge.sluzby { background: #90caf9; }
.badge.prebytky { background: #a5d6a7; }
.badge.pujcovna { background: #ffe082; }


/* =================================================
   CONTENT
================================================= */

.listing-card h3,
.offer-card h3 {
  margin: 14px 14px 6px;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--dark);
}

.listing-card p,
.offer-card p {
  margin: 0 14px 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

/* typ nabídky */
.offer-card strong {
  font-size: 0.85rem;
  font-weight: 700;
}

/* poslední řádek */
.listing-card p:last-of-type,
.offer-card p:last-of-type {
  margin-bottom: 14px;
}


/* =================================================
   DATE (HOMEPAGE)
================================================= */

.listing-card .date {
  margin-top: auto;
  padding: 10px 14px 14px;
  font-size: 0.75rem;
  color: var(--muted);
}


/* =================================================
   EMPTY STATE
================================================= */

.listing-grid > p,
.offers-grid > p {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}


/* =================================================
   MOBILE TUNING
================================================= */

@media (max-width: 480px) {
  .listing-thumb,
  .listing-card img,
  .offer-card img {
    height: 160px;
  }

  .listing-card h3,
  .offer-card h3 {
    font-size: 0.95rem;
  }
}
