.hp-hero-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0 var(--space-4);
  align-items: center;
}
.hp-hero-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.hp-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hp-content .af-card-image {
  aspect-ratio: 16 / 10;
}
.hp-featured-row {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: var(--space-4);
  padding: var(--space-4) 0;
}
.hp-featured-secondary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: var(--space-4);
  border-left: 1px solid var(--border-light);
}
.hp-featured-secondary.af-card {
  border-radius: 0;
  position: relative;
  overflow: visible;
}
.hp-featured-secondary .af-card-body {
  padding: 0;
}
.hp-featured-secondary .af-card-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-2);
}
.hp-section-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.hp-section-header-line {
  flex: 1;
  height: 1px;
  background: var(--border-light);
}
.hp-section-header .af-card-meta {
  white-space: nowrap;
}
.hp-section {
  padding: var(--space-4) 0;
}
.hp-newsletter-section {
  padding: var(--space-5) 0;
}
.hp-debate-section {
  padding: var(--space-4) 0;
}
.hp-debate-section .af-card-title:hover {
  text-decoration-color: currentColor;
}
.hp-debate-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--space-4);
}
.hp-authors-section {
  padding: var(--space-4) 0;
}
.hp-authors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.hp-author-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-2);
}
.hp-author-item .af-author-photo,
.hp-author-item .af-author-initials {
  border-radius: var(--radius);
  width: 160px;
  height: 160px;
}
.hp-author-item:hover .af-author-card-name {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.hp-hero-row .af-card {
  border-radius: 0;
  overflow: visible;
}
.hp-hero-row .af-card-body {
  padding: 0;
}
.hp-hero-row .af-card-meta {
  margin-bottom: var(--space-2);
}
.hp-hero-row .af-card-category {
  margin-bottom: var(--space-3);
}
.hp-hero-row .af-card-title {
  font-size: var(--text-4xl);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-3);
}
.hp-hero-row .af-card-excerpt {
  font-size: var(--text-lg);
  margin-bottom: var(--space-4);
  max-width: 660px;
}
.hp-hero-row .af-byline {
  border: none;
  padding: 0;
}
.hp-manifesto {
  text-align: center;
}
.hp-manifesto .af-pullquote-text {
  font-style: normal;
  font-weight: 300;
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.3;
  margin: 0 auto;
}
.hp-manifesto .af-pullquote-author {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-ui);
  margin-top: var(--space-4);
}
.hp-hero-row .af-byline-photo {
  width: 56px;
  height: 56px;
}
.hp-hero-row .af-byline-name {
  font-size: var(--text-base);
}
.hp-hero-row .af-byline-role {
  font-size: var(--text-sm);
}
@media (max-width: 768px) {
  .hp-hero-row { grid-template-columns: 1fr; padding-top: var(--space-4); }
  .hp-section { padding: var(--space-3) 0; }
  .hp-section-header { margin-bottom: var(--space-3); }
  .hp-content .af-divider:not(.hp-divider-structural) { display: none; }
  .hp-hero-image { aspect-ratio: 16 / 9; max-height: 300px; }
  .hp-featured-row { grid-template-columns: 1fr; }
  .hp-featured-secondary {
    padding-left: 0;
    border-left: none;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-light);
  }
  .hp-authors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }
  .hp-author-item .af-author-photo,
  .hp-author-item .af-author-initials {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  .hp-newsletter-section {
    padding: var(--space-4) 0;
  }
  .hp-newsletter-section .af-layout-horizontal {
    max-width: 100% !important;
  }
  .hp-newsletter-section .af-layout-photo-col {
    display: none;
  }
  .hp-newsletter-section .af-layout-content {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  .hp-authors-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
  }
}

/* Corner marks (featured-secondary, debate-section) */
.hp-corner-mark {
  position: absolute;
  bottom: 0;
  height: 12px;
  width: auto;
}
.hp-corner-mark--right { right: 0; }
.hp-corner-mark--left  { left: 0; }

/* Featured primary hero title (larger than secondary) */
.hp-featured-row .af-card-hero .af-card-title { font-size: var(--text-2xl); }

/* Debate section overrides */
.hp-debate-section { position: relative; }
.hp-debate-title {
  font-size: var(--text-3xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-2);
  max-width: 720px;
}
.hp-debate-meta { margin-bottom: var(--space-4); }
