:root {
  --midnight: #0c2444;
  --indigo: #16345a;
  --slate: #224a73;
  --sky: #e2e9f2;
  --soft-white: #f7f9fc;
  --hero-background-image: none;
  --hero-parallax-offset: 0px;
}

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--indigo);
  background-color: var(--soft-white);
}

.petition-page {
  background-color: var(--midnight);
  color: #f3f6fb;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Franklin", "Inter", "Segoe UI", sans-serif;
  color: var(--midnight);
}

.petition-page h1,
.petition-page h2,
.petition-page h3,
.petition-page h4,
.petition-page h5,
.petition-page h6 {
  color: #fff;
}

.nav-eoi {
  background: linear-gradient(
      90deg,
      rgba(12, 36, 68, 0.88) 0%,
      rgba(34, 74, 115, 0.82) 100%
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.nav-eoi .navbar-brand {
  color: #fff;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-logo {
  height: 5rem;
  width: auto;
}

.nav-eoi .navbar-brand:hover,
.nav-eoi .navbar-brand:focus {
  color: #fff;
}

.nav-eoi .nav-link {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav-eoi .nav-link:hover,
.nav-eoi .nav-link:focus,
.nav-eoi .nav-link.active {
  color: #fff;
}

.nav-eoi .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.4);
}

.nav-eoi .navbar-toggler-icon {
  filter: invert(1);
}

.bg-hero {
  position: relative;
  color: #fff;
  background-color: var(--midnight);
  overflow: hidden;
}

.bg-hero::before,
.bg-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-hero::before {
  background-image: var(--hero-background-image);
  background-position: center calc(50% + var(--hero-parallax-offset));
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 1;
}

.bg-hero::after {
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0) 55%
    ),
    linear-gradient(135deg, rgba(12, 36, 68, 1), rgba(34, 74, 115, 0.85));
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 100vh;
  padding-top: 6rem;
  padding-bottom: 5rem;
  position: relative;
  isolation: isolate;
  text-align: left;
}

@media (min-width: 992px) {
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 7rem;
  }
}

