:root {
  --bs-primary: #e94d3d;
  --bs-primary-rgb: 233, 77, 61;
  --bs-secondary: #959493;
  --bs-secondary-rgb:
    149, 148, 147;
  --transition-base: all 0.2s ease-in-out;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --section-padding: clamp(3rem, 8vw, 6rem);
  --content-max-width: 1140px;
  --shadow-subtle: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.04);
  --shadow-card: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1);
  --blur-backdrop: blur(10px);
  --scale-hover: 1.02;
}

body {
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

.site-header {
  background-color: #fff !important;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.04), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
}
.site-header .navbar {
  max-height: 70px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-brand,
a.navbar-brand,
.site-header .navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 0;
}
.navbar-brand .custom-logo-link,
a.navbar-brand .custom-logo-link,
.site-header .navbar-brand .custom-logo-link {
  display: flex;
  align-items: center;
  line-height: 1;
  max-height: 40px;
}
.navbar-brand img,
.navbar-brand .custom-logo,
.navbar-brand img.custom-logo,
.navbar-brand img.voltaire-logo,
a.navbar-brand img,
a.navbar-brand .custom-logo,
a.navbar-brand img.custom-logo,
a.navbar-brand img.voltaire-logo,
.site-header .navbar-brand img,
.site-header .navbar-brand .custom-logo,
.site-header .navbar-brand img.custom-logo,
.site-header .navbar-brand img.voltaire-logo {
  max-height: 40px !important;
  max-width: none !important;
  width: auto !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}
.navbar-brand .site-title,
a.navbar-brand .site-title,
.site-header .navbar-brand .site-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #212529;
  margin: 0;
  line-height: 1;
}

a.custom-logo-link img.custom-logo {
  max-height: 40px !important;
  width: auto !important;
  height: auto !important;
}

.voltaire-header-nav {
  display: none;
}
@media (min-width: 992px) {
  .voltaire-header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.voltaire-header-nav a {
  color: #212529;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition-base);
  white-space: nowrap;
}
.voltaire-header-nav a:hover, .voltaire-header-nav a:focus {
  color: #e94d3d;
}

@media (min-width: 992px) {
  #offcanvas-navbar {
    display: none !important;
  }
}
#offcanvas-navbar .nav-link {
  color: #212529;
  font-weight: 600;
  padding: 0.75rem 0;
}
#offcanvas-navbar .nav-link:hover, #offcanvas-navbar .nav-link:focus {
  color: #e94d3d;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.75rem;
  font-weight: 700;
  line-height: 1.3;
  color: #212529;
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 900;
}

p {
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #e94d3d;
  text-decoration: underline;
  transition: var(--transition-base);
}
a:hover, a:focus {
  color: rgb(198.05, 65.45, 51.85);
}
a:focus-visible {
  outline: 2px solid #e94d3d;
  outline-offset: 2px;
  border-radius: 2px;
}

.btn,
.nav-link,
.navbar-brand,
.dropdown-item {
  text-decoration: none;
}
.btn:hover, .btn:focus,
.nav-link:hover,
.nav-link:focus,
.navbar-brand:hover,
.navbar-brand:focus,
.dropdown-item:hover,
.dropdown-item:focus {
  text-decoration: none;
}

.btn-primary {
  --bs-btn-bg: #e94d3d;
  --bs-btn-border-color: #e94d3d;
  --bs-btn-hover-bg: rgb(209.7, 69.3, 54.9);
  --bs-btn-hover-border-color: rgb(209.7, 69.3, 54.9);
  --bs-btn-active-bg: rgb(198.05, 65.45, 51.85);
  --bs-btn-active-border-color: rgb(198.05, 65.45, 51.85);
  --bs-btn-disabled-bg: #e94d3d;
  --bs-btn-disabled-border-color: #e94d3d;
  --bs-btn-color: #fff;
  background-color: #e94d3d;
  border-color: #e94d3d;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: rgb(209.7, 69.3, 54.9);
  border-color: rgb(209.7, 69.3, 54.9);
  color: #fff;
}
.btn-primary:active, .btn-primary.active, .btn-primary:focus-visible {
  background-color: rgb(198.05, 65.45, 51.85);
  border-color: rgb(198.05, 65.45, 51.85);
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(233, 77, 61, 0.5);
}

.btn-outline-primary {
  --bs-btn-color: #e94d3d;
  --bs-btn-border-color: #e94d3d;
  --bs-btn-hover-bg: #e94d3d;
  --bs-btn-hover-border-color: #e94d3d;
  --bs-btn-active-bg: #e94d3d;
  --bs-btn-active-border-color: #e94d3d;
  color: #e94d3d;
  border-color: #e94d3d;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: #e94d3d;
  border-color: #e94d3d;
  color: #fff;
}

