.entity-bulletin-block {
  margin: 20px 0 28px;
  padding: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 14px;
  background: #fff;
}
.entity-bulletin-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.entity-bulletin-block__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
}
.entity-bulletin-create-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(37, 99, 235, 0.35);
  background: #eff6ff;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  cursor: pointer;
  line-height: 1.2;
}
.entity-bulletin-create-btn:hover {
  background: #dbeafe;
  color: #1e40af;
}
.entity-bulletin-create-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}
.entity-bulletin-list {
  display: grid;
  gap: 12px;
}
.entity-bulletin-empty {
  margin: 0;
  font-size: 0.95rem;
}
.entity-bulletin-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}
.entity-bulletin-card__cover {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
}
.entity-bulletin-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.entity-bulletin-card__cover-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
}
.entity-bulletin-card__body {
  min-width: 0;
  flex: 1 1 auto;
}
.entity-bulletin-card__author {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.entity-bulletin-card__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: #cbd5e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #334155;
  flex: 0 0 auto;
}
.entity-bulletin-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.entity-bulletin-card__author-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.92rem;
}
.entity-bulletin-card__date {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  background: #e2e8f0;
  border-radius: 999px;
  padding: 2px 8px;
}
.entity-bulletin-card__text {
  margin: 0 0 10px;
  white-space: pre-wrap;
  color: #1e293b;
  line-height: 1.45;
}
.entity-bulletin-card__reply {
  font-weight: 700;
}

/* CTA в hero */
.pub-hero-cta-link--bulletin .pub-hero-cta-title {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pub-hero-cta-bulletin-icon {
  display: inline-flex;
  width: 1.1em;
  height: 1.1em;
}

@media (max-width: 640px) {
  .entity-bulletin-card {
    flex-direction: column;
  }
  .entity-bulletin-card__cover {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    flex-basis: auto;
  }
}
