/* Versteckte Agenten-Garderobe im Film-Chat */
.chat-agent-gallery-msg .chat-bubble{
  width:min(920px,100%);
  max-width:min(920px,100%);
  padding:0;
  overflow:hidden;
}
.chat-agent-gallery{
  min-width:0;
  background:linear-gradient(145deg,rgba(34,18,24,.98),rgba(12,13,19,.99));
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  overflow:hidden;
}
.chat-agent-gallery-head{
  padding:18px 18px 15px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.chat-agent-gallery-head>span{
  display:block;
  margin-bottom:5px;
  color:#ff2638;
  font-size:.7rem;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.chat-agent-gallery-head>strong{
  display:block;
  color:#fff;
  font-size:1.25rem;
  line-height:1.2;
}
.chat-agent-gallery-head p{
  margin:7px 0 0;
  color:rgba(255,255,255,.7);
  font-size:.88rem;
  line-height:1.5;
}
.chat-agent-gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:10px;
  padding:14px;
}
.chat-agent-gallery-card{
  position:relative;
  display:grid;
  grid-template-columns:54px minmax(0,1fr) auto;
  align-items:center;
  gap:11px;
  width:100%;
  min-width:0;
  padding:10px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:15px;
  background:rgba(255,255,255,.045);
  color:#fff;
  text-align:left;
  cursor:pointer;
  transition:border-color .18s ease,background .18s ease,transform .18s ease;
}
.chat-agent-gallery-card:hover,
.chat-agent-gallery-card:focus-visible{
  border-color:rgba(255,38,56,.72);
  background:rgba(255,255,255,.085);
  transform:translateY(-2px);
}
.chat-agent-gallery-card:disabled{
  opacity:.62;
  cursor:wait;
  transform:none;
}
.chat-agent-gallery-card.is-current{
  border-color:rgba(255,38,56,.82);
  background:rgba(255,38,56,.11);
}
.chat-agent-gallery-avatar{
  display:block;
  width:54px;
  height:54px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.18);
  border-radius:50%;
  background:#151721;
}
.chat-agent-gallery-avatar img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}
.chat-agent-gallery-copy{
  display:block;
  min-width:0;
}
.chat-agent-gallery-copy strong,
.chat-agent-gallery-copy em{
  display:block;
  overflow:hidden;
  text-overflow:ellipsis;
}
.chat-agent-gallery-copy strong{
  color:#fff;
  font-size:.96rem;
  line-height:1.25;
  white-space:nowrap;
}
.chat-agent-gallery-copy em{
  margin-top:3px;
  color:rgba(255,255,255,.64);
  font-size:.75rem;
  font-style:normal;
  line-height:1.25;
  white-space:normal;
}
.chat-agent-gallery-arrow{
  color:#ff2638;
  font-size:1.45rem;
  line-height:1;
}
.chat-agent-gallery-current{
  padding:4px 7px;
  border-radius:999px;
  background:#ff2638;
  color:#fff;
  font-size:.63rem;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
@media (max-width:640px){
  .chat-agent-gallery-msg .chat-bubble{width:100%;max-width:100%;}
  .chat-agent-gallery-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;padding:10px;}
  .chat-agent-gallery-card{grid-template-columns:44px minmax(0,1fr);gap:9px;padding:9px;}
  .chat-agent-gallery-avatar{width:44px;height:44px;}
  .chat-agent-gallery-arrow,.chat-agent-gallery-current{grid-column:2;justify-self:start;}
  .chat-agent-gallery-current{margin-top:1px;}
}
@media (max-width:390px){
  .chat-agent-gallery-grid{grid-template-columns:1fr;}
  .chat-agent-gallery-card{grid-template-columns:48px minmax(0,1fr) auto;}
  .chat-agent-gallery-avatar{width:48px;height:48px;}
  .chat-agent-gallery-arrow,.chat-agent-gallery-current{grid-column:auto;justify-self:end;}
}
