/* 女優ナビ（前後カード）スタイル */
/* コンテナ */
.custom-actress-nav.actress-prev-next-cards{
  display:block;
  margin: 16px 0 8px;
}

/* 2人のとき：グループ縦並び＋各グループ内も縦並び（次→前で上から） */
.custom-actress-nav.apnc-two{ display:flex; flex-direction:column; gap:16px; }
.custom-actress-nav.apnc-two .apnc-group{ display:flex; flex-direction:column; gap:12px; }

/* 1人のときも縦並びで間隔 */
.custom-actress-nav.apnc-one{ display:flex; flex-direction:column; gap:12px; }

/* カード */
.apnc-card{
  display:flex; align-items:center; gap:10px;
  padding:10px 12px;
  border:2px solid var(--apnc-border, var(--sgb-main-color, #199bd8));
  border-radius:12px;
  background:#fff; text-decoration:none;
  box-shadow:0 1px 0 rgba(0,0,0,.04);
  transition:transform .08s ease, box-shadow .12s ease, border-color .12s ease;
}
.apnc-card:hover{
  transform:translateY(-1px);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
  border-color: color-mix(in srgb, var(--sgb-main-color, #199bd8) 85%, white);
}

.apnc-thumb{ display:block; width:88px; height:88px; overflow:hidden; border-radius:10px; flex:0 0 auto; }
.apnc-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }

.apnc-meta{ display:flex; flex-direction:column; gap:4px; min-width:0; }
.apnc-label{ display:inline-block; font-size:.8rem; color:#666; }
.apnc-title{ font-weight:700; color:#111; line-height:1.35; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

@media (max-width: 480px){
  .apnc-thumb{ width:72px; height:72px; }
}
