.gc-dop-archive{
  --accent:#058B8C;
  --accent-dark:#046f70;
  --text:#20313a;
  --muted:#667985;
  --border:#dbe7e8;
  --soft:#f6fbfb;
  --white:#fff;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
}
.gc-dop-header{
  background:linear-gradient(135deg,var(--accent) 0%, var(--accent-dark) 100%);
  color:#fff;
  padding:28px;
  border-radius:22px;
  margin-bottom:20px;
  box-shadow:0 14px 34px rgba(5,139,140,.14);
}
.gc-dop-header h2{
  margin:0 0 8px;
  font-size:32px;
  line-height:1.1;
}
.gc-dop-header p{
  margin:0;
  font-size:16px;
  line-height:1.7;
  opacity:.95;
}
.gc-dop-filters{
  display:grid;
  grid-template-columns:220px 280px minmax(260px,1fr);
  gap:14px;
  margin-bottom:22px;
  align-items:end;
}
.gc-dop-filter label{
  display:block;
  margin-bottom:8px;
  font-size:14px;
  font-weight:700;
  color:var(--accent);
}
.gc-dop-filter select,
.gc-dop-filter input{
  width:100%;
  min-height:50px;
  padding:0 14px;
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  font-size:15px;
}
.gc-dop-card-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.gc-dop-card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:20px;
  padding:20px;
  box-shadow:0 10px 28px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  min-height:100%;
}
.gc-dop-card-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin-bottom:14px;
}
.gc-dop-chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--accent);
  color:#fff;
  padding:7px 12px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.5px;
}
.gc-dop-year{
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}
.gc-dop-card h3{
  margin:0 0 14px;
  font-size:22px;
  line-height:1.25;
  color:var(--accent);
  word-break:break-word;
}
.gc-dop-meta{
  display:grid;
  gap:10px;
}
.gc-dop-meta div{
  background:var(--soft);
  border:1px solid var(--border);
  padding:12px 14px;
  border-radius:14px;
}
.gc-dop-meta strong{
  display:block;
  margin-bottom:4px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.5px;
  color:var(--accent);
}
.gc-dop-meta span{
  display:block;
  font-size:15px;
  line-height:1.6;
}
.gc-dop-actions{
  margin-top:auto;
  padding-top:16px;
}
.gc-dop-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:12px 18px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  border-radius:999px;
  font-weight:700;
  transition:.25s ease;
}
.gc-dop-btn:hover{
  background:var(--accent-dark);
  color:#fff;
}
.gc-dop-empty{
  background:var(--soft);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  text-align:center;
  color:var(--muted);
}
.gc-dop-results.is-loading{
  opacity:.65;
  pointer-events:none;
}
@media (max-width: 1100px){
  .gc-dop-card-grid{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 800px){
  .gc-dop-filters{grid-template-columns:1fr;}
  .gc-dop-card-grid{grid-template-columns:1fr;}
  .gc-dop-header h2{font-size:26px;}
}
