.comm-feed{
  display:flex;
  flex-direction:column;
  gap:16px;
  max-width:720px;
  margin:0 auto;
}

.comm-loading{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text-faint);
  font-size:14px;
  padding:32px 0;
}
.comm-loading__icon{
  width:18px;height:18px;
  stroke:var(--text-faint);
  fill:none;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
  animation:commSpin 2s linear infinite;
}
@keyframes commSpin{to{transform:rotate(360deg);}}

.comm-empty{
  text-align:center;
  padding:64px 24px;
  color:var(--text-faint);
  font-size:14px;
}
.comm-empty svg{
  width:40px;height:40px;
  stroke:var(--text-faint);
  fill:none;
  stroke-width:1.5;
  stroke-linecap:round;
  stroke-linejoin:round;
  opacity:.5;
  display:block;
  margin:0 auto 14px;
}

.comm-card{
  display:flex;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(61,169,255,.09);
  border-radius:14px;
  overflow:hidden;
  transition:border-color .2s,box-shadow .2s;
  animation:commCardIn .3s ease both;
}
.comm-card:hover{
  border-color:rgba(61,169,255,.18);
  box-shadow:0 8px 32px rgba(0,0,0,.28);
}
@keyframes commCardIn{
  from{opacity:0;transform:translateY(10px);}
  to{opacity:1;transform:translateY(0);}
}

.comm-card__bar{
  width:4px;
  background:var(--embed-color,var(--accent));
  flex-shrink:0;
}

.comm-card__body{
  padding:18px 20px;
  flex:1;
  min-width:0;
}

.comm-card__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.comm-card__author{
  display:flex;
  align-items:center;
  gap:7px;
  font-size:12.5px;
  font-weight:700;
  color:var(--embed-color,var(--accent));
}
.comm-card__author-dot{
  width:7px;height:7px;
  border-radius:50%;
  background:var(--embed-color,var(--accent));
  flex-shrink:0;
}

.comm-card__date{
  font-size:11.5px;
  color:var(--text-faint);
  white-space:nowrap;
}

.comm-card__title{
  font-family:var(--font-display);
  font-size:17px;
  font-weight:700;
  color:var(--text);
  margin-bottom:8px;
  line-height:1.3;
}

.comm-card__desc{
  font-size:13.5px;
  color:var(--text-dim);
  line-height:1.75;
  white-space:pre-wrap;
}

.comm-card__image{
  width:100%;
  max-height:420px;
  object-fit:cover;
  border-radius:10px;
  margin-top:14px;
  display:block;
  background:rgba(0,0,0,.3);
}

.comm-card__video{
  width:100%;
  max-height:420px;
  border-radius:10px;
  margin-top:14px;
  display:block;
  background:#000;
  outline:none;
}
.comm-card__video::-webkit-media-controls-panel{
  background:rgba(13,10,20,.92);
}

.comm-card__iframe{
  width:100%;
  aspect-ratio:16/9;
  border-radius:10px;
  border:none;
  margin-top:14px;
  display:block;
  background:#000;
}

@media(max-width:600px){
  .comm-card__body{padding:14px 15px;}
  .comm-card__title{font-size:15px;}
}
