/* Center wrapper */
.ae-center{
  width: 100%;
  display: flex !important;
  justify-content: center !important;
  margin-top: 14px;
}

/* Author/Editor line */
.ae-line{
  display: inline-flex !important;
  align-items: center;
  justify-content: center !important;
  flex-wrap: wrap;
  gap: 10px;

  /* запрет растягивания */
  flex: 0 0 auto !important;
  width: auto !important;

  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.ae-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.75);
}

.ae-avatar{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 40px;
  border: 1px solid rgba(0,0,0,0.14);
  background: rgba(255,255,255,0.6);
}

.ae-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ae-meta{
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

.ae-label{
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.70;
}

.ae-name{
  font-size: 14px;
  font-weight: 700;
}

.ae-sep{
  opacity: 0.55;
  user-select: none;
}

/* mobile */
@media (max-width: 576px){
  .ae-line{
    border-radius: 16px;
    padding: 10px;
  }
  .ae-sep{ display: none; }
  .ae-item{
    width: 100%;
    justify-content: flex-start;
  }
}

.ae-date .ae-name{
  font-weight: 600;
  opacity: 0.85;
}