.btn-outline-light {
  --bs-btn-hover-bg: rgba(255, 255, 255, 0.15);
  --bs-btn-hover-border-color: #fff;
  --bs-btn-active-bg: rgba(255, 255, 255, 0.25);
}
.btn-outline-light:hover, .btn-outline-light:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

.campaign-one-page section {
  padding: var(--section-padding) 0;
}

.hover-lift {
  transition: var(--transition-smooth);
}
.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover) !important;
}

.donation-meter {
  max-width: 600px;
  margin: 0 auto 4rem;
}
.donation-meter .donation-meter-container {
  background: #fff;
  border-radius: 0.5rem;
  padding: 3rem;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.04), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
}
.donation-meter .donation-meter-header {
  margin-bottom: 2rem;
  text-align: center;
}
.donation-meter .donation-meter-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 1rem;
}
.donation-meter .donation-meter-amounts {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}
.donation-meter .donation-meter-current {
  font-size: 1.75rem;
  font-weight: 900;
  color: #e94d3d;
}
.donation-meter .donation-meter-goal {
  font-size: 1rem;
  color: rgba(33, 37, 41, 0.6);
}
.donation-meter .donation-meter-bar {
  height: 20px;
  background-color: rgb(250.1, 250.8, 251.5);
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  overflow: hidden;
}
.donation-meter .donation-meter-bar .progress-bar {
  background: linear-gradient(90deg, #e94d3d 0%, rgb(209.7, 69.3, 54.9) 100%);
  transition: width 0.6s ease-in-out;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.3);
}
.donation-meter .donation-meter-footer {
  text-align: center;
}
.donation-meter .donation-meter-percentage {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e94d3d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.donation-section {
  background-color: #fff;
  border-top: 1px solid rgb(249.4, 250.2, 251);
  border-bottom: 1px solid rgb(249.4, 250.2, 251);
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: linear-gradient(135deg, #e94d3d 0%, rgb(198.05, 65.45, 51.85) 100%);
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  line-height: 1.1;
  margin-bottom: 3rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  font-weight: 900;
}
.hero-section .lead {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}
.hero-section .btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08), 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
}
.hero-section .btn:hover, .hero-section .btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1), 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}
.hero-section .btn:active {
  transform: translateY(0);
}

.about-section {
  background-color: rgb(251.5, 252, 252.5);
}
.about-section .content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: rgb(29.7, 33.3, 36.9);
}
.about-section .content p {
  margin-bottom: 2rem;
}
.about-section .display-4 {
  font-weight: 700;
  margin-bottom: 4rem;
  position: relative;
}
.about-section .display-4::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #e94d3d;
  margin: 1.5rem auto 0;
  border-radius: 50rem;
}
.about-section img {
  transition: var(--transition-smooth);
}
.about-section img:hover {
  transform: scale(var(--scale-hover));
}

.engagement-section .display-4 {
  font-weight: 700;
  margin-bottom: 4rem;
}

.articles-section {
  background-color: #fff;
}
.articles-section .display-4 {
  font-weight: 700;
  margin-bottom: 4rem;
}
.articles-section .article-card {
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 0.0625rem 0.25rem rgba(0, 0, 0, 0.04), 0 0.125rem 0.5rem rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.articles-section .article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1), 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}
.articles-section .article-card .article-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: #f8f9fa;
}
.articles-section .article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.articles-section .article-card:hover .article-image img {
  transform: scale(1.05);
}
.articles-section .article-card .article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.articles-section .article-card .article-meta {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: rgba(33, 37, 41, 0.6);
}
.articles-section .article-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}
.articles-section .article-card h3 a {
  color: #212529;
  text-decoration: none;
  transition: var(--transition-base);
}
.articles-section .article-card h3 a:hover {
  color: #e94d3d;
}
.articles-section .article-card p {
  flex: 1;
  color: rgba(33, 37, 41, 0.7);
}

