/* Content hub pages — DL / News (page-np, shared with ABOUT US tone) */

.page-hub {
  --hub-ink: #0a1628;
  --hub-glow-cyan: #14baf8;
  --hub-glow-magenta: #ff63ac;
}

.page-hub .hub {
  color: var(--np-ink);
}

/* ── Hero (shared) ── */
.page-hub .hub-hero {
  position: relative;
  isolation: isolate;
  min-height: var(--np-sub-hero-min-h);
  display: flex;
  align-items: flex-end;
  padding: var(--np-sub-hero-pad-top) var(--np-gutter) var(--np-sub-hero-pad-bottom);
  background: var(--hub-ink);
  overflow: hidden;
}

.page-hub--dl .hub-hero__mesh {
  background:
    radial-gradient(ellipse 50% 45% at 15% 20%, rgba(20, 186, 248, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 90% 15%, rgba(84, 195, 241, 0.25) 0%, transparent 50%),
    linear-gradient(155deg, #0a1628 0%, #0f2a44 50%, #0a1e32 100%);
}

.page-hub--news .hub-hero__mesh {
  background:
    radial-gradient(ellipse 50% 45% at 85% 18%, rgba(255, 99, 172, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 10% 25%, rgba(189, 130, 183, 0.22) 0%, transparent 50%),
    linear-gradient(155deg, #0a1628 0%, #1a2244 50%, #0d1a30 100%);
}

.page-hub .hub-hero__mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hub .hub-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, #000 25%, transparent 92%);
}

.page-hub .hub-hero__watermark {
  position: absolute;
  right: -0.02em;
  bottom: 0.08em;
  z-index: 1;
  font-size: var(--np-sub-hero-watermark-size);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
}

.page-hub .hub-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--np-container-wide), 100%);
  margin: 0 auto;
}

.page-hub .hub-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 var(--np-space-2);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--hub-glow-cyan);
}

.page-hub--news .hub-hero__kicker {
  color: var(--hub-glow-magenta);
}

.page-hub .hub-hero__kicker::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--np-grad-cta);
}

.page-hub .hub-hero__title {
  margin: 0 0 var(--np-space-2);
  max-width: 14em;
  font-size: var(--np-sub-hero-title-size);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
}

.page-hub .hub-hero__lead {
  margin: 0;
  max-width: 32em;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.75);
}

/* ── Content shell ── */
.page-hub .hub-body {
  padding: var(--np-space-6) var(--np-gutter) var(--np-space-7);
  background: var(--np-grad-section);
}

.page-hub .hub-body__inner {
  max-width: var(--np-container-wide);
  margin: 0 auto;
}

.page-hub .hub-body__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--np-space-3);
  margin-bottom: var(--np-space-4);
}

.page-hub .hub-body__heading {
  margin: 0;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f2844;
}

.page-hub .hub-body__note {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--np-muted);
}

/* ── Filter chips ── */
.page-hub .hub-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.page-hub .hub-chip {
  display: inline-flex;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid #dde6ef;
  background: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #5a6d82;
}

.page-hub .hub-chip--active {
  border-color: transparent;
  background: var(--np-grad-blue);
  color: #fff;
}

/* ── DL cards ── */
.page-hub .hub-dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--np-space-3);
}

.page-hub .hub-dl-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eff6;
  text-decoration: none !important;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(16, 40, 68, 0.06);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
}

.page-hub .hub-dl-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: var(--np-grad-cta);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

@media (hover: hover) and (pointer: fine) {
  .page-hub .hub-dl-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(16, 40, 68, 0.12);
  }

  .page-hub .hub-dl-card:hover::before {
    opacity: 1;
  }

  .page-hub .hub-dl-card:hover .hub-dl-card__cta {
    background: var(--np-primary);
    color: #fff;
  }
}

.page-hub .hub-dl-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  background: linear-gradient(145deg, #eef4f9 0%, #dceaf5 100%);
}

.page-hub .hub-dl-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 12px;
  background: #fff;
  color: var(--np-primary);
  box-shadow: 0 8px 24px rgba(16, 40, 68, 0.1);
}

.page-hub .hub-dl-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: rgba(15, 40, 68, 0.8);
  color: #fff;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-hub .hub-dl-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.35rem;
}

.page-hub .hub-dl-card__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.03em;
  color: #0f2844;
}

.page-hub .hub-dl-card__desc {
  margin: 0;
  flex: 1;
  font-size: 0.8125rem;
  line-height: 1.75;
  color: #5a6d82;
}

