.notification-page {
  --notification-primary: #2455d8;
  --notification-secondary: #7c3aed;
  --notification-accent: #38bdf8;
  --notification-ink: #101c3a;
  --notification-soft: #51607c;
  position: relative;
}

.notification-page .shell-wide {
  max-width: 1380px;
}

.notification-hero {
  max-width: 920px;
  margin: 0 auto 44px;
  padding: 50px 42px;
  text-align: center;
  border: 1px solid rgba(36, 85, 216, 0.12);
  border-radius: 36px;
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.2), transparent 34%),
    radial-gradient(circle at top right, rgba(168, 85, 247, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,255,0.99));
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.notification-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 50%;
  width: min(72%, 560px);
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 85, 216, 0), rgba(36, 85, 216, 0.22), rgba(124, 58, 237, 0));
  transform: translateX(-50%);
}

.notification-hero__eyebrow,
.notification-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(36, 85, 216, 0.1), rgba(124, 58, 237, 0.1));
  color: var(--notification-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.notification-hero__title {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5.2vw, 52px);
  line-height: 1.16;
  font-weight: 800;
  color: var(--notification-ink);
}

.notification-hero__copy {
  margin: 0 auto;
  max-width: 760px;
  color: var(--notification-soft);
  font-size: 18px;
  line-height: 1.95;
}

.notification-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.38fr);
  gap: 28px;
  align-items: start;
}

.notification-sidebar {
  display: grid;
  gap: 20px;
}

.notification-panel,
.notification-detail,
.notification-card,
.notification-empty {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(255,255,255,0.97);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.08);
}

.notification-panel::before,
.notification-detail::before,
.notification-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--notification-primary), var(--notification-secondary), rgba(56, 189, 248, 0.7));
}

.notification-panel {
  padding: 26px 24px;
}

.notification-panel__title,
.notification-list-section__title {
  margin: 14px 0 0;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--notification-ink);
}

.notification-search-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.notification-search-form__row {
  display: block;
}

