.pdc-public-decks-page{
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 18px 64px;
}

.pdc-public-hero{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  margin-bottom:24px;
}

.pdc-kicker{
  margin:0 0 6px;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  opacity:.75;
}

.pdc-public-hero h1{
  margin:0;
  font-size:clamp(32px, 5vw, 56px);
  line-height:1;
}

.pdc-public-hero p{
  max-width:680px;
  opacity:.82;
}

.pdc-public-controls{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  padding:16px;
  margin-bottom:14px;
}

.pdc-public-filter-form{
  display:grid;
  grid-template-columns: minmax(220px, 1fr) 180px 160px 160px auto auto;
  gap:12px;
  align-items:end;
}

.pdc-public-filter-form label span{
  display:block;
  font-size:12px;
  opacity:.75;
  margin-bottom:5px;
}

.pdc-public-filter-form input,
.pdc-public-filter-form select{
  width:100%;
  min-height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.28);
  color:inherit;
  padding:9px 12px;
}

.pdc-public-filter-form button,
.pdc-clear{
  min-height:42px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.16);
  background:var(--button-bg, rgba(255,255,255,.14));
  color:var(--button-text, #fff);
  padding:10px 14px;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.pdc-clear{
  background:transparent;
  color:inherit;
}

.pdc-future-filter{
  opacity:.55;
}

.pdc-public-summary{
  opacity:.72;
  font-size:14px;
  margin-bottom:16px;
}

.pdc-public-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(270px, 1fr));
  gap:18px;
}

.pdc-public-card{
  position:relative;
  min-height:390px;
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.1);
  background:#0b0d10;
  box-shadow:0 16px 34px rgba(0,0,0,.28);
  isolation:isolate;
}

.pdc-public-card::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:2;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.76) 0%,
    rgba(0,0,0,.58) 36%,
    rgba(0,0,0,.18) 70%,
    rgba(0,0,0,.04) 100%
  );
  pointer-events:none;
}

.pdc-card-image{
  position:absolute;
  inset:0;
  z-index:1;
  background-size:cover;
  background-position:50% 30%;
  transform:scale(1.03);
  transition:transform .24s ease, filter .24s ease;
}

.pdc-public-card:hover .pdc-card-image{
  transform:scale(1.07);
  filter:saturate(1.08) contrast(1.05);
}

.pdc-card-badges{
  position:absolute;
  z-index:4;
  top:12px;
  left:12px;
  right:12px;
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.pdc-badge{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.42);
  border:1px solid rgba(255,255,255,.16);
  color:#fff;
  font-size:11px;
  font-weight:700;
  backdrop-filter:blur(6px);
}

.pdc-badge--strategy{
  background:rgba(59,130,246,.28);
  border-color:rgba(59,130,246,.5);
}

.pdc-card-content{
  position:absolute;
  z-index:3;
  left:16px;
  right:16px;
  bottom:16px;
  color:#fff;
  text-shadow:0 2px 10px rgba(0,0,0,.65);
}

.pdc-card-eyebrow{
  font-size:12px;
  opacity:.86;
  margin-bottom:5px;
}

.pdc-card-content h2{
  margin:0 0 8px;
  font-size:22px;
  line-height:1.1;
}

.pdc-card-meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  font-size:12px;
  opacity:.82;
  margin-bottom:10px;
}

.pdc-card-tags{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  margin-bottom:12px;
}

.pdc-card-tags span{
  font-size:11px;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.12);
}

.pdc-card-actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.pdc-card-actions a{
  flex:1;
  min-width:110px;
  text-align:center;
  text-decoration:none;
  color:#fff;
  border-radius:12px;
  padding:9px 10px;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(5px);
}

.pdc-card-actions a:hover{
  background:rgba(255,255,255,.2);
}

.pdc-empty{
  padding:38px 22px;
  border-radius:18px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  text-align:center;
}

.pdc-pagination{
  display:flex;
  justify-content:center;
  gap:8px;
  flex-wrap:wrap;
  margin-top:28px;
}

.pdc-pagination .page-numbers{
  padding:8px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  color:inherit;
  text-decoration:none;
}

.pdc-pagination .current{
  background:rgba(255,255,255,.16);
}

@media (max-width: 860px){
  .pdc-public-filter-form{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 560px){
  .pdc-public-filter-form{
    grid-template-columns:1fr;
  }

  .pdc-public-card{
    min-height:360px;
  }
}