.page-hub .hub-dl-card__meta {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--np-muted);
}

.page-hub .hub-dl-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #f4f8fc;
  color: var(--np-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 0.25s ease, color 0.25s ease;
}

/* ── News list ── */
.page-hub .hub-news-item--static {
  cursor: default;
}

.page-hub .hub-news-item--static:hover {
  background: transparent;
}

.page-hub .hub-news-item--static .hub-news-item__title {
  color: #0f2844;
}

.page-hub .hub-news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid #e8eff6;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 32px rgba(16, 40, 68, 0.06);
}

.page-hub .hub-news-item {
  display: grid;
  grid-template-columns: 7.5rem minmax(0, 1fr) auto;
  gap: var(--np-space-3);
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #eef4f9;
  text-decoration: none !important;
  color: inherit;
  transition: background 0.2s ease;
}

.page-hub .hub-news-item:last-child {
  border-bottom: 0;
}

@media (hover: hover) and (pointer: fine) {
  .page-hub .hub-news-item:hover {
    background: #f8fafc;
  }

  .page-hub .hub-news-item:hover .hub-news-item__title {
    color: var(--np-primary);
  }

  .page-hub .hub-news-item:hover .hub-news-item__arrow {
    transform: translateX(4px);
    color: var(--np-primary);
  }
}

.page-hub .hub-news-item__date {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.page-hub .hub-news-item__date time {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f2844;
}

.page-hub .hub-news-item__year {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--np-muted);
}

.page-hub .hub-news-item__main {
  min-width: 0;
}

.page-hub .hub-news-item__tag {
  display: inline-flex;
  margin-bottom: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  background: rgba(0, 157, 217, 0.1);
  color: var(--np-primary);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.page-hub .hub-news-item__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 800;
  line-height: 1.5;
  color: #0f2844;
  transition: color 0.2s ease;
}

.page-hub .hub-news-item__excerpt {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.65;
  color: #5a6d82;
}

.page-hub .hub-news-item__arrow {
  font-size: 1.25rem;
  font-weight: 800;
  color: #c5d4e3;
  transition: transform 0.25s ease, color 0.25s ease;
}

.page-hub .hub-empty {
  padding: var(--np-space-6) var(--np-space-4);
  border: 1px dashed #c5d4e3;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.page-hub .hub-empty__text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--np-muted);
}

/* ── CTA ── */
.page-hub .hub-cta {
  margin-top: var(--np-space-6);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 14px;
  background: var(--hub-ink);
  text-align: center;
}

.page-hub .hub-cta__title {
  margin: 0 0 var(--np-space-2);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 900;
  color: #fff;
}

