/**
 * Notifications page — card-style list, icon circles, clear hierarchy
 */
.notifications-page-header {
  margin-bottom: var(--app-space-lg);
  padding: 0 var(--app-space) var(--app-space-md);
}
.notifications-page-header .page-title {
  margin-bottom: 4px;
}
.notifications-page-header .page-subtitle {
  margin: 0;
  font-size: var(--app-text-sm);
  color: var(--app-text-secondary);
  line-height: 1.5;
}

.notifications-list {
  padding: 0 var(--app-space) var(--app-space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--app-space-md);
}

.notification-item {
  display: flex;
  align-items: flex-start;
  gap: var(--app-space-md);
  padding: var(--app-space-md) var(--app-space);
  background: var(--app-surface);
  border: 1px solid var(--app-border-soft);
  border-radius: var(--app-radius-lg);
  box-shadow: var(--app-shadow);
  transition: border-color var(--app-duration-fast) var(--app-ease),
    box-shadow var(--app-duration-fast) var(--app-ease),
    transform var(--app-duration-fast) var(--app-ease);
}
.notification-item:hover {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: var(--app-shadow-card);
}
.notification-item:first-child {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, var(--app-surface) 50%);
  border-color: rgba(99, 102, 241, 0.15);
}

.notification-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--app-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.notification-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.notification-icon-emoji {
  font-size: 1.5rem;
  line-height: 1;
}

.notification-body {
  flex: 1;
  min-width: 0;
}
.notification-body strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--app-text);
  margin-bottom: 4px;
  line-height: 1.3;
}
.notification-body p {
  font-size: var(--app-text-sm);
  color: var(--app-text-secondary);
  line-height: 1.5;
  margin: 0;
}
.notification-time {
  display: block;
  font-size: var(--app-text-xs);
  color: var(--app-text-muted);
  margin-top: 6px;
}

@media (min-width: 600px) {
  .notifications-list {
    max-width: 560px;
    margin: 0 auto;
  }
}