.hero-section .container {
  max-width: 1200px;
  position: relative;
  z-index: 1;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  animation: scroll-throb 4s ease-in-out infinite;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

@keyframes scroll-throb {
  0%,
  100% {
    transform: translate(-50%, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, 0.35rem) scale(1.08);
    opacity: 1;
  }
}

.scroll-indicator .scroll-text {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator .fa-chevron-down {
  font-size: 1.25rem;
}

.hero-title {
  color: #fff;
}

.hero-subtext {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.015em;
  line-height: 1.85;
}

.press-page .page-container,
.press-kit-page .page-container,
.press-release-detail-page .page-container {
  margin-top: 5.5rem;
}

@media (min-width: 992px) {
  .press-page .page-container,
  .press-kit-page .page-container,
  .press-release-detail-page .page-container {
    margin-top: 6.5rem;
  }
}

.page-header h1 {
  color: var(--midnight);
}

.hero-cta {
  gap: 1.25rem !important;
}

.hero-btn {
  letter-spacing: 0.03em;
  font-weight: 600;
  padding-inline: 2.75rem;
  border-radius: 999px;
}

.btn-primary-eoi {
  background: var(--slate);
  border-color: var(--slate);
  color: #fff;
  box-shadow: 0 12px 24px rgba(12, 36, 68, 0.25);
}

.btn-primary-eoi:hover,
.btn-primary-eoi:focus {
  background: #1a3f63;
  border-color: #1a3f63;
  color: #fff;
}

.hero-btn-outline {
  border-width: 2px;
  color: #fff;
  background-color: transparent;
}

.hero-btn-outline:hover,
.hero-btn-outline:focus {
  color: var(--midnight);
  background-color: #fff;
  border-color: #fff;
}

.btn-eoi {
  color: var(--midnight);
}

.btn-eoi:hover,
.btn-eoi:focus {
  color: var(--midnight);
  background-color: rgba(255, 255, 255, 0.85);
}

.btn-outline-primary {
  color: var(--slate);
  border-color: var(--slate);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  color: #fff;
  background-color: var(--slate);
  border-color: var(--slate);
}

.policy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(12, 36, 68, 0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(12, 36, 68, 0.18);
  padding-bottom: 0.15rem;
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.policy-link i {
  font-size: 0.85rem;
  opacity: 0.75;
}

.policy-link:hover,
.policy-link:focus {
  color: var(--midnight);
  border-bottom-color: rgba(12, 36, 68, 0.5);
  transform: translateY(-1px);
  text-decoration: none;
}

.policy-link:hover i,
.policy-link:focus i {
  opacity: 1;
}

.fade-in-item {
  opacity: 0;
  transform: translateY(20px);
}

.page-loaded .fade-in-item {
  animation: fade-up 0.8s ease-out forwards;
  animation-delay: calc(var(--fade-order, 1) * 0.12s);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-card {
  background: #fff;
  border-radius: 1rem;
}

.accent-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--sky);
  color: var(--midnight);
  font-weight: 600;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 3px;
  background: var(--slate);
  margin: 0.75rem 0 0;
}

.section-intro {
  max-width: 42rem;
}

.section-heading-left .section-title::after {
  margin-left: 0;
  margin-right: 0;
}

.section-heading-left .section-intro {
  text-align: left;
}

.section-heading-right .section-intro {
  margin-left: auto;
}

@media (min-width: 992px) {
  .section-heading-right .section-title::after {
    margin-left: auto;
    margin-right: 0;
  }

  .section-heading-right .section-intro {
    text-align: right;
  }
}

.section-light {
  background-color: #fff;
}

.bg-sky {
  background-color: var(--sky);
}

.faq-section {
  padding-bottom: 6rem;
}

@media (min-width: 992px) {
  .faq-section {
    padding-bottom: 7rem;
  }
}

.issue-section .issue-copy {
  max-width: 38rem;
}

.issue-section .issue-lead {
  color: var(--midnight);
  line-height: 1.6;
}

.issue-highlights li {
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.issue-highlights li:last-child {
  margin-bottom: 0;
}

.issue-highlights p {
  color: var(--indigo);
  font-size: 1.05rem;
  line-height: 1.75;
}

.issue-highlights strong {
  display: inline-block;
  font-weight: 700;
  margin-right: 0.35rem;
  color: var(--midnight);
}

.issue-bullet {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 999px;
  background: var(--slate);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.issue-section .issue-copy .text-muted {
  color: rgba(12, 36, 68, 0.7) !important;
}


.issue-policy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
  color: rgba(12, 36, 68, 0.75);
  text-decoration: none;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid rgba(12, 36, 68, 0.2);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.issue-policy-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85em;
  line-height: 1;
}

.issue-policy-link:hover,
.issue-policy-link:focus {
  color: var(--midnight);
  border-color: rgba(12, 36, 68, 0.4);
}

.issue-visual {
  position: relative;
}

.issue-illustration {
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(12, 36, 68, 0.18);
  max-width: 100%;
  height: auto;
}

@media (max-width: 575.98px) {
  .issue-highlights p {
    font-size: 1rem;
  }

  .issue-illustration {
    border-radius: 1.25rem;
  }
}

.info-card,
.contact-card {
  border-radius: 1rem;
  border: 1px solid rgba(12, 36, 68, 0.08);
  box-shadow: 0 12px 24px rgba(12, 36, 68, 0.08);
}

.info-card .card-body h3,
.contact-card h3 {
  color: var(--indigo);
}

.info-card .btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.issue-card-stack .card-body {
  padding-block: 1.75rem;
}

.issue-detail-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.issue-detail-card:hover,
.issue-detail-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(12, 36, 68, 0.12);
}

.issue-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  background: rgba(12, 36, 68, 0.12);
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(12, 36, 68, 0.1);
}

.issue-card-icon img {
  width: 2.25rem;
  height: 2.25rem;
  object-fit: contain;
  filter: invert(17%) sepia(16%) saturate(2184%) hue-rotate(183deg) brightness(89%) contrast(93%);
}

.issue-card-stack .text-muted {
  color: rgba(12, 36, 68, 0.75) !important;
}

.press-release-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-release-card .card-body {
  padding: 1.75rem;
}

.press-release-card:hover,
.press-release-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 18px 32px rgba(12, 36, 68, 0.12);
}

.tool-card {
  border: 1px solid rgba(12, 36, 68, 0.1);
  border-radius: 1.25rem;
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover,
.tool-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 36px rgba(12, 36, 68, 0.15);
}