.page-hub .hub-cta__text {
  margin: 0 0 var(--np-space-3);
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.page-hub .hub-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: var(--np-grad-cta);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  box-shadow: 0 16px 40px rgba(255, 99, 172, 0.2);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.page-hub .hub-cta__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .page-hub .hub-news-item {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .page-hub .hub-news-item__arrow {
    display: none;
  }

  .page-hub .hub-body__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Voices list hub ── */
.page-hub--voices .hub-hero__mesh {
  background:
    radial-gradient(ellipse 50% 45% at 18% 18%, rgba(20, 186, 248, 0.32) 0%, transparent 55%),
    radial-gradient(ellipse 45% 40% at 88% 12%, rgba(255, 99, 172, 0.2) 0%, transparent 50%),
    linear-gradient(155deg, #0a1628 0%, #122a42 48%, #0d1f33 100%);
}

.page-hub--voices .hub-voice-filters {
  margin-bottom: var(--np-space-4);
  padding: var(--np-space-4);
  border-radius: 14px;
  border: 1px solid #e8eff6;
  background: #fff;
  box-shadow: 0 10px 32px rgba(16, 40, 68, 0.06);
}

.page-hub--voices .voice-filters__row {
  gap: var(--np-space-3) var(--np-space-4);
}

.page-hub--voices .voice-filters__label,
.page-hub--voices .voice-filters__legend {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--np-primary);
}

.page-hub--voices .voice-filters__select {
  padding: 0.65rem 0.85rem;
  border: 1px solid #dde6ef;
  border-radius: 10px;
  font-size: 0.875rem;
  background: #fff;
  color: #0f2844;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-hub--voices .voice-filters__select:focus-visible {
  outline: none;
  border-color: var(--np-primary);
  box-shadow: 0 0 0 3px rgba(0, 157, 217, 0.15);
}

.page-hub--voices .voice-filters__chip {
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #dde6ef;
  background: #f8fafc;
  font-size: 0.75rem;
  font-weight: 600;
  color: #3d5166;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-hub--voices .voice-filters__chip:has(input:checked) {
  border-color: transparent;
  background: var(--np-grad-blue);
  color: #fff;
}

.page-hub--voices .voice-filters__hint {
  margin-top: var(--np-space-2);
  font-size: 0.8125rem;
  line-height: 1.65;
  color: var(--np-muted);
}

.page-hub--voices .hub-voice-filters__dl {
  margin: var(--np-space-3) 0 0;
}

.page-hub--voices .hub-voice-filters__dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: #0f2844;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.page-hub--voices .hub-voice-filters__dl-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.page-hub--voices .voice-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--np-space-3);
}

.page-hub--voices .voice-list-card {
  border-radius: 14px;
  border: 1px solid #e8eff6;
  background: #fff;
  box-shadow: 0 10px 32px rgba(16, 40, 68, 0.06);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.page-hub--voices .voice-list-card:hover {
  border-color: rgba(0, 157, 217, 0.35);
  box-shadow: 0 16px 44px rgba(16, 40, 68, 0.1);
  transform: translateY(-3px);
}

.page-hub--voices .voice-list-card__thumb {
  border-radius: 10px;
  background: linear-gradient(165deg, #eef4f9 0%, #d9e6f2 100%);
}

.page-hub--voices .voice-list-card__headline {
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #0f2844;
}

.page-hub--voices .voice-list-card__svc-chip {
  border-radius: 999px;
  border: 1px solid #dde6ef;
  background: #f4f8fc;
  color: var(--np-primary);
}

.page-hub--voices .voice-list-card__logo {
  right: 12px;
  bottom: 12px;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  padding: 6px;
  box-sizing: border-box;
}

.page-hub--voices .voice-list-card__logo-text {
  font-size: 22px;
}

@media (max-width: 960px) {
  .page-hub--voices .voice-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-hub--voices .voice-list-grid {
    grid-template-columns: 1fr;
  }

  .page-hub--voices .hub-voice-filters {
    padding: var(--np-space-3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-hub .hub-dl-card,
  .page-hub .hub-news-item,
  .page-hub .hub-event-card,
  .page-hub .hub-cta__btn,
  .page-hub--voices .voice-list-card,
  .page-hub--voices .hub-voice-filters__dl-btn {
    transition: none;
  }
}

/* ── Events hub ── */
.page-hub--events .hub-hero__mesh {
  background:
    radial-gradient(ellipse 48% 42% at 12% 22%, rgba(20, 186, 248, 0.34) 0%, transparent 55%),
    radial-gradient(ellipse 42% 38% at 88% 16%, rgba(255, 170, 64, 0.28) 0%, transparent 52%),
    linear-gradient(155deg, #0a1628 0%, #142a48 48%, #0d1f33 100%);
}

.page-hub--events .hub-hero__kicker {
  color: #6fd4ff;
}

.page-hub--events .hub-events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--np-space-3);
  max-width: 920px;
  margin: 0 auto;
}

.page-hub--events .hub-event-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e8eff6;
  text-decoration: none !important;
  color: inherit;
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(16, 40, 68, 0.06);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-hub--events .hub-event-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 157, 217, 0.35);
    box-shadow: 0 20px 48px rgba(16, 40, 68, 0.12);
  }

  .page-hub--events .hub-event-card:hover .hub-event-card__cta {
    color: var(--np-primary);
  }
}

.page-hub--events .hub-event-card__visual {
  position: relative;
  overflow: hidden;
  background: #f4f8fc;
  line-height: 0;
}

.page-hub--events .hub-event-card__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

@media (hover: hover) and (pointer: fine) {
  .page-hub--events .hub-event-card:hover .hub-event-card__visual img {
    opacity: 0.92;
  }
}

.page-hub--events .hub-event-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(1rem, 2vw, 1.25rem);
}

.page-hub--events .hub-event-card__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(0, 157, 217, 0.1);
  color: var(--np-primary);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.page-hub--events .hub-event-card__title {
  margin: 0;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: 0.03em;
  color: #0f2844;
}

.page-hub--events .hub-event-card__excerpt {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.8;
  color: #5a6d82;
}

.page-hub--events .hub-event-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.35rem;
}

.page-hub--events .hub-event-card__date {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #8a9bab;
}

