/* Base */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #fafafa;
  color: #222;
}

/* Site update banner */
.site-banner {
  background: #fff3cd;
  border-bottom: 1px solid #f7d070;
  color: #5a4400;
}
.site-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.site-banner__text { font-weight: 600; }
.site-banner__cta {
  background: #d62828;
  color: #fff;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
}
.site-banner__cta:hover { background:#a4161a; }

/* Card grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.card {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}
.card p { margin: 0; font-size: 0.95rem; }
.card blockquote {
  margin: 0 0 0.5rem;
  font-style: italic;
}
.quote-source {
  color: #555;
  font-size: 0.9rem;
}

/* Site header + nav */
.site-header {
  background: linear-gradient(135deg, #d62828, #a4161a);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.site-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.25rem 1rem 1rem;
}
.site-header h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}
.site-header p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0.35rem 0 0.75rem;
}
.site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.site-nav a {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  color: #fff;
  background: rgba(255,255,255,0.12);
  transition: background 0.2s ease, transform 0.15s ease;
}
.site-nav li.active a,
.site-nav a:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

/* Sections */
section {
  max-width: 1100px; /* match header width */
  margin: 2rem auto 3rem;
  padding: 0 1rem;
}

/* Issue page layout */
.issue-layout {
  max-width: 1100px;
  margin: 2rem auto 3rem;
  display: grid;
  grid-template-columns: 3fr 2fr; /* 3/5 and 2/5 */
  gap: 1.25rem;
  padding: 0 1rem;
}
.issue-main { min-width: 0; }
.issue-aside { min-width: 0; }
.sticky-card {
  position: sticky;
  top: 1rem;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.sticky-card h3 { margin-top: 0; }

@media (max-width: 900px) {
  .issue-layout {
    grid-template-columns: 1fr; /* stack on small screens */
  }
  .sticky-card { position: static; }
}

/* Issue page: keep sidebar card non-sticky on all sizes */
.issue-aside .sticky-card {
  position: static;
  top: auto;
}

/* Home hero split */
.home-hero .home-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50/50 */
  gap: 1.25rem;
  align-items: center;
}
.home-hero .hero-media img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
.home-hero .hero-copy p { font-size: 1.1rem; margin: 0; }
.home-hero .hero-copy h2 { margin: 0 0 0.5rem; }

@media (max-width: 900px) {
  .home-hero .home-hero-grid { grid-template-columns: 1fr; }
}

/* Issue sidebar list: remove extra indent */
.issue-aside .sticky-card ul {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}
.issue-aside .sticky-card li {
  margin: 0.4rem 0;
}

/* Sub-navigation (in-page) */
.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1rem;
}
.subnav a {
  display: inline-block;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f1f1f1;
  color: #333;
  text-decoration: none;
}
.subnav a:hover { background: #e6e6e6; }

@media (max-width: 900px) {
  .issue-layout { grid-template-columns: 1fr; }
  .sticky-card { position: static; }
}
section h2 {
  font-size: 1.8rem;
  border-left: 5px solid #d62828;
  padding-left: 10px;
  margin-bottom: 1rem;
}
section h3 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
}

img {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  margin: 0.75rem 0;
}

ul {
  list-style-type: disc;
  margin-left: 1.5rem;
}

.highlight {
  background-color: #fff8e1;
  padding: 1rem;
  border-left: 4px solid #ffb703;
  border-radius: 5px;
}

.cta-section {
  background: linear-gradient(135deg, #fdfdfd, #f4f4f4);
  padding: 3rem 1rem 5rem;
  text-align: center;
  border-top: 4px solid #d62828;
}
.cta-section h2 {
  margin-bottom: 1rem;
}
.cta-section p {
  max-width: 700px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
}
.cta-buttons {
  margin-bottom: 2rem;
}
.cta-buttons a {
  display: inline-block;
  margin: 0.5rem;
  padding: 1rem 2rem;
  background-color: #d62828;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
.cta-buttons a:hover {
  background-color: #a4161a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

form {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 8px;
  display: inline-block;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
form label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
}
form input {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.3rem;
  border-radius: 4px;
  border: 1px solid #ccc;
}
form button {
  background-color: #d62828;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  margin-top: 1.5rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}
form button:hover {
  background-color: #a4161a;
  transform: translateY(-1px);
}

footer {
  background-color: #1b1b1b;
  color: #ccc;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
/* Ensure footer links are always white */
footer a,
footer a:visited,
footer a:active {
  color: #fff;
  text-decoration: underline;
}
footer a:hover,
footer a:focus {
  color: #fff;
  opacity: 0.9;
}

/* Donation block */
.donate-box {
  background: linear-gradient(135deg, #ffe8d6, #fff);
  border: 2px solid #ffb703;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 2rem;
  margin-top: 1.5rem;
  display: inline-block;
  text-align: center;
  max-width: 500px;
}
.donate-box h3 {
  margin-top: 0;
  font-size: 1.6rem;
}
.donate-box p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.donate-box a {
  display: inline-block;
  background: linear-gradient(135deg, #28a745, #218838);
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(40,167,69,0.3);
  transition: all 0.3s ease;
}
.donate-box a:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(33,136,56,0.35);
}
