/* Cards layout */
.pb-cards{display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px}
@media (max-width:780px){ .pb-cards{grid-template-columns:1fr} }

.pb-card{border:1px solid #eee; border-radius:12px; padding:12px; background:#fff; box-shadow:0 1px 4px rgba(0,0,0,.04)}
.pb-card__head{display:flex; gap:8px; margin-bottom:6px}
.pb-badge{display:inline-block; padding:4px 8px; border-radius:999px; font-size:12px; border:1px solid #ddd; background:#fafafa}
.pb-badge--denom{font-weight:700; border-color:#c8d8ff; background:#eef4ff}
.pb-card__title{margin:4px 0; font-size:16px}
.pb-card__city{color:#666; font-weight:400}
.pb-card__date{display:block; color:#444; margin-bottom:10px}

.pb-card__actions{display:flex; flex-wrap:wrap; gap:8px}
.pb-btn{display:inline-block; padding:8px 12px; border-radius:8px; text-decoration:none; border:1px solid #ddd}
.pb-btn--primary{background:#0b63ce; color:#fff; border-color:#0b63ce}
.pb-btn--ghost{background:#fff; color:#0b63ce}
