/* Author/Editor block — agria-aefligen.ch (card style) */
.ae-card{
  margin-top: 14px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.ae-card__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,0.18);
}

.ae-card__title{
  font-weight: 800;
  letter-spacing: 0.02em;
}

.ae-card__date{
  font-size: 14px;
  opacity: 0.9;
  text-align: right;
}

.ae-card__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ae-person{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
}

.ae-person__avatar{
  width: 56px;
  height: 56px;
  border-radius: 16px; /* не круг — отличие от предыдущих */
  overflow: hidden;
  flex: 0 0 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
}

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

.ae-person__meta{
  display:flex;
  flex-direction:column;
  line-height: 1.15;
  min-width: 0;
}

.ae-person__role{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  opacity: 0.75;
}

.ae-person__name{
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* mobile */
@media (max-width: 768px){
  .ae-card__head{
    flex-direction: column;
    align-items: flex-start;
  }
  .ae-card__date{
    text-align: left;
  }
  .ae-card__grid{
    grid-template-columns: 1fr;
  }
}