.apb-public-shell {
  --apb-p: #0c5444;
  --apb-fog: #f0faf5;
  --apb-bdr: rgba(12, 84, 68, 0.10);
}

.apb-public-shell .pub-card {
  border: 1.5px solid var(--apb-bdr);
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(12, 84, 68, 0.08), 0 12px 32px rgba(12, 84, 68, 0.06);
}

.apb-list-item {
  display: block;
  background: #fff;
  border: 1.5px solid var(--apb-bdr);
  border-radius: 22px;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.apb-list-item:hover {
  transform: translateY(-3px);
  border-color: rgba(12, 84, 68, .24);
  box-shadow: 0 12px 28px rgba(12, 84, 68, .12);
}
.apb-list-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.apb-list-metric {
  min-width: 180px;
  background: var(--apb-fog);
  border: 1px solid var(--apb-bdr);
  border-radius: 12px;
  padding: 8px 12px;
}
.apb-list-metric .k {
  display: block;
  font-size: 11px;
  color: #5e8a80;
}
.apb-list-metric .v {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #0c1c18;
  margin-top: 2px;
}

.apb-total-head {
  background: linear-gradient(135deg, #0c5444 0%, #0d6652 100%);
  color: #fff;
}
.apb-total-head h2,
.apb-total-head p {
  color: inherit;
}
.apb-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.apb-summary-card {
  border: 1px solid var(--apb-bdr);
  border-radius: 14px;
  padding: 14px;
  background: #fff;
}
.apb-summary-card .k {
  font-size: 11px;
  color: #5e8a80;
  display: block;
}
.apb-summary-card .v {
  font-size: 18px;
  color: #0c1c18;
  font-weight: 800;
  display: block;
  margin-top: 3px;
}
.apb-summary-card .s {
  font-size: 11px;
  color: #64748b;
  display: block;
  margin-top: 4px;
}

.apb-block-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0c1c18;
}

@media (max-width: 1024px) {
  .apb-summary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .apb-summary-grid { grid-template-columns: 1fr; }
  .apb-list-item { padding: 16px 14px; border-radius: 16px; }
}