.tool-card-image-wrapper {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 36, 68, 0.08), rgba(34, 74, 115, 0.12));
}

.tool-card-image-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.tool-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tool-card .card-title {
  color: var(--midnight);
}

.tool-card .btn {
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.press-release-date {
  letter-spacing: 0.12em;
}

.press-release-summary {
  color: rgba(12, 36, 68, 0.75) !important;
  line-height: 1.7;
}

.press-release-back-link {
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(12, 36, 68, 0.75);
  font-size: 0.95rem;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.press-release-back-link:hover,
.press-release-back-link:focus {
  color: var(--midnight);
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.press-release-back-link i {
  font-size: 0.85rem;
}

.stat-card {
  border: 1px solid rgba(12, 36, 68, 0.12);
  border-radius: 1rem;
  background-color: #fff;
  box-shadow: 0 10px 20px rgba(12, 36, 68, 0.05);
}

.text-primary {
  color: var(--slate) !important;
}

.quote-card {
  border: 1px solid rgba(12, 36, 68, 0.08);
  border-radius: 1.25rem;
  background: #fff;
}

.quote-card blockquote {
  font-style: italic;
  color: var(--indigo);
}

.blockquote-footer {
  color: rgba(12, 36, 68, 0.7);
}

.contact-card a {
  color: var(--slate);
  font-weight: 600;
}

.footer-eoi {
  position: relative;
  background: radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.12),
      rgba(255, 255, 255, 0)
    ),
    linear-gradient(140deg, #0c2444, #16345a 55%, #1c4e87);
  letter-spacing: 0.02em;
  overflow: hidden;
}

.footer-eoi::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 65%
  );
  opacity: 0.35;
  pointer-events: none;
}

.footer-eoi .container {
  position: relative;
  z-index: 1;
}

.footer-main {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .footer-main {
    --bs-gutter-x: 0;
    gap: 2.5rem;
  }

  .footer-main > .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
}

.footer-heading {
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
}


.footer-contact {
  margin-left: -1.65rem;
}

.footer-contact li,
.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.88);
}

