.onea-dl-container{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap:16px;
  justify-content:center;
  align-content:start;
  max-width:1100px;
  margin:0 auto;
}
.onea-dl-card{
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:12px;
  border:1px solid #e5e7eb;
  border-radius:12px;
  box-shadow:0 1px 4px rgba(0,0,0,.06);
  background:#fff;
}
/* Override image container to 5:7 ratio (portrait) with max-height 150px */
.onea-dl-img {
  aspect-ratio: 2 / 3 !important; /* new ratio */
  max-height: 180px !important;
  width: 100%;
  max-width: 150px;
  overflow: hidden;
  border-radius: 8px;
  background: #f3f4f6;
}

.onea-dl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.onea-dl-role{
  margin-top:10px;
  font-weight:700;
  font-size:0.95rem;
}
.onea-dl-name{
  margin-top:6px;
  font-size:0.95rem;
  line-height:1.2;
}
.onea-dl-name a{
  text-decoration:none;
  border-bottom:1px dotted transparent;
}
.onea-dl-name a:hover{
  border-color: currentColor;
}
.onea-dl-copy{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-left:6px;
  width:22px;
  height:22px;
  border-radius:6px;
  border:1px solid #e5e7eb;
  cursor:pointer;
  position:relative;
}
.onea-dl-copy:hover{ background:#f9fafb; }
.onea-dl-copied{
  position:absolute;
  top:-26px;
  background:#111827;
  color:#fff;
  padding:2px 6px;
  border-radius:4px;
  font-size:11px;
  white-space:nowrap;
  opacity:0;
  transform:translateY(4px);
  pointer-events:none;
  transition:opacity .15s ease, transform .15s ease;
}
.onea-dl-copy.show .onea-dl-copied{
  opacity:1;
  transform:translateY(0);
}
