:root {
  --blue-deep: #0a1f5c;
  --blue-mid: #1a3a8f;
  --blue-light: #2d5be3;
  --blue-bright: #4a7eff;
  --gold: #f5c842;
  --gold-dark: #c9a220;
  --off-white: #f5f2eb;
  --white: #ffffff;
  --grey-light: #e8e4dc;
  --grey-mid: #9a9488;
  --grey-dark: #3a3630;
  --text-dark: #111827;
  --text-body: #2d2a24;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2rem, 5vw, 4rem);
  --space-2xl: clamp(3rem, 7vw, 6rem);
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Arial', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--blue-light);
  text-decoration: underline;
  transition: color 0.2s;
}

a:hover, a:focus-visible {
  color: var(--blue-deep);
}

a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

ul {
  list-style: none;
}

.container {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
}

.section-pad {
  padding-block: var(--space-2xl);
}

.section-label {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: transparent;
  border: 2px solid var(--gold-dark);
  padding: 0.2em 0.75em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-sm);
}

.center { text-align: center; }

.section-label.center {
  display: block;
  width: fit-content;
  margin-inline: auto;
  margin-bottom: var(--space-sm);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.02em;
  color: var(--blue-deep);
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

h3 {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--blue-deep);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.01em;
}

h4 {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue-deep);
  margin-bottom: var(--space-sm);
}

p {
  margin-bottom: var(--space-sm);
}

p:last-child {
  margin-bottom: 0;
}

.section-intro {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--grey-dark);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.btn {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.7em 1.5em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-deep);
  border: 2px solid var(--gold);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border: 2px solid rgba(245,242,235,0.6);
}

.btn-ghost:hover, .btn-ghost:focus-visible {
  background: rgba(245,242,235,0.15);
  color: var(--off-white);
  border-color: var(--off-white);
}

.btn-outline {
  background: transparent;
  color: var(--blue-deep);
  border: 2px solid var(--blue-deep);
}

.btn-outline:hover, .btn-outline:focus-visible {
  background: var(--blue-deep);
  color: var(--white);
}

.btn-cta {
  background: var(--gold);
  color: var(--blue-deep);
  border: 2px solid var(--gold);
  font-size: 0.875rem;
  padding: 0.5em 1.2em;
}

.btn-cta:hover, .btn-cta:focus-visible {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--blue-deep);
  border-bottom: 3px solid var(--gold);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: 0.75rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  gap: 2px;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  letter-spacing: 0.05em;
  color: var(--off-white);
}

