.notice {
  position: relative;
  grid-template-columns: 35px minmax(0, 1fr) auto;
  padding: 12px 12px 12px 24px;
}

.notice-unread-dot {
  position: absolute;
  left: 9px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  transform: translateY(-50%);
  box-shadow: 0 0 0 3px #fff;
}

.notice-copy {
  min-width: 0;
}

.notice-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.notice-actions small {
  color: var(--muted);
  white-space: nowrap;
}

.notice-detail-type {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notice-detail-type small {
  color: var(--muted);
}

.notice-detail-message {
  margin: 14px 0 4px;
  font-size: 14px;
  line-height: 1.8;
  white-space: pre-wrap;
}

.style-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-height: none;
}

@media (max-width: 900px) {
  .style-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
