.bv-notice-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: start;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bv-border-soft);
}

.bv-notice-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.bv-notice-item__title {
  position: relative;
  padding-left: 14px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--bv-text);
  transition: var(--bv-transition);
}

.bv-notice-item__title::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bv-primary);
}

.bv-notice-item__title:hover {
  color: var(--bv-primary);
  transform: translateX(1px);
}

.bv-notice-item__date {
  font-size: 12px;
  color: var(--bv-text-muted);
  white-space: nowrap;
}