/* ISSUE DETAIL PAGES */

/* Hero banner for issue pages */
.issue-hero {
  background: var(--navy); position: relative; overflow: hidden;
  padding: 180px 40px 100px; text-align: left;
}
.issue-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 80% 30%, rgba(200,32,47,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.issue-hero-inner {
  max-width: 900px; margin: 0 auto; position: relative; z-index: 2;
}
.issue-hero .section-label { color: rgba(255,255,255,0.5); }
.issue-hero .section-label::before { background: rgba(255,255,255,0.4); }
.issue-hero-number {
  font-family: 'Bebas Neue', sans-serif; font-size: 5rem;
  color: rgba(200,32,47,0.25); line-height: 1; margin-bottom: 8px;
}
.issue-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; color: var(--white);
  letter-spacing: 1px; margin-bottom: 20px;
}
.issue-hero h1 span { color: var(--red); }
.issue-hero-summary {
  font-size: 1.15rem; color: rgba(255,255,255,0.75); line-height: 1.7;
  max-width: 640px;
}

/* Back link */
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.82rem;
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: color 0.2s; margin-bottom: 24px;
}
.back-link:hover { color: var(--white); }
.back-link svg { width: 14px; height: 14px; }

/* Content section */
.issue-content { background: var(--offwhite); padding: 80px 40px; }
.issue-content-inner { max-width: 780px; margin: 0 auto; }
.issue-content h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem;
  color: var(--navy); letter-spacing: 1px; margin: 48px 0 16px;
  padding-top: 16px; border-top: 2px solid var(--border);
}
.issue-content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.issue-content p {
  font-size: 1.08rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 20px;
}
.issue-content p strong { color: var(--navy); }
.issue-content ul {
  list-style: none; padding: 0; margin: 0 0 28px;
}
.issue-content ul li {
  position: relative; padding: 12px 0 12px 36px;
  font-size: 1.02rem; color: var(--text-mid); line-height: 1.7;
  border-bottom: 1px solid var(--border);
}
.issue-content ul li:last-child { border-bottom: none; }
.issue-content ul li::before {
  content: ''; position: absolute; left: 0; top: 18px;
  width: 18px; height: 18px; background: var(--red); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='2,6 5,9 10,3'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}

/* Highlight box */
.issue-highlight {
  background: var(--navy); border-radius: 8px; padding: 36px 40px;
  margin: 40px 0; position: relative; overflow: hidden;
}
.issue-highlight::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red);
}
.issue-highlight h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--white); margin-bottom: 12px;
}
.issue-highlight p {
  font-size: 1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 0;
}

/* Quote / pull quote */
.issue-quote {
  border-left: 4px solid var(--red); padding: 20px 0 20px 28px; margin: 36px 0;
}
.issue-quote p {
  font-size: 1.2rem; font-weight: 600; color: var(--navy); line-height: 1.6;
  font-style: italic; margin-bottom: 0;
}

/* Next / prev navigation */
.issue-nav {
  background: var(--white); padding: 60px 40px;
  border-top: 1px solid var(--border);
}
.issue-nav-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.issue-nav-card {
  display: block; padding: 28px; border: 1px solid var(--border);
  border-radius: 8px; text-decoration: none; color: inherit;
  transition: box-shadow 0.2s, transform 0.2s; position: relative; overflow: hidden;
}
.issue-nav-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform 0.25s; transform-origin: left;
}
.issue-nav-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); }
.issue-nav-card:hover::after { transform: scaleX(1); }
.issue-nav-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.issue-nav-card h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem;
  font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--navy); line-height: 1.3;
}

/* CTA at bottom */
.issue-cta {
  background: var(--red); text-align: center; padding: 80px 40px;
  position: relative; overflow: hidden;
}
.issue-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,255,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.issue-cta h2 {
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white); letter-spacing: 2px; margin-bottom: 16px; position: relative; z-index: 2;
}
.issue-cta p {
  font-size: 1.1rem; color: rgba(255,255,255,0.82); max-width: 500px;
  margin: 0 auto 32px; line-height: 1.6; position: relative; z-index: 2;
}
.issue-cta .btn-donate { position: relative; z-index: 2; }

@media (max-width: 960px) {
  .issue-hero { padding: 140px 24px 60px; }
  .issue-content { padding: 60px 24px; }
  .issue-nav-inner { grid-template-columns: 1fr; }
  .issue-highlight { padding: 28px 24px; }
}
@media (max-width: 580px) {
  .issue-hero-number { font-size: 3.5rem; }
}