.contact-section {
  background: linear-gradient(135deg, #212529 0%, rgb(26.4, 29.6, 32.8) 100%);
  position: relative;
}
.contact-section .container {
  position: relative;
  z-index: 1;
}
.contact-section .display-4 {
  font-weight: 700;
  margin-bottom: 2rem;
  color: #fff;
}
.contact-section .lead {
  opacity: 0.9;
  margin-bottom: 4rem;
  color: #fff;
}
.contact-section .wpcf7-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-section .wpcf7-form input,
.contact-section .wpcf7-form textarea,
.contact-section .wpcf7-form select {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  transition: var(--transition-base);
  width: 100%;
  box-sizing: border-box;
  display: block;
}
.contact-section .wpcf7-form input::placeholder,
.contact-section .wpcf7-form textarea::placeholder,
.contact-section .wpcf7-form select::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-section .wpcf7-form input:focus,
.contact-section .wpcf7-form textarea:focus,
.contact-section .wpcf7-form select:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #e94d3d;
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(233, 77, 61, 0.25);
}
.contact-section .wpcf7-form input:hover:not(:focus),
.contact-section .wpcf7-form textarea:hover:not(:focus),
.contact-section .wpcf7-form select:hover:not(:focus) {
  border-color: rgba(255, 255, 255, 0.3);
}
.contact-section .wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}
.contact-section .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.contact-section .wpcf7-form p {
  width: 100%;
  text-align: left;
}
.contact-section .wpcf7-form p label {
  width: 100%;
  display: block;
  text-align: left;
}
.contact-section .wpcf7-form select.wpcf7-form-control {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  appearance: auto;
}
.contact-section .wpcf7-form .wpcf7-submit {
  background-color: #e94d3d;
  border-color: #e94d3d;
  color: #fff;
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  transition: var(--transition-base);
  cursor: pointer;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08), 0 0.25rem 1rem rgba(0, 0, 0, 0.06);
}
.contact-section .wpcf7-form .wpcf7-submit:hover {
  background-color: rgb(209.7, 69.3, 54.9);
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1), 0 1rem 2.5rem rgba(0, 0, 0, 0.08);
}
.contact-section .wpcf7-form .wpcf7-submit:active {
  transform: translateY(0);
}
.contact-section .contact-info {
  font-size: 1rem;
}
.contact-section .contact-info p {
  margin-bottom: 1rem;
  opacity: 0.9;
}
.contact-section .contact-info p strong {
  display: block;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
.contact-section .contact-info i {
  color: #e94d3d;
  width: 1.5em;
}

@media (max-width: 767.98px) {
  :root {
    --section-padding: clamp(2rem, 6vw, 4rem);
  }
  .hero-section {
    min-height: auto;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .hero-section h1 {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: 2rem;
  }
  .hero-section .lead {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  .hero-section .d-flex.gap-3 {
    flex-direction: column;
    gap: 1.5rem;
  }
  .hero-section .d-flex.gap-3 .btn {
    width: 100%;
  }
  .about-section .display-4,
  .articles-section .display-4,
  .contact-section .display-4 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .article-card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 991.98px) {
  .about-section img {
    margin-top: 2rem;
  }
}
.site-main {
  font-size: 1.2rem;
  line-height: 1.7;
}
.site-main .entry-header {
  margin-bottom: 3rem;
}
.site-main .entry-header .entry-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}
.site-main .entry-header .entry-meta {
  font-size: 1rem;
  color: var(--bs-secondary-color);
}
.site-main .entry-content {
  font-size: 1.2rem;
  line-height: 1.7;
}
.site-main .entry-content p {
  margin-bottom: 1.5rem;
}
.site-main .entry-content p:last-child {
  margin-bottom: 0;
}
.site-main .entry-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.site-main .entry-content h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.3;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.site-main .entry-content h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.site-main .entry-content ul,
.site-main .entry-content ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}
.site-main .entry-content ul li,
.site-main .entry-content ol li {
  margin-bottom: 0.75rem;
}
.site-main .entry-content blockquote {
  padding-left: 1.5rem;
  border-left: 4px solid var(--bs-primary);
  margin-left: 0;
  margin-bottom: 1.5rem;
  color: var(--bs-secondary-color);
  font-style: italic;
}
.site-main .entry-content pre,
.site-main .entry-content code {
  font-size: 0.95em;
  line-height: 1.5;
}
.site-main .entry-content code {
  background-color: var(--bs-light);
  padding: 0.25em 0.5em;
  border-radius: 0.25rem;
}
.site-main .entry-content a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: var(--transition-base);
}
.site-main .entry-content a:hover {
  color: var(--bs-primary);
  text-decoration-color: var(--bs-primary);
}
.site-main .entry-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: var(--bs-border-radius);
}
.site-main .entry-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--bs-border-color);
}

*:focus-visible {
  outline: 2px solid #e94d3d;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@media print {
  .hero-section,
  .contact-section {
    background: #fff;
    color: #212529;
  }
  .btn {
    border: 1px solid #212529;
  }
}

/*# sourceMappingURL=custom.css.map */