.notification-search-form__actions,
.notification-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.notification-summary-cards {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.notification-summary-card {
  padding: 20px 18px 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(135deg, #16315f, #2455d8);
  color: #fff;
  box-shadow: 0 18px 34px rgba(36, 85, 216, 0.18);
}

.notification-summary-card:nth-child(2) {
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.16), transparent 34%),
    linear-gradient(135deg, #7c3aed, #a855f7);
}

.notification-summary-card__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.notification-summary-card__value {
  display: block;
  margin-top: 10px;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.notification-cta-buttons {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.notification-main {
  display: grid;
  gap: 26px;
}

.notification-detail {
  padding: 32px 30px 34px;
  background:
    radial-gradient(circle at top right, rgba(36, 85, 216, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.99), rgba(248,250,255,0.99));
}

.notification-detail__meta,
.notification-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.notification-detail__badge,
.notification-card__badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(36, 85, 216, 0.1), rgba(124, 58, 237, 0.12));
  color: var(--notification-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.notification-detail__category,
.notification-card__category,
.notification-card__date,
.notification-detail__date {
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
}

.notification-detail__title {
  margin: 16px 0 0;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.25;
  font-weight: 800;
  color: var(--notification-ink);
  text-align: justify;
  text-align-last: left;
  word-break: keep-all;
}

.notification-detail__date {
  margin-top: 12px;
}

.notification-detail.is-visible {
  animation: notificationReveal .45s ease both;
}

.notification-detail__content {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.95;
  color: #2f3d59;
  text-align: justify;
  text-align-last: left;
  word-break: keep-all;
}

.notification-detail__content p,
.notification-detail__content div,
.notification-detail__content li,
.notification-detail__content dd,
.notification-detail__content dt,
.notification-detail__content blockquote {
  text-align: justify !important;
  text-align-last: left;
  word-break: keep-all;
}

.notification-detail__content > *:first-child {
  margin-top: 0;
}

.notification-detail__content > * + * {
  margin-top: 18px;
}

.notification-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
}

.notification-list-section__head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.notification-list {
  display: grid;
  gap: 18px;
}

.notification-card {
  padding: 24px 24px 26px;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.notification-card.is-loading {
  opacity: 0.7;
}

.notification-card:hover,
.notification-card.is-active {
  transform: translateY(-3px);
  border-color: rgba(36, 85, 216, 0.26);
  box-shadow: 0 26px 52px rgba(15, 23, 42, 0.12);
}

.notification-card__title {
  margin: 14px 0 0;
  font-size: clamp(22px, 2.8vw, 30px);
  line-height: 1.35;
  font-weight: 800;
  text-align: justify;
  text-align-last: left;
  word-break: keep-all;
}

.notification-card__title a {
  display: block;
  color: var(--notification-ink);
  text-align: inherit;
}

.notification-card__excerpt {
  margin: 14px 0 0;
  color: #56657f;
  font-size: 15px;
  line-height: 1.85;
  text-align: justify;
  text-align-last: left;
  word-break: keep-all;
}

.notification-empty {
  padding: 28px 24px;
  text-align: center;
  background:
    radial-gradient(circle at top right, rgba(36, 85, 216, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,255,0.99));
}

.notification-empty__title {
  display: block;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 800;
  color: #101c3a;
}

.notification-empty__copy {
  margin: 12px 0 0;
  color: #5d6c87;
  font-size: 15px;
  line-height: 1.8;
}

.notification-pagination {
  margin-top: 30px;
  text-align: center;
}

.notification-copy-button {
  display: none !important;
}

.notification-pagination .pg_page,
.notification-pagination .pg_current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  margin: 0 4px;
  padding: 0 12px;
  border-radius: 999px;
}

.notification-pagination .pg_page {
  border: 1px solid rgba(36, 85, 216, 0.18);
  background: rgba(255, 255, 255, 0.98);
  color: #2455d8;
}

.notification-pagination .pg_current {
  background: linear-gradient(135deg, #16315f, #2455d8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(36, 85, 216, 0.24);
}

@keyframes notificationReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199px) {
  .notification-layout {
    grid-template-columns: 1fr;
  }

  .notification-sidebar {
    order: 2;
  }

  .notification-main {
    order: 1;
  }
}

@media (max-width: 991px) {
  .notification-hero {
    padding: 36px 24px;
    margin-bottom: 30px;
    border-radius: 28px;
  }

  .notification-hero__copy {
    font-size: 16px;
  }

  .notification-panel,
  .notification-detail,
  .notification-card,
  .notification-empty {
    border-radius: 26px;
  }

  .notification-detail {
    padding: 26px 22px 28px;
  }
}

@media (max-width: 767px) {
  .notification-hero__title {
    font-size: 32px;
  }

  .notification-panel {
    padding: 22px 18px;
  }

  .notification-card {
    padding: 22px 18px 24px;
  }

  .notification-search-form__actions,
  .notification-detail__actions {
    display: grid;
  }

  .notification-copy-button {
    display: none !important;
  }

  .notification-hero__copy,
  .notification-card__excerpt,
  .notification-detail__content {
    font-size: 15px;
  }
}

body.site-mode-default.site-page-notification .page-content .notification-detail__title,
body.site-mode-default.site-page-notification .page-content .notification-card__title,
body.site-mode-default.site-page-notification .page-content .notification-card__title a,
body.site-mode-default.site-page-notification .page-content .notification-detail__content,
body.site-mode-default.site-page-notification .page-content .notification-detail__content p,
body.site-mode-default.site-page-notification .page-content .notification-detail__content div,
body.site-mode-default.site-page-notification .page-content .notification-detail__content li,
body.site-mode-default.site-page-notification .page-content .notification-detail__content dd,
body.site-mode-default.site-page-notification .page-content .notification-detail__content dt,
body.site-mode-default.site-page-notification .page-content .notification-detail__content blockquote,
body.site-mode-default.site-page-notification .page-content .notification-card__excerpt {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: justify !important;
  text-align-last: left !important;
  text-justify: inter-word;
  word-break: keep-all !important;
}
