:root {
  --cn-rose: #C7A2A6;
  --cn-beige: #FFFDF8;
  --cn-bordeaux: #441515;
  --cn-or: #C6A76D;
}

.notif-page {
  max-width: 100%; margin: 0 auto; padding: 40px 20px 80px;
  color: #2b2b2b; font-family: var(--font-main);
}
.notif-page__title { font-size: 1.69rem; letter-spacing: 1px; margin-bottom: 8px; }
.notif-page__intro { font-size: 1rem; color: #555; margin-bottom: 30px; }

.notif-panel { background: #FBF4EE; border: 1px solid #EDDFD3; }

.notif-tabs {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 18px 24px; border-bottom: 1px solid #EDDFD3;
}
.notif-tab {
  padding: 7px 16px; border: 1px solid #d8cdc4; border-radius: 20px;
  font-size: .94rem; letter-spacing: .5px; color: #555; text-decoration: none;
}
.notif-tab--active, .notif-tab:hover { background: var(--cn-bordeaux); color: var(--cn-beige); border-color: var(--cn-bordeaux); }
.notif-tabs__mark-all { margin-left: auto; }
.notif-mark-all {
  background: none; border: none; text-decoration: underline; cursor: pointer;
  font-size: .94rem; color: #555; font-family: inherit;
}
.notif-mark-all:hover { color: var(--cn-bordeaux); }

.notif-list { padding: 10px 24px 24px; }
.notif-empty { text-align: center; padding: 40px 0; color: #888; font-size: 1rem; }

.notif-row {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 20px 4px; border-bottom: 1px solid #EDDFD3;
}
.notif-row:last-child { border-bottom: none; }
.notif-row--unread { background: #F7EDE9; margin: 0 -12px; padding: 20px 16px; border-radius: 2px; }
.notif-row__category {
  width: 100px; flex-shrink: 0; font-size: .88rem; letter-spacing: 1px;
  text-transform: uppercase; color: var(--cn-or); padding-top: 2px;
}
.notif-row__body { flex: 1; }
.notif-row__title { display: block; font-size: 1rem; color: #2b2b2b; text-decoration: none; margin-bottom: 4px; }
a.notif-row__title:hover { color: var(--cn-bordeaux); }
.notif-row__message { font-size: 1rem; color: #777; margin: 0; }
.notif-row__date { font-size: .94rem; color: #999; white-space: nowrap; padding-top: 2px; }

@media (max-width: 700px) {
  .notif-row { flex-direction: column; gap: 6px; }
  .notif-row__date { order: -1; }
}