/* Nominations / Finalists ICSA 2026 — elegant editorial layout */

.nominations-2026-page {
  --n26-accent: #f82249;
  --n26-accent-deep: #c72032;
  --n26-navy: #0e1b4d;
  --n26-ink: #1a1d2e;
  --n26-muted: #6b7085;
  --n26-line: #e6e8f0;
  --n26-band: #f6f7fd;
}

.nominations-2026-page #main {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(248, 34, 73, 0.04) 0%, transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--n26-band) 18%, #fff 100%);
}

/* ── Hero ─────────────────────────────────────────────── */
.nominations-2026-page .n26-hero {
  position: relative;
  min-height: clamp(280px, 42vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #060c22;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.nominations-2026-page .n26-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 34, 0.55) 0%, rgba(6, 12, 34, 0.72) 100%),
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(248, 34, 73, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.nominations-2026-page .n26-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1rem;
}

.nominations-2026-page .n26-hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.9rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(248, 34, 73, 0.92);
  border-radius: 2px;
  animation: n26-fade-up 0.7s ease both;
}

.nominations-2026-page .n26-hero__title {
  margin: 0;
  color: #fff;
  font-family: "Raleway", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  animation: n26-fade-up 0.85s 0.12s ease both;
}

.nominations-2026-page .n26-hero__rule {
  display: block;
  width: 56px;
  height: 3px;
  margin: 1.15rem auto 0;
  border: 0;
  background: var(--n26-accent);
  border-radius: 2px;
  animation: n26-rule-grow 0.9s 0.35s ease both;
  transform-origin: center;
}

.nominations-2026-page .n26-hero__sub {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  animation: n26-fade-up 0.85s 0.28s ease both;
}

/* Soft floating sparkle accents in hero */
.nominations-2026-page .n26-hero__spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 12px rgba(248, 34, 73, 0.55);
  animation: n26-sparkle 3.6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.nominations-2026-page .n26-hero__spark--1 {
  top: 28%;
  left: 18%;
  animation-delay: 0s;
}

.nominations-2026-page .n26-hero__spark--2 {
  top: 42%;
  right: 16%;
  width: 4px;
  height: 4px;
  animation-delay: 1.2s;
}

.nominations-2026-page .n26-hero__spark--3 {
  bottom: 30%;
  left: 42%;
  width: 5px;
  height: 5px;
  animation-delay: 2.1s;
}

/* ── Intro strip ──────────────────────────────────────── */
.nominations-2026-page .n26-intro {
  max-width: 640px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.nominations-2026-page .n26-intro__label {
  margin: 0 0 0.5rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--n26-accent);
}

.nominations-2026-page .n26-intro__text {
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--n26-muted);
}

/* ── Finalist grid ────────────────────────────────────── */
.nominations-2026-page .finalists-wrap {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(3.5rem, 7vw, 5rem);
}

.nominations-2026-page .finalist-card {
  position: relative;
  height: 100%;
  padding-top: 18px;
}

.nominations-2026-page .finalist-card__dot {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, #ff4d6d 0%, var(--n26-accent-deep) 100%);
  box-shadow:
    0 0 0 6px #fff,
    0 4px 14px rgba(199, 32, 50, 0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.nominations-2026-page .finalist-card:hover .finalist-card__dot {
  transform: translateX(-50%) scale(1.15);
  box-shadow:
    0 0 0 6px #fff,
    0 6px 20px rgba(248, 34, 73, 0.45);
}

.nominations-2026-page .finalist-card__body {
  position: relative;
  height: 100%;
  min-height: 220px;
  padding: 1.65rem 1.4rem 1.15rem;
  border: 1px solid var(--n26-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(14, 27, 77, 0.05);
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.35s ease;
}

.nominations-2026-page .finalist-card__body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--n26-accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.nominations-2026-page .finalist-card:hover .finalist-card__body {
  transform: translateY(-6px);
  border-color: rgba(248, 34, 73, 0.28);
  box-shadow: 0 18px 44px rgba(14, 27, 77, 0.1);
}

.nominations-2026-page .finalist-card:hover .finalist-card__body::before {
  opacity: 1;
}

.nominations-2026-page .finalist-card__title {
  margin: 0 0 1.1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--n26-line);
  color: var(--n26-accent-deep);
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.nominations-2026-page .finalist-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Raleway", sans-serif;
  color: var(--n26-ink);
  font-size: 0.9rem;
}

.nominations-2026-page .finalist-table thead th {
  padding: 0.35rem 0.5rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--n26-navy);
  border-bottom: 1px solid var(--n26-line);
  text-align: left;
}

.nominations-2026-page .finalist-table tbody td {
  padding: 0.55rem 0.5rem;
  border-bottom: 1px dashed #d8dae4;
  vertical-align: top;
  transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}

.nominations-2026-page .finalist-table tbody tr:last-child td {
  border-bottom: 0;
}

.nominations-2026-page .finalist-table tbody tr:hover td {
  background: rgba(248, 34, 73, 0.04);
  color: var(--n26-navy);
}

.nominations-2026-page .finalist-table tbody tr:hover td:first-child {
  padding-left: 0.7rem;
  font-weight: 600;
}

.nominations-2026-page .finalist-table th:first-child,
.nominations-2026-page .finalist-table td:first-child {
  width: 68%;
}

.nominations-2026-page .finalist-table td:last-child {
  color: var(--n26-muted);
  font-weight: 500;
  white-space: nowrap;
}

.nominations-2026-page .finalist-table tbody tr:hover td:last-child {
  color: var(--n26-accent-deep);
}

/* ── Keyframes ────────────────────────────────────────── */
@keyframes n26-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes n26-rule-grow {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes n26-sparkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@media (max-width: 767px) {
  .nominations-2026-page .n26-hero {
    min-height: 260px;
  }

  .nominations-2026-page .finalist-card__body {
    padding: 1.4rem 0.95rem 0.95rem;
  }

  .nominations-2026-page .finalist-table {
    font-size: 0.8125rem;
  }

  .nominations-2026-page .finalist-table td:last-child {
    white-space: normal;
  }

  .nominations-2026-page .n26-hero__spark {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nominations-2026-page .n26-hero__eyebrow,
  .nominations-2026-page .n26-hero__title,
  .nominations-2026-page .n26-hero__rule,
  .nominations-2026-page .n26-hero__sub,
  .nominations-2026-page .n26-hero__spark,
  .nominations-2026-page .finalist-card__body,
  .nominations-2026-page .finalist-card__dot {
    animation: none !important;
    transition: none !important;
  }
}
