/* ============================================
   PEOPLE MATTER MOST - VARD
   Editorial Overrides & Unique Components
   Base: article-shared.css
   Prefix: ppl-
   ============================================ */

:root {
  --art-accent: var(--color-gold, #d4a574);
  --art-accent-subtle: rgba(212, 165, 116, 0.3);
  --art-link: #2d4a5e;
  --art-link-underline: var(--color-gold, #d4a574);
  --art-link-hover: var(--color-gold, #d4a574);
  --art-ornament: var(--color-gold, #d4a574);
}

/* -- Hero overrides -- */
.art-hero__media img {
  object-position: center 30%;
  animation: pplHeroKB 30s ease-out forwards;
}

@keyframes pplHeroKB {
  0%   { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.art-hero__overlay {
  background:
    linear-gradient(to top,
      rgba(10, 22, 40, 0.92) 0%,
      rgba(10, 22, 40, 0.45) 35%,
      rgba(10, 22, 40, 0.1) 65%,
      transparent 100%);
}

/* Hero category badge */
.art-hero__category {
  background: rgba(45, 74, 94, 0.85);
  color: #fff;
}

/* -- Tighter intro spacing -- */
.art-intro__inner {
  padding-bottom: 0;
}

/* -- Intro lead - no dropcap -- */
.art-lead::first-letter {
  float: none;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

/* -- Perks card -- */
.ppl-perks {
  max-width: 640px;
  margin: var(--space-2xl) auto;
  padding: var(--space-xl) var(--space-2xl);
  background: rgba(45, 74, 94, 0.05);
  border-radius: var(--radius-lg, 0.75rem);
  border: 1px solid rgba(45, 74, 94, 0.18);
}

.ppl-perks__title {
  font-family: var(--font-display, 'Cormorant Garamond', serif);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary, #1a1a1a);
  margin-bottom: var(--space-lg);
}

.ppl-perks__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ppl-perks__list li {
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-base, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary, #4a4a4a);
  padding: var(--space-sm) 0;
  padding-left: 2em;
  position: relative;
}

.ppl-perks__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: calc(var(--space-sm) + 0.65em);
  width: 8px;
  height: 8px;
  background: var(--color-gold, #d4a574);
  border-radius: 50%;
}

/* -- Gallery override - 2 columns centered -- */
.art-gallery__grid {
  grid-template-columns: repeat(2, 1fr);
}

/* -- Permission notice -- */
.ppl-permission {
  font-family: 'Glacial Indifference', var(--font-body), sans-serif;
  font-size: var(--text-sm, 0.875rem);
  color: var(--color-text-muted, #737373);
  font-style: italic;
  text-align: center;
  padding: var(--space-lg) 0;
}

/* ============================================
   RESPONSIVE - Tablet (768px)
   ============================================ */
@media (max-width: 768px) {
  .art-hero__media img {
    object-position: center 25%;
  }

  .ppl-perks {
    padding: var(--space-lg) var(--space-xl);
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .art-hero__media img {
    animation: none;
    transform: none;
  }
}