.logo-sub {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: clamp(0.65rem, 1.2vw, 0.8rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

nav[aria-label="Primary navigation"] {
  display: none;
}

@media (min-width: 768px) {
  nav[aria-label="Primary navigation"] {
    display: block;
  }
}

nav[aria-label="Primary navigation"] ul {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

nav[aria-label="Primary navigation"] ul a {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  text-decoration: none;
  padding: 0.3em 0.1em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}

nav[aria-label="Primary navigation"] ul a:hover,
nav[aria-label="Primary navigation"] ul a:focus-visible,
nav[aria-label="Primary navigation"] ul a[aria-current="page"] {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

nav[aria-label="Primary navigation"] ul [data-pn-cta] a {
  border-bottom: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--off-white);
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-toggle:hover span {
  background: var(--gold);
}

@media (min-width: 768px) {
  .nav-toggle {
    display: none;
  }
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--blue-deep);
  z-index: 99;
  padding: 5rem 2rem 2rem;
}

.nav-drawer ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nav-drawer ul a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--off-white);
  text-decoration: none;
}

.nav-drawer ul a:hover,
.nav-drawer ul a:focus-visible {
  color: var(--gold);
}

.hero {
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
  padding-block: var(--space-2xl);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74,126,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74,126,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,200,66,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(74,126,255,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: var(--space-xl);
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245,200,66,0.1);
  border: 1px solid rgba(245,200,66,0.4);
  padding: 0.35em 1em;
  border-radius: 100px;
  margin-bottom: var(--space-md);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.03em;
  color: var(--off-white);
  line-height: 0.95;
  margin-bottom: var(--space-sm);
  text-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.hero-byline {
  display: block;
  font-size: clamp(1.8rem, 5vw, 4rem);
  color: var(--gold);
  letter-spacing: 0.04em;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(245,242,235,0.8);
  max-width: 560px;
  margin-inline: auto;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ticker {
  background: var(--gold);
  overflow: hidden;
  white-space: nowrap;
  padding-block: 0.5rem;
  margin-top: var(--space-xl);
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--blue-deep);
}

.ticker-track span {
  margin-right: 2rem;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about-section {
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.about-text h2 {
  margin-top: var(--space-sm);
}

.series-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 2px solid var(--grey-light);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.meta-label {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

.meta-value {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue-deep);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap img {
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(10,31,92,0.15);
}

.image-caption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--grey-mid);
  font-style: italic;
}

.duo-section {
  background: var(--blue-deep);
  color: var(--off-white);
}

.duo-section .section-label {
  color: var(--gold);
  border-color: var(--gold);
}

.duo-section h2 {
  color: var(--off-white);
}

.duo-section .section-intro {
  color: rgba(245,242,235,0.75);
}

.duo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 600px) {
  .duo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.duo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.duo-img-wrap {
  aspect-ratio: 16/9;
}

.duo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.duo-card h3 {
  color: var(--gold);
  padding: var(--space-md) var(--space-md) var(--space-xs);
}

.duo-card p {
  color: rgba(245,242,235,0.8);
  padding: 0 var(--space-md) var(--space-md);
  font-size: 0.95rem;
}

.true-story-section {
  background: var(--white);
}

.ts-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.ts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .ts-grid {
    grid-template-columns: 1fr 340px;
    align-items: start;
  }
}

.ts-main img {
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-bottom: var(--space-lg);
  box-shadow: 0 4px 24px rgba(10,31,92,0.1);
}

.ts-content h3 {
  margin-top: var(--space-lg);
}

.ts-content h3:first-child {
  margin-top: 0;
}

.ts-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.ts-fact-card {
  background: var(--blue-deep);
  color: var(--off-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
}

.ts-fact-card h4 {
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.fact-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.fact-table th,
.fact-table td {
  padding: 0.45em 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  vertical-align: top;
}

.fact-table tr:last-child th,
.fact-table tr:last-child td {
  border-bottom: none;
}

.fact-table th {
  color: rgba(245,242,235,0.6);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: 40%;
  padding-right: 0.5em;
}

.fact-table td {
  color: var(--off-white);
  font-weight: 600;
}

.ts-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.ts-list li {
  color: rgba(245,242,235,0.85);
  font-size: 0.9rem;
  padding-left: 1.2em;
  position: relative;
}

.ts-list li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6em;
  top: 0.35em;
}

.clips-section {
  background: var(--off-white);
}

.clips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .clips-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .clips-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.clip-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(10,31,92,0.08);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}

.clip-card:hover {
  box-shadow: 0 8px 32px rgba(10,31,92,0.15);
  transform: translateY(-3px);
}

.clip-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--blue-deep);
  overflow: hidden;
}

.clip-thumb--sm {
  aspect-ratio: 16/9;
}

.clip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.clip-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(10,31,92,0.3);
}

.clip-info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  flex: 1;
}

.clip-info h3 {
  font-size: 1.1rem;
  color: var(--blue-deep);
  margin-bottom: 0;
}

.clip-info p {
  font-size: 0.9rem;
  color: var(--grey-dark);
  flex: 1;
}

.clip-card--featured .clip-info h3 {
  font-size: 1.25rem;
}

.clips-note {
  margin-top: var(--space-md);
  font-size: 0.85rem;
  color: var(--grey-mid);
  text-align: center;
  font-style: italic;
}

.imdb-section {
  background: var(--blue-deep);
  color: var(--off-white);
}

.imdb-section .section-label {
  color: var(--gold);
  border-color: var(--gold);
}

.imdb-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 700px) {
  .imdb-inner {
    grid-template-columns: 1fr auto;
  }
}

.imdb-text h2 {
  color: var(--off-white);
}

.imdb-text p {
  color: rgba(245,242,235,0.8);
  max-width: 560px;
}

.imdb-btn {
  margin-top: var(--space-md);
}

.imdb-badge-wrap {
  display: flex;
  justify-content: center;
}

.imdb-badge {
  background: var(--gold);
  color: var(--blue-deep);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-xl);
  text-align: center;
  min-width: 180px;
}

.imdb-badge-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: var(--blue-deep);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.imdb-badge-title {
  font-family: var(--font-condensed);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-top: 2px solid var(--blue-deep);
  padding-top: 0.5rem;
  margin-top: 0.5rem;
}

.imdb-badge-year {
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.imdb-badge-id {
  font-family: var(--font-body);
  font-size: 0.75rem;
  opacity: 0.6;
  margin-top: 0.5rem;
  font-style: italic;
}

.faq-section {
  background: var(--off-white);
}

.faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 4px 20px rgba(10,31,92,0.08);
  border-color: var(--blue-light);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-md);
  font-family: var(--font-condensed);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-deep);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--blue-light);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
  color: var(--blue-deep);
}