.page-hub--events .hub-event-card__cta {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0f2844;
  transition: color 0.2s ease;
}

/* ── Event detail page ── */
.page-event-detail .event-detail {
  padding: var(--np-space-4) var(--np-gutter) var(--np-space-7);
  background: var(--np-grad-section);
}

.page-event-detail .event-detail__shell {
  max-width: var(--np-container-wide);
  margin: 0 auto;
}

.page-event-detail .event-detail__breadcrumb {
  margin: 0 0 var(--np-space-4);
  font-size: var(--np-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--np-muted);
}

.page-event-detail .event-detail__breadcrumb a {
  color: var(--np-primary);
  text-decoration: none;
}

.page-event-detail .event-detail__breadcrumb a:hover {
  opacity: 0.75;
}

.page-event-detail .event-detail__hero {
  margin-bottom: var(--np-space-5);
  border: 1px solid #e8eff6;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(16, 40, 68, 0.08);
}

.page-event-detail .event-detail__banner {
  line-height: 0;
  background: #f4f8fc;
}

.page-event-detail .event-detail__banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.page-event-detail .event-detail__hero-copy {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

.page-event-detail .event-detail__kicker {
  display: inline-flex;
  margin: 0 0 var(--np-space-2);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 157, 217, 0.1);
  color: var(--np-primary);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
}

.page-event-detail .event-detail__title {
  margin: 0 0 var(--np-space-2);
  font-size: clamp(1.375rem, 2.8vw, 2rem);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #0f2844;
}

.page-event-detail .event-detail__lead {
  margin: 0;
  max-width: 42em;
  font-size: 0.9375rem;
  line-height: 1.85;
  color: #5a6d82;
}

.page-event-detail .event-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: var(--np-space-4);
  align-items: start;
}

.page-event-detail .event-detail__section {
  margin-bottom: var(--np-space-3);
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid #e8eff6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 40, 68, 0.04);
}

.page-event-detail .event-detail__section h2 {
  margin: 0 0 var(--np-space-3);
  padding: 0 0 var(--np-space-2);
  border-bottom: 2px solid rgba(0, 157, 217, 0.2);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #0f2844;
}

.page-event-detail .event-detail__section p {
  margin: 0 0 var(--np-space-2);
  font-size: 0.875rem;
  line-height: 1.9;
  color: #5a6d82;
}

.page-event-detail .event-detail__section p:last-child {
  margin-bottom: 0;
}

.page-event-detail .event-detail__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.page-event-detail .event-detail__points li {
  position: relative;
  padding: 0.75rem 1rem 0.75rem 2.25rem;
  border-radius: 8px;
  background: #f4f8fc;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #0f2844;
}

.page-event-detail .event-detail__points li::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 1.15rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--np-primary);
}

.page-event-detail .event-detail__info-card {
  position: sticky;
  top: calc(var(--np-space-4) + 72px);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid #e8eff6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 40, 68, 0.08);
}

.page-event-detail .event-detail__info-title {
  margin: 0 0 var(--np-space-3);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #0f2844;
}

.page-event-detail .event-detail__info-list {
  margin: 0 0 var(--np-space-3);
  padding: 0;
}

.page-event-detail .event-detail__info-list div {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 0.5rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid #eef4f9;
}

.page-event-detail .event-detail__info-list div:last-child {
  border-bottom: 0;
}

.page-event-detail .event-detail__info-list dt {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--np-primary);
}

.page-event-detail .event-detail__info-list dd {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #5a6d82;
}

.page-event-detail .event-detail__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-bottom: 0.65rem;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  background: var(--np-grad-cta);
  color: #fff !important;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none !important;
  box-shadow: var(--np-shadow-cta);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.page-event-detail .event-detail__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.page-event-detail .event-detail__cta-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid #dde6ef;
  border-radius: 999px;
  background: #f8fafc;
  color: #0f2844 !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none !important;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-event-detail .event-detail__cta-ghost:hover {
  border-color: rgba(0, 157, 217, 0.4);
  background: #fff;
  color: var(--np-primary) !important;
}

.page-event-detail .event-detail__note {
  margin: 0;
  font-size: 0.75rem;
  text-align: center;
}

.page-event-detail .event-detail__note a {
  color: var(--np-primary);
  font-weight: 700;
  text-decoration: none;
}

.page-event-detail .event-detail__note a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .page-event-detail .event-detail__grid {
    grid-template-columns: 1fr;
  }

  .page-event-detail .event-detail__info-card {
    position: static;
  }
}
