/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero .eyebrow {
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: var(--text-hero);
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero .subhead {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-xl);
  font-weight: 300;
  max-width: 600px;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero .btn-group {
  margin-top: 0.5rem;
}

/* Issue Tiles */
.issue-tiles {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: var(--color-white);
}

.issue-tiles h2 {
  text-align: center;
  margin-bottom: 3rem;
}

/* Bio Section */
.bio-section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: var(--color-cream);
}

.bio-section .photo-historical {
  width: 100%;
  height: auto;
}

.bio-section .section-label {
  margin-bottom: 0.75rem;
}

.bio-section h2 {
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.bio-section .bio-text p {
  font-size: var(--text-lg);
  color: var(--color-text-light);
}

.bio-section .bio-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--color-navy);
}

.bio-section .bio-link:hover {
  color: var(--color-red);
}

/* News Teaser */
.news-teaser {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding);
  background: var(--color-white);
}

.news-teaser h2 {
  margin-bottom: 2rem;
}

.news-teaser-card {
  background: var(--color-cream);
  border: 1px solid var(--color-light-gray);
  padding: 1.5rem;
}

.news-teaser-card .article-source {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-mid-gray);
  margin-bottom: 0.5rem;
}

.news-teaser-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.75rem;
}

.news-teaser-card p {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.news-teaser-card a {
  font-weight: 600;
  font-size: var(--text-sm);
}

/* CTA Band */
.cta-band {
  padding: var(--section-padding) 0;
  background: var(--color-navy);
  text-align: center;
}

.cta-band h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--text-lg);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
