.pz-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 14px;
}

.pz-header {
  margin-bottom: 14px;
}

.pz-title {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.2;
}

.pz-sub {
  color: #6b7280;
}

.pz-empty {
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fafafa;
}

/* Login form */
.pz-login form {
  max-width: 420px;
}

.pz-login label {
  display: block;
  font-weight: 700;
  margin: 10px 0 6px;
}

.pz-login input[type="text"],
.pz-login input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.pz-login input[type="submit"] {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #111827;
  background: #111827;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.pz-login-help a {
  color: #111827;
}

.pz-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 1024px) {
  .pz-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pz-grid { grid-template-columns: 1fr; }
}

.pz-card {
  display: block;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform .12s ease, box-shadow .12s ease;
}

.pz-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.06);
}

.pz-card-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  background-color: #f3f4f6;
}

.pz-card-img--empty::after{
  content: "Sin imagen";
  display: grid;
  place-items: center;
  height: 100%;
  color: #6b7280;
}

.pz-card-body {
  padding: 12px;
}

.pz-card-title {
  font-weight: 800;
  color: #111827;
}

.pz-breadcrumb {
  margin-bottom: 10px;
}

.pz-breadcrumb a {
  color: #111827;
  text-decoration: none;
}

.pz-hero img{
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 10px 0 14px;
}

.pz-assets {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.pz-asset {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fff;
}

@media (max-width: 640px) {
  .pz-asset { grid-template-columns: 1fr; }
}

.pz-asset-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.pz-file-badge {
  width: 100%;
  height: 110px;
  border-radius: 12px;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: #374151;
}

.pz-asset-name {
  font-weight: 900;
  color: #111827;
  margin-bottom: 4px;
}

.pz-asset-mime {
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 10px;
}

.pz-asset-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 12px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #111827;
}

.pz-btn--ghost {
  background: #fff;
  color: #111827;
}
