
.pss-wrap {
  --pss-blue: #1E346E;
  --pss-gold: #C7AD66;
  --pss-border: #d7dfef;
  --pss-border-strong: #c3cee6;
  --pss-text: #1d2942;
  --pss-muted: #5a6782;
  --pss-bg: #ffffff;
  --pss-surface: #f8f9fc;
  font-family: inherit;
  color: var(--pss-text);
}
.pss-wrap * { box-sizing: border-box; }
.pss-header {
  background: linear-gradient(135deg, rgba(30,52,110,.06), rgba(199,173,102,.14));
  border: 1px solid var(--pss-border);
  border-left: 4px solid var(--pss-gold);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.pss-header h2 {
  margin: 0 0 8px;
  color: var(--pss-blue);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.12;
}
.pss-header p {
  margin: 0;
  color: var(--pss-text);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 820px;
}
.pss-alert {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(199,173,102,.16);
  color: var(--pss-blue);
  font-weight: 600;
}
.pss-controls {
  display: grid;
  grid-template-columns: minmax(240px,2fr) minmax(170px,1fr) minmax(220px,1fr);
  gap: 12px;
  margin: 0 0 14px;
}
.pss-search,
.pss-filter {
  width: 100%;
  min-height: 50px;
  border: 1px solid #c8d3ea;
  border-radius: 12px;
  padding: 0 14px;
  background: #fff;
  color: var(--pss-text);
  font-size: 1rem;
}
.pss-search:focus,
.pss-filter:focus {
  outline: none;
  border-color: var(--pss-blue);
  box-shadow: 0 0 0 3px rgba(30,52,110,.10);
}
.pss-results-count {
  margin: 0 0 12px;
  color: var(--pss-muted);
  font-size: .98rem;
}
.pss-list {
  border: 1px solid var(--pss-border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.pss-list-head,
.pss-item {
  display: grid;
  grid-template-columns: minmax(220px, 2.4fr) .65fr 1fr 1fr .55fr 1fr .8fr;
}
.pss-list-head {
  background: var(--pss-blue);
  color: #fff;
  font-weight: 700;
}
.pss-list-head > div {
  padding: 16px 14px;
  border-right: 1px solid rgba(255,255,255,.18);
}
.pss-list-head > div:last-child { border-right: 0; }
.pss-list-body { background: #fff; }
.pss-item {
  align-items: stretch;
  border-top: 1px solid #e7edf8;
}
.pss-item:first-child { border-top: 0; }
.pss-item:nth-child(even) { background: #fbfcff; }
.pss-item:hover { background: rgba(199,173,102,.08); }
.pss-cell {
  padding: 14px;
  border-right: 1px solid #e7edf8;
  min-width: 0;
}
.pss-cell:last-child { border-right: 0; }
.pss-label {
  display: none;
  color: var(--pss-blue);
  font-weight: 700;
  font-size: .86rem;
  margin-bottom: 5px;
}
.pss-value {
  display: block;
  color: var(--pss-text);
  font-size: 1rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.pss-street .pss-value { font-weight: 600; }
.pss-badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30,52,110,.10);
  color: var(--pss-blue);
  font-weight: 700;
  font-size: .92rem;
}
.pss-badge-warning {
  background: rgba(199,173,102,.22);
  color: #6d5208;
}
@media (max-width: 1024px) {
  .pss-list-head,
  .pss-item {
    grid-template-columns: minmax(180px, 2fr) .65fr 1fr 1fr .65fr .95fr .85fr;
  }
}
@media (max-width: 900px) {
  .pss-controls { grid-template-columns: 1fr; }
  .pss-list {
    border: 0;
    background: transparent;
  }
  .pss-list-head { display: none; }
  .pss-list-body {
    display: grid;
    gap: 14px;
  }
  .pss-item {
    display: block;
    background: #fff !important;
    border: 1px solid var(--pss-border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 4px 14px rgba(23,32,51,.04);
  }
  .pss-cell {
    padding: 0;
    border: 0;
    margin-bottom: 12px;
  }
  .pss-cell:last-child { margin-bottom: 0; }
  .pss-label { display: block; }
}