.footer-contact li i {
  font-size: 0.9rem;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.footer-contact-details span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.footer-links li::before {
  display: none;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links li a:hover,
.footer-links li a:focus {
  color: #fff;
}

.footer-contact a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover,
.footer-contact a:focus {
  text-decoration: underline;
}

.footer-meta {
  padding-top: 2rem;
}

.footer-meta small {
  color: rgba(255, 255, 255, 0.65);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social li {
  margin: 0;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social-link i {
  font-size: 1.1rem;
  line-height: 1;
  color: currentColor;
}

.footer-social-link img {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.footer-social-link:hover,
.footer-social-link:focus {
  background: #fff;
  color: var(--midnight);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-eoi a {
  color: rgba(255, 255, 255, 0.88);
}

.footer-eoi a:hover,
.footer-eoi a:focus {
  color: #fff;
}

@media (max-width: 767.98px) {
  .footer-links li,
  .footer-contact li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-contact {
    margin-left: 0;
  }

  .footer-links li::before {
    display: none;
  }

  .footer-meta {
    text-align: center !important;
  }

  .footer-social {
    justify-content: center;
  }
}

.issue-list i {
  font-size: 0.6rem;
  line-height: 1.5;
}

section {
  scroll-margin-top: 6rem;
  padding-left: 150px;
  padding-right: 150px;
}

@media (max-width: 991.98px) {
  section {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.petition-hero {
  padding-top: 9.5rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 15% 15%,
      rgba(76, 123, 176, 0.4),
      transparent 55%
    ),
    radial-gradient(circle at 80% 10%, rgba(53, 97, 150, 0.45), transparent 60%),
    linear-gradient(160deg, rgba(11, 28, 52, 0.95), rgba(10, 22, 40, 0.92));
}

.petition-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 110%, rgba(61, 113, 168, 0.35), transparent 60%);
  pointer-events: none;
}

.petition-hero .container {
  position: relative;
  z-index: 1;
}

.petition-hero-title {
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.petition-hero-subtitle {
  max-width: 720px;
  margin: 1.5rem auto 2.5rem;
  font-weight: 400;
}

.signature-ticker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 36px rgba(7, 17, 32, 0.55);
}

.petition-form-section {
  background: linear-gradient(180deg, rgba(8, 19, 35, 0.95), rgba(8, 19, 35, 0.98));
}

.petition-form-card {
  background: linear-gradient(160deg, rgba(20, 48, 82, 0.92), rgba(12, 32, 58, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 24px 48px rgba(7, 17, 32, 0.6);
}

.petition-form-card .form-control {
  background-color: rgba(10, 25, 44, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f7f9fc;
  border-radius: 0.85rem;
  padding: 0.75rem 1rem;
}

.petition-form-card .form-control:focus {
  background-color: rgba(14, 34, 58, 0.95);
  border-color: rgba(134, 178, 226, 0.65);
  box-shadow: 0 0 0 0.2rem rgba(134, 178, 226, 0.15);
  color: #fff;
}

.petition-form-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.petition-form-card .form-label {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.petition-form-card .form-check-input {
  background-color: rgba(6, 16, 30, 0.6);
  border-color: rgba(255, 255, 255, 0.3);
}

.petition-form-card .form-check-input:checked {
  background-color: rgba(134, 178, 226, 0.9);
  border-color: rgba(134, 178, 226, 0.9);
}

.petition-form-card .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(134, 178, 226, 0.25);
  border-color: rgba(134, 178, 226, 0.8);
}

.petition-submit-btn {
  padding: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 0.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.petition-submit-btn:hover,
.petition-submit-btn:focus {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 36px rgba(10, 25, 44, 0.5);
}

.petition-note {
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.95rem;
}

.petition-link-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.petition-link-btn:hover,
.petition-link-btn:focus {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 34px rgba(12, 36, 68, 0.25);
}

.text-white-25 {
  color: rgba(255, 255, 255, 0.35) !important;
}

@media (max-width: 767.98px) {
  .nav-eoi .navbar-brand {
    gap: 0.35rem;
  }

  .brand-logo {
    height: 3.25rem;
  }

  section {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .petition-hero {
    padding-top: 8.5rem;
    padding-bottom: 3.75rem;
  }

  .petition-hero-title {
    font-size: 2.1rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
  }

  .petition-hero-subtitle {
    margin: 1.25rem auto 2rem;
    font-size: 1.05rem;
  }

  .signature-ticker {
    width: 100%;
    line-height: 1.4;
    padding-inline: 1.25rem;
    justify-content: center;
  }

  .petition-form-section .container {
    padding-inline: 0;
  }

  .petition-form-card {
    border-radius: 1.25rem;
  }

  .petition-submit-btn {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .petition-hero-title {
    font-size: 1.9rem;
  }

  .petition-form-section {
    padding-block: 3rem;
  }

  .petition-form-card .card-body {
    padding: 2.5rem 1.5rem;
  }

  .petition-note {
    font-size: 0.9rem;
  }
}

.petition-result-card {
  border: none;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #ffffff, #f2f6fb);
  color: var(--indigo);
  box-shadow: 0 20px 45px rgba(12, 36, 68, 0.18);
}

.petition-result-card .card-body {
  padding: 1.75rem;
}

.petition-result-card .badge {
  letter-spacing: 0.08em;
  color: var(--midnight);
}

.petition-result-badge {
  background-color: rgba(12, 36, 68, 0.1);
}

.petition-result-card h3 {
  color: var(--midnight);
}

.petition-result-card a {
  color: var(--slate);
  text-decoration: none;
}

.petition-result-card a:hover,
.petition-result-card a:focus {
  text-decoration: underline;
}

/* Press release detail: smaller secondary headings */
.press-release-detail-page .article-body h2 {
  font-size: 1.25rem;   /* ~20px */
  line-height: 1.4;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--midnight);
}

.press-release-detail-page .article-body h3 {
  font-size: 1.125rem;  /* ~18px */
  line-height: 1.45;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--indigo);
}

.article-hero-image {
  display: block;
  width: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #f4f6fb;
}

.article-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-hero-caption {
  font-size: 0.85rem;
  color: rgba(12, 36, 68, 0.7);
  margin-top: 0.75rem;
}

/* Optional: tighten lists inside the article body */
.press-release-detail-page .article-body ul { margin-top: 0.5rem; }
.press-release-detail-page .article-body li { margin-bottom: 0.35rem; }


@media (max-width: 576px) {
  .petition-result-card {
    border-radius: 1rem;
  }

  .petition-result-card .card-body {
    padding: 1.5rem;
  }
}
