/* ============================================
   Points de vue — Page Styles
   ============================================ */

/* ── Header ── */
.pdv-header {
  padding: calc(var(--nav-height, 80px) + 5rem) 0 3.5rem;
  background: var(--navy-deep, #0F1D35);
  color: var(--text-light-on-dark);
  position: relative;
  overflow: hidden;
}
.pdv-header::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(45, 91, 215,.06) 0%, transparent 70%);
  pointer-events: none;
}
.pdv-header-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}
.pdv-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--color-accent);
  margin-bottom: .75rem;
}
.pdv-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.pdv-header-desc {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto;
}
.pdv-header-stat {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .02em;
}
.pdv-header-stat span {
  color: var(--color-accent);
  font-size: .95rem;
}

/* Override breadcrumb on dark header */
.pdv-header .breadcrumb,
.pdv-header .breadcrumb a,
.pdv-header .breadcrumb .sep {
  color: rgba(255,255,255,.4);
}
.pdv-header .breadcrumb a:hover {
  color: rgba(255,255,255,.7);
}

/* ── Featured Article ── */
.pdv-featured {
  padding: 3.5rem 0 0;
}
.pdv-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--card-bg, #ffffff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.pdv-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.pdv-featured-visual {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 60%, rgba(45, 91, 215,.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  min-height: 280px;
  position: relative;
}
.pdv-featured-visual::after {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 12rem;
  color: rgba(255,255,255,.04);
  position: absolute;
  top: -.5rem;
  left: 1.5rem;
  line-height: 1;
  pointer-events: none;
}
.pdv-featured-quote {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.5;
  position: relative;
  max-width: 320px;
}
.pdv-featured-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pdv-featured-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--color-type-editorial);
  background: rgba(45, 91, 215,.08);
  padding: .25rem .65rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  width: fit-content;
}
.pdv-featured-body h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.pdv-featured-body .pub-card-author {
  margin-bottom: .75rem;
}
.pdv-featured-body p {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.pdv-featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: .78rem;
  color: var(--steel);
  margin-top: auto;
}
.pdv-featured-meta .pdv-type {
  color: var(--color-accent);
  font-weight: 600;
}

@media (max-width: 768px) {
  .pdv-featured-card {
    grid-template-columns: 1fr;
  }
  .pdv-featured-visual {
    min-height: 180px;
    padding: 2rem;
  }
  .pdv-featured-body {
    padding: 1.75rem;
  }
}

/* ── Article Grid ── */
.pdv-grid-section {
  padding: 3rem 0 4rem;
}
.pdv-grid-label {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--steel);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border);
}
.pdv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.25rem;
}

/* ── Individual PDV Card ── */
.pdv-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg, #ffffff);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
}
.pdv-card::before {
  content: '';
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 3px;
  height: 2rem;
  background: var(--color-accent);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity var(--transition);
}
.pdv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.pdv-card:hover::before {
  opacity: 1;
}
.pdv-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.pdv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: .35rem;
}
.pdv-card-excerpt {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}
.pdv-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--steel);
}
.pdv-card-footer .pdv-card-date {
  font-weight: 500;
}
.pdv-card-footer .pdv-card-type {
  color: var(--color-accent);
  font-weight: 600;
}
.pdv-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  color: var(--sky);
  margin-top: .25rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity var(--transition), transform var(--transition);
}
.pdv-card:hover .pdv-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .pdv-grid {
    grid-template-columns: 1fr;
  }
}
