/* ==========================================================================
   BAR ASSOCIATION & MEMBER DIRECTORY STYLES (OVERFLOW-SAFE, PRODUCTION READY)
   ========================================================================== */

.notice-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.notice-item-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  padding: 0.8rem;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.notice-item-card.pinned {
  border-left: 4px solid var(--accent-gold-500);
}

.notice-top-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  gap: 0.4rem;
}

.notice-date-str {
  font-size: 0.68rem;
  color: var(--text-muted);
}

.notice-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary-900);
  line-height: 1.35;
  margin-bottom: 0.3rem;
  word-break: break-word;
  overflow-wrap: break-word;
}

.notice-body-text {
  font-size: 0.76rem;
  color: var(--text-main);
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: break-word;
}

.notice-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.7rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* Member Directory List */
.member-directory-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.member-item-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  padding: 0.65rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-xs);
  gap: 0.5rem;
}

.member-card-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex: 1;
}

.member-avatar {
  width: 34px;
  height: 34px;
  background: var(--primary-50);
  color: var(--primary-900);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.member-name {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.member-bar-id {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--accent-gold-700);
  font-weight: 700;
}

.member-court-tag {
  font-size: 0.68rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
