/* ======================================================
   lista-ogloszen.css
====================================================== */

/* ======================
   TYPOGRAFIA – SAFE
====================== */

.ads-card .listing-body h3 {
  word-break: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ======================
   LISTA
====================== */

.ads-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ======================
   KARTA (MOBILE FIRST)
====================== */

.ads-card {
  position: relative;

  background: #ffffff;
  border-radius: 14px;
  padding: 14px;

  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* ======================
   ZDJĘCIE
====================== */

.listing-image img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}

/* ======================
   TREŚĆ
====================== */

.listing-body {
  display: block;
  	color: #ffcc70;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* ======================
   STATUS
====================== */

.ads-status {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
}

.ads-status-on,
.ads-status-off {
  display: inline-block;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.ads-status-on {
  background: #e6f4ea;
  color: #1e7e34;
}

.ads-status-off {
  background: #fdecea;
  color: #b02a37;
}

/* ======================
   OPIS
====================== */

.ads-description {
  margin-top: 10px;
  background: #f8fafc;
  padding: 12px;
  border-radius: 8px;
  line-height: 1.5;
    display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;   /* 👈 tylko LINIE */
  overflow: hidden;
}


/* ======================
   AKCJE (JEDYNY GRID)
====================== */

.ads-card-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.ads-card-actions .ads-btn {
  width: 100%;
  padding: 12px 4px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 10px;
  white-space: nowrap;
}

/* ======================
   PRZYCISKI
====================== */

.ads-btn {
  text-align: center;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease;
}

.ads-btn.edit   { background: #eef2ff; color: #003f9a; }
.ads-btn.close  { background: #ffe69a; }
.ads-btn.active { background: #d1fae5; color:#065f46; }
.ads-btn.delete { background: #fee2e2; color:#b30000; }

.ads-btn:hover {
  filter: brightness(0.92);
}

.ads-btn:disabled {
  cursor: not-allowed;
  opacity: .6;
}

/* ======================================================
   DESKTOP / TABLET+
====================================================== */

@media (min-width: 768px) {

  .ads-card {
    padding: 16px;
  }

  .listing-image img {
    max-height: 220px;
  }

  .ads-card-actions {
    gap: 10px;
  }

  .ads-card-actions .ads-btn {
    font-size: 14px;
    padding: 14px 6px;
  }
}