.faq-item summary:hover {
  background: var(--grey-light);
}

.faq-item:focus-within summary {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.faq-body {
  padding: 0 var(--space-md) var(--space-md);
  color: var(--text-body);
  border-top: 1px solid var(--grey-light);
  padding-top: var(--space-sm);
  font-size: 0.98rem;
  line-height: 1.65;
}

.site-footer {
  background: var(--grey-dark);
  color: rgba(245,242,235,0.8);
  padding-block: var(--space-xl) var(--space-md);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (min-width: 600px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo-main {
  color: var(--off-white);
  font-size: 1.4rem;
}

.footer-brand .logo-sub {
  color: var(--gold);
  font-size: 0.75rem;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-note {
  font-size: 0.82rem;
  color: rgba(245,242,235,0.5);
  line-height: 1.5;
  margin-top: var(--space-sm);
}

.site-footer h4 {
  color: var(--off-white);
  font-size: 0.8rem;
  margin-bottom: var(--space-sm);
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.site-footer ul a {
  font-size: 0.9rem;
  color: rgba(245,242,235,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer ul a:hover,
.site-footer ul a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  padding-top: var(--space-md);
  font-size: 0.8rem;
  color: rgba(245,242,235,0.4);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
  .btn:hover, .btn:focus-visible {
    transform: none;
  }
  .clip-card:hover {
    transform: none;
  }
}


/* pn-injected styles (links block, social bar, image fallback, photo credit) */

.pn-links-rail { box-sizing: border-box; width: 100%; max-width: 100%; margin: 0; padding: 1.1rem 1.25rem 1rem; border: 1px solid rgba(0,0,0,.14); border-top: 3px solid currentColor; background: rgba(0,0,0,.015); font-family: inherit; }
.pn-links-rail__head { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; opacity: .8; margin: 0 0 .65rem; padding-bottom: .5rem; border-bottom: 1px solid rgba(0,0,0,.1); }
.pn-links-rail__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; }
.pn-links-rail__list li { line-height: 1.35; }
.pn-links-rail__list a { font-size: .92rem; color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.pn-links-rail__list a:hover { opacity: .75; }
@media (min-width: 1024px) {
  main:has(> .pn-links-rail) {
    max-width: min(1280px, calc(100vw - 3rem));
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: 2.5rem;
    align-items: start;
    box-sizing: border-box;
  }
  main > .pn-links-rail {
    grid-column: 2;
    grid-row: 1 / span 999;
    position: sticky;
    top: 1.5rem;
    align-self: start;
  }
  main > .pn-links-hidden { grid-column: 1; grid-row: 1; }
}
@media (max-width: 1023px) {
  main > .pn-links-rail { margin: 1.5rem 0 1rem; }
}
.pn-links-hidden { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

.pn-social { display: flex; align-items: center; gap: .65rem; flex-wrap: wrap; }
.pn-social__link { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; color: inherit; opacity: .82; transition: opacity .15s ease, transform .15s ease; text-decoration: none; }
.pn-social__link:hover { opacity: 1; transform: translateY(-1px); }
.pn-social__icon { display: block; width: 22px; height: 22px; }
.pn-social--header { justify-content: flex-end; margin: .35rem 1.25rem; }
.pn-social--footer { justify-content: center; margin: 0 auto .85rem; }
.pn-social--sidebar { justify-content: flex-start; margin: 0 0 1.25rem; }
@media (max-width: 720px) { .pn-social--header { justify-content: center; } }

.pn-links-rail{max-width:none;width:auto;margin:1.5rem auto .25rem;padding:0;border:none;background:none;text-align:center;}
.pn-links-rail__head{border:none;padding:0;margin:0 0 .5rem;font-size:.66rem;letter-spacing:.14em;opacity:.5;}
.pn-links-rail__list{flex-direction:row;justify-content:center;flex-wrap:wrap;gap:.35rem 1.15rem;}

.pn-photo{background-color:#e6e1d6;}

.pn-img-fallback{background:repeating-linear-gradient(135deg,#e6e1d6 0,#e6e1d6 10px,#efe9dd 10px,#efe9dd 20px);display:block;min-height:200px;width:100%;}

.pn-photo-credits{font-size:11px;line-height:1.5;opacity:.55;text-align:center;padding:10px 16px;}.pn-photo-credits a{color:inherit;}
