@keyframes yellow-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.5);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes black-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-shadow-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(21, 21, 21, 0.22);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(var(--bs-primary-rgb), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0);
  }
}
@keyframes orange-text-pulse {
  0% {
    color: var(--bs-body-color);
  }
  50% {
    color: var(--bs-link-color);
  }
  100% {
    color: var(--bs-body-color);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
header.home-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--brand-charcoal);
  min-height: clamp(22rem, 52vh, 34rem);
  --hero-panel-bg: #fbf7f0;
  --hero-panel-bg-rgb: 251, 247, 240;
  --hero-panel-width: min(100%, 52%);
  --hero-backdrop-width: calc(var(--hero-panel-width) + clamp(4.5rem, 9vw, 7.5rem));
}

.hero-video-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-layer video {
  width: 100%;
  height: 118%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media (max-width: 767px) {
  .hero-video-layer video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
  }
}

.hero-copy-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  width: var(--hero-backdrop-width);
  background: linear-gradient(90deg, rgba(var(--hero-panel-bg-rgb), 1) 0%, rgba(var(--hero-panel-bg-rgb), 1) 60%, rgba(var(--hero-panel-bg-rgb), 0.94) 66%, rgba(var(--hero-panel-bg-rgb), 0.78) 76%, rgba(var(--hero-panel-bg-rgb), 0.48) 88%, rgba(var(--hero-panel-bg-rgb), 0.18) 95%, transparent 100%);
  pointer-events: none;
}

.hero-copy-backdrop-pattern {
  position: absolute;
  inset: 0;
  background-image: url("/frontend/images/theme/pattern-bg.webp");
  background-size: 220px auto;
  background-repeat: repeat;
  opacity: 0.08;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 62%, transparent 88%);
          mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.55) 62%, transparent 88%);
}

.hero-content-shell {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: inherit;
}

.hero-content-row {
  min-height: clamp(22rem, 52vh, 34rem);
  padding-block: clamp(2rem, 4vw, 3rem);
}

.hero-copy-col {
  position: relative;
  z-index: 2;
}

.hero-aside-col {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-kicker {
  color: var(--bs-primary);
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-title {
  font-family: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  color: #1d1d1d;
  line-height: 1.05;
  max-width: 14ch;
}

.hero-arabic {
  font-size: 1.5rem;
  color: var(--bs-primary);
  line-height: 1.2;
}

.hero-copy-dark {
  display: none;
}

.hero-subtitle {
  letter-spacing: 0.18em;
  color: #5f5a52;
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-description {
  max-width: 34rem;
  color: #222222;
  line-height: 1.75;
  font-size: 1rem;
}

.hero-actions {
  display: inline-flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 100%;
}

.hero-livestream-btn {
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
}

.hero-aside {
  width: 100%;
  max-width: 22rem;
  background: rgba(17, 17, 17, 0.45);
  border: 1px solid rgba(var(--bs-primary-rgb), 0.28);
  border-radius: 1rem;
  padding: 1.5rem 1.35rem;
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.18);
}

.hero-aside-kicker {
  color: var(--bs-primary);
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-aside-lead {
  color: #fbf7f0;
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.92;
}

.hero-aside-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0;
  color: #fbf7f0;
  font-size: 0.92rem;
}
.hero-aside-list li i {
  color: var(--bs-primary);
}

[data-bs-theme=dark] header.home-hero {
  --hero-panel-bg: #111111;
  --hero-panel-bg-rgb: 17, 17, 17;
}
[data-bs-theme=dark] .hero-copy-backdrop {
  background: linear-gradient(90deg, rgba(var(--hero-panel-bg-rgb), 1) 0%, rgba(var(--hero-panel-bg-rgb), 1) 60%, rgba(var(--hero-panel-bg-rgb), 0.95) 66%, rgba(var(--hero-panel-bg-rgb), 0.82) 76%, rgba(var(--hero-panel-bg-rgb), 0.52) 88%, rgba(var(--hero-panel-bg-rgb), 0.2) 95%, transparent 100%);
}
[data-bs-theme=dark] .hero-copy-backdrop-pattern {
  background-image: url("/frontend/images/theme/pattern-bg-3.webp");
  opacity: 0.16;
}
[data-bs-theme=dark] .hero-copy-light {
  display: none;
}
[data-bs-theme=dark] .hero-copy-dark {
  display: block;
}
[data-bs-theme=dark] .hero-title {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .hero-subtitle {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .hero-description {
  color: #f3eadb;
}
[data-bs-theme=dark] .hero-actions .btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-bg: rgba(17, 17, 17, 0.65);
  --bs-btn-hover-color: #151515;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
}

@media (min-width: 1200px) {
  header.home-hero {
    --hero-panel-width: calc((100vw - min(100vw, 1480px)) / 2 + min(100vw, 1480px) * 0.42);
  }
}
@media (max-width: 1199px) {
  header.home-hero {
    --hero-panel-width: 100%;
    --hero-backdrop-width: 100%;
  }
  .hero-copy-backdrop {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .hero-content-row {
    min-height: auto;
  }
  .hero-aside-col {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }
  .hero-aside {
    max-width: none;
  }
}
@media (max-width: 767px) {
  .hero-title {
    max-width: none;
  }
}
[data-bs-theme=dark] main .theme-page,
[data-bs-theme=dark] main .theme-section-alt {
  --bs-body-color: #222222;
  --bs-secondary-color: #5f5a52;
  --bs-emphasis-color: #1d1d1d;
  --bs-border-color: #e5d7bf;
  --bs-link-color: #a67a28;
  --bs-link-hover-color: #8a5a35;
  --theme-heading: #1d1d1d;
  --theme-muted: #5f5a52;
  --theme-surface-1: #ffffff;
  --theme-surface-2: #f5ede0;
  --theme-surface-3: #efe2c8;
  --theme-card-bg: #ffffff;
  --theme-card-border: #eadcc3;
  --theme-card-muted-bg: #f5ede0;
  --theme-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  background: var(--brand-ivory);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .section-heading,
[data-bs-theme=dark] main .theme-page .page-intro-title,
[data-bs-theme=dark] main .theme-section-alt .section-heading,
[data-bs-theme=dark] main .theme-section-alt .page-intro-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .page-intro-subtitle,
[data-bs-theme=dark] main .theme-page .text-meta,
[data-bs-theme=dark] main .theme-section-alt .page-intro-subtitle,
[data-bs-theme=dark] main .theme-section-alt .text-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .page-intro,
[data-bs-theme=dark] main .theme-section-alt .page-intro {
  background: transparent;
  border-bottom-color: #eadcc3;
}
[data-bs-theme=dark] main .theme-page .theme-card,
[data-bs-theme=dark] main .theme-page .theme-listing-card,
[data-bs-theme=dark] main .theme-page .detail-content,
[data-bs-theme=dark] main .theme-page .detail-sidebar,
[data-bs-theme=dark] main .theme-section-alt .theme-card,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card,
[data-bs-theme=dark] main .theme-section-alt .detail-content,
[data-bs-theme=dark] main .theme-section-alt .detail-sidebar {
  background: #ffffff;
  border-color: #eadcc3;
  box-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .theme-listing-card-title,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .theme-listing-card-meta,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .theme-card-header,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header {
  background: var(--brand-charcoal);
  border-bottom-color: rgba(215, 176, 106, 0.22);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-title,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-title {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-title i,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-title i {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-link,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-link {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-link:hover,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-link:hover {
  color: #efd09a;
}
[data-bs-theme=dark] main .theme-page .theme-card-body,
[data-bs-theme=dark] main .theme-section-alt .theme-card-body {
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .misc-content,
[data-bs-theme=dark] main .theme-section-alt .misc-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .misc-content h1,
[data-bs-theme=dark] main .theme-page .misc-content h2,
[data-bs-theme=dark] main .theme-page .misc-content h3,
[data-bs-theme=dark] main .theme-page .misc-content h4,
[data-bs-theme=dark] main .theme-page .misc-content h5,
[data-bs-theme=dark] main .theme-page .misc-content h6,
[data-bs-theme=dark] main .theme-section-alt .misc-content h1,
[data-bs-theme=dark] main .theme-section-alt .misc-content h2,
[data-bs-theme=dark] main .theme-section-alt .misc-content h3,
[data-bs-theme=dark] main .theme-section-alt .misc-content h4,
[data-bs-theme=dark] main .theme-section-alt .misc-content h5,
[data-bs-theme=dark] main .theme-section-alt .misc-content h6 {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .misc-content p,
[data-bs-theme=dark] main .theme-page .misc-content li,
[data-bs-theme=dark] main .theme-page .misc-content span,
[data-bs-theme=dark] main .theme-page .misc-content div,
[data-bs-theme=dark] main .theme-page .misc-content strong,
[data-bs-theme=dark] main .theme-page .misc-content em,
[data-bs-theme=dark] main .theme-section-alt .misc-content p,
[data-bs-theme=dark] main .theme-section-alt .misc-content li,
[data-bs-theme=dark] main .theme-section-alt .misc-content span,
[data-bs-theme=dark] main .theme-section-alt .misc-content div,
[data-bs-theme=dark] main .theme-section-alt .misc-content strong,
[data-bs-theme=dark] main .theme-section-alt .misc-content em {
  color: inherit;
}
[data-bs-theme=dark] main .theme-page .misc-content [style*=color],
[data-bs-theme=dark] main .theme-section-alt .misc-content [style*=color] {
  color: inherit !important;
}
[data-bs-theme=dark] main .theme-page .misc-content a,
[data-bs-theme=dark] main .theme-section-alt .misc-content a {
  color: #a67a28 !important;
}
[data-bs-theme=dark] main .theme-page .misc-content a:hover, [data-bs-theme=dark] main .theme-page .misc-content a:focus,
[data-bs-theme=dark] main .theme-section-alt .misc-content a:hover,
[data-bs-theme=dark] main .theme-section-alt .misc-content a:focus {
  color: #8a5a35 !important;
}
[data-bs-theme=dark] main .theme-page .text-dark,
[data-bs-theme=dark] main .theme-section-alt .text-dark {
  color: #1d1d1d !important;
}
[data-bs-theme=dark] main .theme-page .text-muted,
[data-bs-theme=dark] main .theme-section-alt .text-muted {
  color: #5f5a52 !important;
}
[data-bs-theme=dark] main .theme-page blockquote,
[data-bs-theme=dark] main .theme-page .blockquote,
[data-bs-theme=dark] main .theme-section-alt blockquote,
[data-bs-theme=dark] main .theme-section-alt .blockquote {
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .blockquote-footer,
[data-bs-theme=dark] main .theme-section-alt .blockquote-footer {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .breadcrumb-item.active,
[data-bs-theme=dark] main .theme-section-alt .breadcrumb-item.active {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .form-control,
[data-bs-theme=dark] main .theme-page .form-select,
[data-bs-theme=dark] main .theme-page textarea.form-control,
[data-bs-theme=dark] main .theme-section-alt .form-control,
[data-bs-theme=dark] main .theme-section-alt .form-select,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control {
  background-color: #ffffff;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-control:focus,
[data-bs-theme=dark] main .theme-page .form-select:focus,
[data-bs-theme=dark] main .theme-page textarea.form-control:focus,
[data-bs-theme=dark] main .theme-section-alt .form-control:focus,
[data-bs-theme=dark] main .theme-section-alt .form-select:focus,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control:focus {
  background-color: #ffffff;
  border-color: var(--bs-primary);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-page .form-select::-moz-placeholder, [data-bs-theme=dark] main .theme-page textarea.form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt .form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt .form-select::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt textarea.form-control::-moz-placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .form-control::placeholder,
[data-bs-theme=dark] main .theme-page .form-select::placeholder,
[data-bs-theme=dark] main .theme-page textarea.form-control::placeholder,
[data-bs-theme=dark] main .theme-section-alt .form-control::placeholder,
[data-bs-theme=dark] main .theme-section-alt .form-select::placeholder,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control::placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .input-group-text,
[data-bs-theme=dark] main .theme-section-alt .input-group-text {
  background-color: #f5ede0;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-label,
[data-bs-theme=dark] main .theme-page .col-form-label,
[data-bs-theme=dark] main .theme-section-alt .form-label,
[data-bs-theme=dark] main .theme-section-alt .col-form-label {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .accordion-button,
[data-bs-theme=dark] main .theme-section-alt .accordion-button {
  color: #1d1d1d;
  background: #f5ede0;
}
[data-bs-theme=dark] main .theme-page .accordion-button:not(.collapsed),
[data-bs-theme=dark] main .theme-section-alt .accordion-button:not(.collapsed) {
  color: #1d1d1d;
  background: rgba(200, 154, 61, 0.12);
}
[data-bs-theme=dark] main .theme-page .accordion-body,
[data-bs-theme=dark] main .theme-section-alt .accordion-body {
  color: #222222;
}

.min-vh-75 {
  min-height: clamp(20rem, 48vh, 30rem);
}

.home-card-row {
  background: var(--bs-body-bg);
  padding: 1.75rem 0 2rem !important;
}
.home-card-row .theme-card {
  display: flex;
  flex-direction: column;
}
.home-card-row .theme-card-header {
  padding: 0.65rem 0.9rem;
}
.home-card-row .theme-card-body {
  flex: 1 1 auto;
  padding: 0.75rem 0.9rem;
}
.home-card-row .theme-card:hover {
  transform: none;
}
.home-card-row .prayer-table-compact .prayer-table-head,
.home-card-row .prayer-table-compact .prayer-row, .home-card-row.home-prayer-card .prayer-table .prayer-table-head,
.home-card-row.home-prayer-card .prayer-table .prayer-row {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.85fr) minmax(0, 0.85fr) 1rem;
  gap: 0.3rem;
  padding: 0.42rem 0.45rem;
  font-size: 0.78rem;
}
.home-card-row .prayer-table-compact .prayer-table-head, .home-card-row.home-prayer-card .prayer-table .prayer-table-head {
  font-size: 0.58rem;
  padding-top: 0;
  margin-bottom: 0.15rem;
}
.home-card-row .prayer-table-compact .prayer-table-footer, .home-card-row.home-prayer-card .prayer-table .prayer-table-footer {
  margin-top: 0.55rem;
  padding-top: 0.45rem;
  font-size: 0.72rem;
}
.home-card-row .prayer-table-compact .prayer-bell, .home-card-row.home-prayer-card .prayer-table .prayer-bell {
  font-size: 0.72rem;
}
.home-card-row .prayer-table-compact .prayer-row.is-active, .home-card-row.home-prayer-card .prayer-table .prayer-row.is-active {
  border-radius: 0.55rem;
}
.home-card-row .donate-panel {
  min-width: 0;
  width: 100%;
  padding: 1.35rem 1rem;
}
.home-card-row .donate-panel .donate-panel-title {
  font-size: 1.25rem;
}
.home-card-row .donate-panel .donate-panel-text {
  font-size: 0.82rem;
  margin-bottom: 0.75rem !important;
}
.home-card-row .feature-event-panel .btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.home-card-row .feature-event-dates {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bs-dark);
  margin: 0;
  opacity: 0.9;
}
.home-card-row .feature-event-dates i {
  margin-right: 0.3rem;
}

[data-bs-theme=dark] .home-card-row {
  --bs-body-color: #222222;
  --bs-secondary-color: #5f5a52;
  --bs-emphasis-color: #1d1d1d;
  --bs-border-color: #e5d7bf;
  --bs-link-color: #a67a28;
  --bs-link-hover-color: #8a5a35;
  --theme-heading: #1d1d1d;
  --theme-muted: #5f5a52;
  --theme-surface-1: #ffffff;
  --theme-surface-2: #f5ede0;
  --theme-surface-3: #efe2c8;
  --theme-card-bg: #ffffff;
  --theme-card-border: #eadcc3;
  --theme-card-muted-bg: #f5ede0;
  --theme-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  background: var(--brand-ivory);
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .section-heading,
[data-bs-theme=dark] .home-card-row .page-intro-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-card-row .page-intro-subtitle,
[data-bs-theme=dark] .home-card-row .text-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-card-row .page-intro {
  background: transparent;
  border-bottom-color: #eadcc3;
}
[data-bs-theme=dark] .home-card-row .theme-card,
[data-bs-theme=dark] .home-card-row .theme-listing-card,
[data-bs-theme=dark] .home-card-row .detail-content,
[data-bs-theme=dark] .home-card-row .detail-sidebar {
  background: #ffffff;
  border-color: #eadcc3;
  box-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .theme-listing-card-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-card-row .theme-listing-card-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-card-row .theme-card-header {
  background: var(--brand-charcoal);
  border-bottom-color: rgba(215, 176, 106, 0.22);
}
[data-bs-theme=dark] .home-card-row .theme-card-header .theme-card-header-title {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-card-row .theme-card-header .theme-card-header-title i {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-card-row .theme-card-header .theme-card-header-link {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-card-row .theme-card-header .theme-card-header-link:hover {
  color: #efd09a;
}
[data-bs-theme=dark] .home-card-row .theme-card-body {
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .misc-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .misc-content h1,
[data-bs-theme=dark] .home-card-row .misc-content h2,
[data-bs-theme=dark] .home-card-row .misc-content h3,
[data-bs-theme=dark] .home-card-row .misc-content h4,
[data-bs-theme=dark] .home-card-row .misc-content h5,
[data-bs-theme=dark] .home-card-row .misc-content h6 {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-card-row .misc-content p,
[data-bs-theme=dark] .home-card-row .misc-content li,
[data-bs-theme=dark] .home-card-row .misc-content span,
[data-bs-theme=dark] .home-card-row .misc-content div,
[data-bs-theme=dark] .home-card-row .misc-content strong,
[data-bs-theme=dark] .home-card-row .misc-content em {
  color: inherit;
}
[data-bs-theme=dark] .home-card-row .misc-content [style*=color] {
  color: inherit !important;
}
[data-bs-theme=dark] .home-card-row .misc-content a {
  color: #a67a28 !important;
}
[data-bs-theme=dark] .home-card-row .misc-content a:hover, [data-bs-theme=dark] .home-card-row .misc-content a:focus {
  color: #8a5a35 !important;
}
[data-bs-theme=dark] .home-card-row .text-dark {
  color: #1d1d1d !important;
}
[data-bs-theme=dark] .home-card-row .text-muted {
  color: #5f5a52 !important;
}
[data-bs-theme=dark] .home-card-row blockquote,
[data-bs-theme=dark] .home-card-row .blockquote {
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .blockquote-footer {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-card-row .breadcrumb-item.active {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-card-row .form-control,
[data-bs-theme=dark] .home-card-row .form-select,
[data-bs-theme=dark] .home-card-row textarea.form-control {
  background-color: #ffffff;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .form-control:focus,
[data-bs-theme=dark] .home-card-row .form-select:focus,
[data-bs-theme=dark] .home-card-row textarea.form-control:focus {
  background-color: #ffffff;
  border-color: var(--bs-primary);
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .form-control::-moz-placeholder, [data-bs-theme=dark] .home-card-row .form-select::-moz-placeholder, [data-bs-theme=dark] .home-card-row textarea.form-control::-moz-placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-card-row .form-control::placeholder,
[data-bs-theme=dark] .home-card-row .form-select::placeholder,
[data-bs-theme=dark] .home-card-row textarea.form-control::placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-card-row .input-group-text {
  background-color: #f5ede0;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .form-label,
[data-bs-theme=dark] .home-card-row .col-form-label {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-card-row .accordion-button {
  color: #1d1d1d;
  background: #f5ede0;
}
[data-bs-theme=dark] .home-card-row .accordion-button:not(.collapsed) {
  color: #1d1d1d;
  background: rgba(200, 154, 61, 0.12);
}
[data-bs-theme=dark] .home-card-row .accordion-body {
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .theme-card:hover {
  transform: none;
}
[data-bs-theme=dark] .home-card-row .prayer-name,
[data-bs-theme=dark] .home-card-row .prayer-time,
[data-bs-theme=dark] .home-card-row .prayer-table-head,
[data-bs-theme=dark] .home-card-row .home-event-title,
[data-bs-theme=dark] .home-card-row .home-service-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-card-row .prayer-table-footer {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-card-row .prayer-row.is-active {
  color: #151515;
}
[data-bs-theme=dark] .home-card-row .home-event-item,
[data-bs-theme=dark] .home-card-row .home-service-item {
  border-bottom-color: #eadcc3;
  color: #222222;
}
[data-bs-theme=dark] .home-card-row .home-event-item:hover,
[data-bs-theme=dark] .home-card-row .home-service-item:hover {
  color: #a67a28;
  background: transparent;
}
[data-bs-theme=dark] .home-card-row .home-event-date {
  background: #efe2c8;
}
[data-bs-theme=dark] .home-card-row .home-event-date span,
[data-bs-theme=dark] .home-card-row .home-event-date small {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-card-row .home-event-date strong {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-card-row .home-service-summary {
  color: #5f5a52;
}

.home-events-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-event-poster {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
}
.home-event-poster img {
  width: 100%;
  height: auto;
  display: block;
}

.home-services-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.home-event-item,
.home-service-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid var(--theme-card-border);
  background: transparent;
  color: var(--bs-body-color);
  text-decoration: none;
  transition: color 220ms ease-out, background-color 220ms ease-out;
}
.home-event-item:last-child,
.home-service-item:last-child {
  border-bottom: 0;
}
.home-event-item:hover,
.home-service-item:hover {
  transform: none;
  color: var(--bs-link-color);
  background: transparent;
  text-decoration: none;
}

.home-services-list .home-service-item {
  min-height: 0;
}

.home-service-copy {
  min-width: 0;
}

.home-service-title {
  font-weight: 600;
  color: var(--theme-heading);
  font-size: 0.92rem;
  line-height: 1.25;
  margin-bottom: 0.1rem;
}

.home-service-summary {
  display: block;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--theme-muted);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.home-classes-card .theme-card-body {
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}

.home-event-date {
  min-width: 3rem;
  text-align: center;
  background: var(--theme-surface-3);
  border-radius: 0.55rem;
  padding: 0.3rem 0.35rem;
  flex-shrink: 0;
}
.home-event-date span {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  color: var(--theme-muted);
  line-height: 1.1;
}
.home-event-date strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--theme-heading);
}
.home-event-date small {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  color: var(--theme-muted);
}

.home-event-title {
  font-weight: 600;
  color: var(--theme-heading);
}

.home-item-chevron {
  color: var(--bs-primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.home-service-icon {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  background: rgba(var(--bs-primary-rgb), 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bs-primary);
  flex-shrink: 0;
  font-size: 0.85rem;
}

#whatsapp-block {
  background: var(--theme-surface-2);
  padding: 3rem 0;
  border-top: 1px solid var(--bs-border-color);
}
#whatsapp-block .title {
  color: var(--theme-heading);
  font-family: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  margin-bottom: 1.5rem;
}

#mobile-app-section {
  background-color: var(--bs-body-bg);
  width: 100%;
  padding: 24px 15px;
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  #mobile-app-section {
    padding-right: 140px;
    padding-left: 140px;
  }
}
@media (min-width: 991px) and (max-width: 1153px) {
  #mobile-app-section {
    padding-right: 45px;
    padding-left: 45px;
  }
}
#mobile-app-section #mobile-app-content,
#mobile-app-section #mobile-app-info {
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
#mobile-app-section #mobile-app-content .title,
#mobile-app-section #mobile-app-info .title {
  color: var(--bs-link-color);
  text-transform: capitalize;
  padding-top: 10px;
  font-weight: 700;
  font-size: 2.34375rem;
}
#mobile-app-section #mobile-app-content .cover,
#mobile-app-section #mobile-app-info .cover {
  padding: 0.25rem;
  background-color: var(--theme-surface-2);
  border: 1px solid var(--bs-border-color);
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  #mobile-app-section #mobile-app-content .cover,
  #mobile-app-section #mobile-app-info .cover {
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  #mobile-app-section #mobile-app-content {
    flex: 0 0 60%;
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  #mobile-app-section #mobile-app-content {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
#mobile-app-section #mobile-app-info {
  padding-top: 40px;
  color: var(--bs-body-color);
  font-size: 16px;
}
@media (min-width: 768px) {
  #mobile-app-section #mobile-app-info {
    padding-top: 10px;
    flex: 0 0 40%;
    max-width: 40%;
  }
}
@media (min-width: 992px) {
  #mobile-app-section #mobile-app-info {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
#mobile-app-section #mobile-app-info ul {
  padding-left: 0;
  list-style: none;
  margin-top: 30px;
}
#mobile-app-section #mobile-app-info ul li {
  line-height: 10px;
}

#articles-section .cover {
  max-width: 100%;
  height: auto;
  border-radius: 1rem;
}
#articles-section #paginate-block {
  padding-top: 2rem;
}
#articles-section.home-partial {
  padding-bottom: 0;
}

[data-bs-theme=dark] main .theme-page,
[data-bs-theme=dark] main .theme-section-alt {
  --bs-body-color: #222222;
  --bs-secondary-color: #5f5a52;
  --bs-emphasis-color: #1d1d1d;
  --bs-border-color: #e5d7bf;
  --bs-link-color: #a67a28;
  --bs-link-hover-color: #8a5a35;
  --theme-heading: #1d1d1d;
  --theme-muted: #5f5a52;
  --theme-surface-1: #ffffff;
  --theme-surface-2: #f5ede0;
  --theme-surface-3: #efe2c8;
  --theme-card-bg: #ffffff;
  --theme-card-border: #eadcc3;
  --theme-card-muted-bg: #f5ede0;
  --theme-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  background: var(--brand-ivory);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .section-heading,
[data-bs-theme=dark] main .theme-page .page-intro-title,
[data-bs-theme=dark] main .theme-section-alt .section-heading,
[data-bs-theme=dark] main .theme-section-alt .page-intro-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .page-intro-subtitle,
[data-bs-theme=dark] main .theme-page .text-meta,
[data-bs-theme=dark] main .theme-section-alt .page-intro-subtitle,
[data-bs-theme=dark] main .theme-section-alt .text-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .page-intro,
[data-bs-theme=dark] main .theme-section-alt .page-intro {
  background: transparent;
  border-bottom-color: #eadcc3;
}
[data-bs-theme=dark] main .theme-page .theme-card,
[data-bs-theme=dark] main .theme-page .theme-listing-card,
[data-bs-theme=dark] main .theme-page .detail-content,
[data-bs-theme=dark] main .theme-page .detail-sidebar,
[data-bs-theme=dark] main .theme-section-alt .theme-card,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card,
[data-bs-theme=dark] main .theme-section-alt .detail-content,
[data-bs-theme=dark] main .theme-section-alt .detail-sidebar {
  background: #ffffff;
  border-color: #eadcc3;
  box-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .theme-listing-card-title,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .theme-listing-card-meta,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .theme-card-header,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header {
  background: var(--brand-charcoal);
  border-bottom-color: rgba(215, 176, 106, 0.22);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-title,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-title {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-title i,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-title i {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-link,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-link {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-link:hover,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-link:hover {
  color: #efd09a;
}
[data-bs-theme=dark] main .theme-page .theme-card-body,
[data-bs-theme=dark] main .theme-section-alt .theme-card-body {
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .misc-content,
[data-bs-theme=dark] main .theme-section-alt .misc-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .misc-content h1,
[data-bs-theme=dark] main .theme-page .misc-content h2,
[data-bs-theme=dark] main .theme-page .misc-content h3,
[data-bs-theme=dark] main .theme-page .misc-content h4,
[data-bs-theme=dark] main .theme-page .misc-content h5,
[data-bs-theme=dark] main .theme-page .misc-content h6,
[data-bs-theme=dark] main .theme-section-alt .misc-content h1,
[data-bs-theme=dark] main .theme-section-alt .misc-content h2,
[data-bs-theme=dark] main .theme-section-alt .misc-content h3,
[data-bs-theme=dark] main .theme-section-alt .misc-content h4,
[data-bs-theme=dark] main .theme-section-alt .misc-content h5,
[data-bs-theme=dark] main .theme-section-alt .misc-content h6 {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .misc-content p,
[data-bs-theme=dark] main .theme-page .misc-content li,
[data-bs-theme=dark] main .theme-page .misc-content span,
[data-bs-theme=dark] main .theme-page .misc-content div,
[data-bs-theme=dark] main .theme-page .misc-content strong,
[data-bs-theme=dark] main .theme-page .misc-content em,
[data-bs-theme=dark] main .theme-section-alt .misc-content p,
[data-bs-theme=dark] main .theme-section-alt .misc-content li,
[data-bs-theme=dark] main .theme-section-alt .misc-content span,
[data-bs-theme=dark] main .theme-section-alt .misc-content div,
[data-bs-theme=dark] main .theme-section-alt .misc-content strong,
[data-bs-theme=dark] main .theme-section-alt .misc-content em {
  color: inherit;
}
[data-bs-theme=dark] main .theme-page .misc-content [style*=color],
[data-bs-theme=dark] main .theme-section-alt .misc-content [style*=color] {
  color: inherit !important;
}
[data-bs-theme=dark] main .theme-page .misc-content a,
[data-bs-theme=dark] main .theme-section-alt .misc-content a {
  color: #a67a28 !important;
}
[data-bs-theme=dark] main .theme-page .misc-content a:hover, [data-bs-theme=dark] main .theme-page .misc-content a:focus,
[data-bs-theme=dark] main .theme-section-alt .misc-content a:hover,
[data-bs-theme=dark] main .theme-section-alt .misc-content a:focus {
  color: #8a5a35 !important;
}
[data-bs-theme=dark] main .theme-page .text-dark,
[data-bs-theme=dark] main .theme-section-alt .text-dark {
  color: #1d1d1d !important;
}
[data-bs-theme=dark] main .theme-page .text-muted,
[data-bs-theme=dark] main .theme-section-alt .text-muted {
  color: #5f5a52 !important;
}
[data-bs-theme=dark] main .theme-page blockquote,
[data-bs-theme=dark] main .theme-page .blockquote,
[data-bs-theme=dark] main .theme-section-alt blockquote,
[data-bs-theme=dark] main .theme-section-alt .blockquote {
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .blockquote-footer,
[data-bs-theme=dark] main .theme-section-alt .blockquote-footer {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .breadcrumb-item.active,
[data-bs-theme=dark] main .theme-section-alt .breadcrumb-item.active {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .form-control,
[data-bs-theme=dark] main .theme-page .form-select,
[data-bs-theme=dark] main .theme-page textarea.form-control,
[data-bs-theme=dark] main .theme-section-alt .form-control,
[data-bs-theme=dark] main .theme-section-alt .form-select,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control {
  background-color: #ffffff;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-control:focus,
[data-bs-theme=dark] main .theme-page .form-select:focus,
[data-bs-theme=dark] main .theme-page textarea.form-control:focus,
[data-bs-theme=dark] main .theme-section-alt .form-control:focus,
[data-bs-theme=dark] main .theme-section-alt .form-select:focus,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control:focus {
  background-color: #ffffff;
  border-color: var(--bs-primary);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-page .form-select::-moz-placeholder, [data-bs-theme=dark] main .theme-page textarea.form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt .form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt .form-select::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt textarea.form-control::-moz-placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .form-control::placeholder,
[data-bs-theme=dark] main .theme-page .form-select::placeholder,
[data-bs-theme=dark] main .theme-page textarea.form-control::placeholder,
[data-bs-theme=dark] main .theme-section-alt .form-control::placeholder,
[data-bs-theme=dark] main .theme-section-alt .form-select::placeholder,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control::placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .input-group-text,
[data-bs-theme=dark] main .theme-section-alt .input-group-text {
  background-color: #f5ede0;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-label,
[data-bs-theme=dark] main .theme-page .col-form-label,
[data-bs-theme=dark] main .theme-section-alt .form-label,
[data-bs-theme=dark] main .theme-section-alt .col-form-label {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .accordion-button,
[data-bs-theme=dark] main .theme-section-alt .accordion-button {
  color: #1d1d1d;
  background: #f5ede0;
}
[data-bs-theme=dark] main .theme-page .accordion-button:not(.collapsed),
[data-bs-theme=dark] main .theme-section-alt .accordion-button:not(.collapsed) {
  color: #1d1d1d;
  background: rgba(200, 154, 61, 0.12);
}
[data-bs-theme=dark] main .theme-page .accordion-body,
[data-bs-theme=dark] main .theme-section-alt .accordion-body {
  color: #222222;
}

.home-history-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.home-history-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  grid-template-areas: "copy media";
  align-items: stretch;
}

.home-history-copy {
  grid-area: copy;
}

.home-history-media {
  grid-area: media;
  display: flex;
  flex-direction: column;
}

.home-history-card {
  display: flex;
  flex-direction: column;
}
.home-history-card .theme-card-body {
  flex: 1 1 auto;
}

.home-history-text {
  color: var(--bs-body-color);
  line-height: 1.75;
  font-size: 0.98rem;
}
.home-history-text p {
  margin-bottom: 1rem;
}
.home-history-text p:last-child {
  margin-bottom: 0;
}

.home-history-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--brand-charcoal);
  box-shadow: var(--theme-shadow);
}
.home-history-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.home-history-quote .theme-card-body {
  padding: 1.35rem 1.5rem;
}
.home-history-quote .blockquote {
  font-family: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  font-size: 1.05rem;
  color: var(--theme-heading);
  text-align: center;
}
.home-history-quote .blockquote-footer {
  color: var(--theme-muted);
  font-size: 0.82rem;
}

[data-bs-theme=dark] .home-history-section {
  --bs-body-color: #222222;
  --bs-secondary-color: #5f5a52;
  --bs-emphasis-color: #1d1d1d;
  --bs-border-color: #e5d7bf;
  --bs-link-color: #a67a28;
  --bs-link-hover-color: #8a5a35;
  --theme-heading: #1d1d1d;
  --theme-muted: #5f5a52;
  --theme-surface-1: #ffffff;
  --theme-surface-2: #f5ede0;
  --theme-surface-3: #efe2c8;
  --theme-card-bg: #ffffff;
  --theme-card-border: #eadcc3;
  --theme-card-muted-bg: #f5ede0;
  --theme-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  background: var(--brand-ivory);
  color: #222222;
}
[data-bs-theme=dark] .home-history-section .section-heading,
[data-bs-theme=dark] .home-history-section .page-intro-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-history-section .page-intro-subtitle,
[data-bs-theme=dark] .home-history-section .text-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-history-section .page-intro {
  background: transparent;
  border-bottom-color: #eadcc3;
}
[data-bs-theme=dark] .home-history-section .theme-card,
[data-bs-theme=dark] .home-history-section .theme-listing-card,
[data-bs-theme=dark] .home-history-section .detail-content,
[data-bs-theme=dark] .home-history-section .detail-sidebar {
  background: #ffffff;
  border-color: #eadcc3;
  box-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  color: #222222;
}
[data-bs-theme=dark] .home-history-section .theme-listing-card-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-history-section .theme-listing-card-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-history-section .theme-card-header {
  background: var(--brand-charcoal);
  border-bottom-color: rgba(215, 176, 106, 0.22);
}
[data-bs-theme=dark] .home-history-section .theme-card-header .theme-card-header-title {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-history-section .theme-card-header .theme-card-header-title i {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-history-section .theme-card-header .theme-card-header-link {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-history-section .theme-card-header .theme-card-header-link:hover {
  color: #efd09a;
}
[data-bs-theme=dark] .home-history-section .theme-card-body {
  color: #222222;
}
[data-bs-theme=dark] .home-history-section .misc-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #222222;
}
[data-bs-theme=dark] .home-history-section .misc-content h1,
[data-bs-theme=dark] .home-history-section .misc-content h2,
[data-bs-theme=dark] .home-history-section .misc-content h3,
[data-bs-theme=dark] .home-history-section .misc-content h4,
[data-bs-theme=dark] .home-history-section .misc-content h5,
[data-bs-theme=dark] .home-history-section .misc-content h6 {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-history-section .misc-content p,
[data-bs-theme=dark] .home-history-section .misc-content li,
[data-bs-theme=dark] .home-history-section .misc-content span,
[data-bs-theme=dark] .home-history-section .misc-content div,
[data-bs-theme=dark] .home-history-section .misc-content strong,
[data-bs-theme=dark] .home-history-section .misc-content em {
  color: inherit;
}
[data-bs-theme=dark] .home-history-section .misc-content [style*=color] {
  color: inherit !important;
}
[data-bs-theme=dark] .home-history-section .misc-content a {
  color: #a67a28 !important;
}
[data-bs-theme=dark] .home-history-section .misc-content a:hover, [data-bs-theme=dark] .home-history-section .misc-content a:focus {
  color: #8a5a35 !important;
}
[data-bs-theme=dark] .home-history-section .text-dark {
  color: #1d1d1d !important;
}
[data-bs-theme=dark] .home-history-section .text-muted {
  color: #5f5a52 !important;
}
[data-bs-theme=dark] .home-history-section blockquote,
[data-bs-theme=dark] .home-history-section .blockquote {
  color: #222222;
}
[data-bs-theme=dark] .home-history-section .blockquote-footer {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-history-section .breadcrumb-item.active {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-history-section .form-control,
[data-bs-theme=dark] .home-history-section .form-select,
[data-bs-theme=dark] .home-history-section textarea.form-control {
  background-color: #ffffff;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] .home-history-section .form-control:focus,
[data-bs-theme=dark] .home-history-section .form-select:focus,
[data-bs-theme=dark] .home-history-section textarea.form-control:focus {
  background-color: #ffffff;
  border-color: var(--bs-primary);
  color: #222222;
}
[data-bs-theme=dark] .home-history-section .form-control::-moz-placeholder, [data-bs-theme=dark] .home-history-section .form-select::-moz-placeholder, [data-bs-theme=dark] .home-history-section textarea.form-control::-moz-placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-history-section .form-control::placeholder,
[data-bs-theme=dark] .home-history-section .form-select::placeholder,
[data-bs-theme=dark] .home-history-section textarea.form-control::placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-history-section .input-group-text {
  background-color: #f5ede0;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] .home-history-section .form-label,
[data-bs-theme=dark] .home-history-section .col-form-label {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-history-section .accordion-button {
  color: #1d1d1d;
  background: #f5ede0;
}
[data-bs-theme=dark] .home-history-section .accordion-button:not(.collapsed) {
  color: #1d1d1d;
  background: rgba(200, 154, 61, 0.12);
}
[data-bs-theme=dark] .home-history-section .accordion-body {
  color: #222222;
}

@media (max-width: 1199px) {
  .home-history-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "media";
    gap: 1.25rem;
  }
}
@media (max-width: 767px) {
  .home-history-section {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }
}
.home-donations-section .home-donation-events-grid {
  grid-template-columns: 1fr;
}
.home-donations-section .home-donation-form-card .theme-card-body {
  padding: 0;
}

.donation-form .donation-form-layout {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr;
}
@media (min-width: 1200px) {
  .donation-form .donation-form-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  }
}
.donation-form .donation-form-panel {
  padding: 1.35rem 1.5rem;
}
.donation-form .donation-form-panel + .donation-form-panel {
  border-top: 1px solid var(--theme-card-border);
}
@media (min-width: 1200px) {
  .donation-form .donation-form-panel + .donation-form-panel {
    border-top: 0;
    border-left: 1px solid var(--theme-card-border);
  }
}
.donation-form .donation-form-panel-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--theme-heading);
  margin-bottom: 1rem;
}
.donation-form .donation-form-panel-title i {
  color: var(--bs-primary);
}
.donation-form .donation-form-fields {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .donation-form .donation-form-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .donation-form .donation-form-field-full {
    grid-column: 1/-1;
  }
}
.donation-form .donation-form-field {
  min-width: 0;
}
.donation-form .donation-form-field .col-form-label {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-bottom: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--theme-heading);
}
.donation-form .donation-form-field > div {
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
.donation-form .donation-form-field .form-control,
.donation-form .donation-form-field .form-select {
  min-height: 2.75rem;
}
.donation-form .donation-form-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.donation-form .donation-form-gift-aid {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--theme-card-border);
}
.donation-form .donation-form-note {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--theme-muted);
  margin: 0.75rem 0 0;
}
.donation-form .donation-form-note-strong {
  font-weight: 600;
  color: var(--theme-heading);
}
.donation-form .donation-form-submit {
  margin-top: 1rem;
}
.donation-form .donation-form-intro {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--theme-muted);
  margin-bottom: 1rem;
}
.donation-form .donation-form-monthly-grid {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .donation-form .donation-form-monthly-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.donation-form .donation-form-monthly-grid .btn {
  justify-content: center;
  white-space: normal;
  line-height: 1.35;
  padding: 0.65rem 0.75rem;
}
.donation-form .donation-form-panel-monthly {
  background: var(--theme-surface-2);
}

[data-bs-theme=dark] main .theme-page,
[data-bs-theme=dark] main .theme-section-alt {
  --bs-body-color: #222222;
  --bs-secondary-color: #5f5a52;
  --bs-emphasis-color: #1d1d1d;
  --bs-border-color: #e5d7bf;
  --bs-link-color: #a67a28;
  --bs-link-hover-color: #8a5a35;
  --theme-heading: #1d1d1d;
  --theme-muted: #5f5a52;
  --theme-surface-1: #ffffff;
  --theme-surface-2: #f5ede0;
  --theme-surface-3: #efe2c8;
  --theme-card-bg: #ffffff;
  --theme-card-border: #eadcc3;
  --theme-card-muted-bg: #f5ede0;
  --theme-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  background: var(--brand-ivory);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .section-heading,
[data-bs-theme=dark] main .theme-page .page-intro-title,
[data-bs-theme=dark] main .theme-section-alt .section-heading,
[data-bs-theme=dark] main .theme-section-alt .page-intro-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .page-intro-subtitle,
[data-bs-theme=dark] main .theme-page .text-meta,
[data-bs-theme=dark] main .theme-section-alt .page-intro-subtitle,
[data-bs-theme=dark] main .theme-section-alt .text-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .page-intro,
[data-bs-theme=dark] main .theme-section-alt .page-intro {
  background: transparent;
  border-bottom-color: #eadcc3;
}
[data-bs-theme=dark] main .theme-page .theme-card,
[data-bs-theme=dark] main .theme-page .theme-listing-card,
[data-bs-theme=dark] main .theme-page .detail-content,
[data-bs-theme=dark] main .theme-page .detail-sidebar,
[data-bs-theme=dark] main .theme-section-alt .theme-card,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card,
[data-bs-theme=dark] main .theme-section-alt .detail-content,
[data-bs-theme=dark] main .theme-section-alt .detail-sidebar {
  background: #ffffff;
  border-color: #eadcc3;
  box-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .theme-listing-card-title,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .theme-listing-card-meta,
[data-bs-theme=dark] main .theme-section-alt .theme-listing-card-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .theme-card-header,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header {
  background: var(--brand-charcoal);
  border-bottom-color: rgba(215, 176, 106, 0.22);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-title,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-title {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-title i,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-title i {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-link,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-link {
  color: var(--bs-primary);
}
[data-bs-theme=dark] main .theme-page .theme-card-header .theme-card-header-link:hover,
[data-bs-theme=dark] main .theme-section-alt .theme-card-header .theme-card-header-link:hover {
  color: #efd09a;
}
[data-bs-theme=dark] main .theme-page .theme-card-body,
[data-bs-theme=dark] main .theme-section-alt .theme-card-body {
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .misc-content,
[data-bs-theme=dark] main .theme-section-alt .misc-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .misc-content h1,
[data-bs-theme=dark] main .theme-page .misc-content h2,
[data-bs-theme=dark] main .theme-page .misc-content h3,
[data-bs-theme=dark] main .theme-page .misc-content h4,
[data-bs-theme=dark] main .theme-page .misc-content h5,
[data-bs-theme=dark] main .theme-page .misc-content h6,
[data-bs-theme=dark] main .theme-section-alt .misc-content h1,
[data-bs-theme=dark] main .theme-section-alt .misc-content h2,
[data-bs-theme=dark] main .theme-section-alt .misc-content h3,
[data-bs-theme=dark] main .theme-section-alt .misc-content h4,
[data-bs-theme=dark] main .theme-section-alt .misc-content h5,
[data-bs-theme=dark] main .theme-section-alt .misc-content h6 {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .misc-content p,
[data-bs-theme=dark] main .theme-page .misc-content li,
[data-bs-theme=dark] main .theme-page .misc-content span,
[data-bs-theme=dark] main .theme-page .misc-content div,
[data-bs-theme=dark] main .theme-page .misc-content strong,
[data-bs-theme=dark] main .theme-page .misc-content em,
[data-bs-theme=dark] main .theme-section-alt .misc-content p,
[data-bs-theme=dark] main .theme-section-alt .misc-content li,
[data-bs-theme=dark] main .theme-section-alt .misc-content span,
[data-bs-theme=dark] main .theme-section-alt .misc-content div,
[data-bs-theme=dark] main .theme-section-alt .misc-content strong,
[data-bs-theme=dark] main .theme-section-alt .misc-content em {
  color: inherit;
}
[data-bs-theme=dark] main .theme-page .misc-content [style*=color],
[data-bs-theme=dark] main .theme-section-alt .misc-content [style*=color] {
  color: inherit !important;
}
[data-bs-theme=dark] main .theme-page .misc-content a,
[data-bs-theme=dark] main .theme-section-alt .misc-content a {
  color: #a67a28 !important;
}
[data-bs-theme=dark] main .theme-page .misc-content a:hover, [data-bs-theme=dark] main .theme-page .misc-content a:focus,
[data-bs-theme=dark] main .theme-section-alt .misc-content a:hover,
[data-bs-theme=dark] main .theme-section-alt .misc-content a:focus {
  color: #8a5a35 !important;
}
[data-bs-theme=dark] main .theme-page .text-dark,
[data-bs-theme=dark] main .theme-section-alt .text-dark {
  color: #1d1d1d !important;
}
[data-bs-theme=dark] main .theme-page .text-muted,
[data-bs-theme=dark] main .theme-section-alt .text-muted {
  color: #5f5a52 !important;
}
[data-bs-theme=dark] main .theme-page blockquote,
[data-bs-theme=dark] main .theme-page .blockquote,
[data-bs-theme=dark] main .theme-section-alt blockquote,
[data-bs-theme=dark] main .theme-section-alt .blockquote {
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .blockquote-footer,
[data-bs-theme=dark] main .theme-section-alt .blockquote-footer {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .breadcrumb-item.active,
[data-bs-theme=dark] main .theme-section-alt .breadcrumb-item.active {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .form-control,
[data-bs-theme=dark] main .theme-page .form-select,
[data-bs-theme=dark] main .theme-page textarea.form-control,
[data-bs-theme=dark] main .theme-section-alt .form-control,
[data-bs-theme=dark] main .theme-section-alt .form-select,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control {
  background-color: #ffffff;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-control:focus,
[data-bs-theme=dark] main .theme-page .form-select:focus,
[data-bs-theme=dark] main .theme-page textarea.form-control:focus,
[data-bs-theme=dark] main .theme-section-alt .form-control:focus,
[data-bs-theme=dark] main .theme-section-alt .form-select:focus,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control:focus {
  background-color: #ffffff;
  border-color: var(--bs-primary);
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-page .form-select::-moz-placeholder, [data-bs-theme=dark] main .theme-page textarea.form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt .form-control::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt .form-select::-moz-placeholder, [data-bs-theme=dark] main .theme-section-alt textarea.form-control::-moz-placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .form-control::placeholder,
[data-bs-theme=dark] main .theme-page .form-select::placeholder,
[data-bs-theme=dark] main .theme-page textarea.form-control::placeholder,
[data-bs-theme=dark] main .theme-section-alt .form-control::placeholder,
[data-bs-theme=dark] main .theme-section-alt .form-select::placeholder,
[data-bs-theme=dark] main .theme-section-alt textarea.form-control::placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] main .theme-page .input-group-text,
[data-bs-theme=dark] main .theme-section-alt .input-group-text {
  background-color: #f5ede0;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] main .theme-page .form-label,
[data-bs-theme=dark] main .theme-page .col-form-label,
[data-bs-theme=dark] main .theme-section-alt .form-label,
[data-bs-theme=dark] main .theme-section-alt .col-form-label {
  color: #1d1d1d;
}
[data-bs-theme=dark] main .theme-page .accordion-button,
[data-bs-theme=dark] main .theme-section-alt .accordion-button {
  color: #1d1d1d;
  background: #f5ede0;
}
[data-bs-theme=dark] main .theme-page .accordion-button:not(.collapsed),
[data-bs-theme=dark] main .theme-section-alt .accordion-button:not(.collapsed) {
  color: #1d1d1d;
  background: rgba(200, 154, 61, 0.12);
}
[data-bs-theme=dark] main .theme-page .accordion-body,
[data-bs-theme=dark] main .theme-section-alt .accordion-body {
  color: #222222;
}

.home-services-section .home-services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .home-services-section .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .home-services-section .home-services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.home-service-card {
  display: flex;
  flex-direction: column;
  background: var(--theme-card-bg);
  border: 1px solid var(--theme-card-border);
  border-radius: 1.15rem;
  overflow: hidden;
  box-shadow: var(--theme-shadow);
  color: var(--bs-body-color);
  text-decoration: none;
  min-height: 100%;
  transition: transform 220ms ease-out, box-shadow 220ms ease-out;
}
.home-service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 1rem 2rem rgba(21, 21, 21, 0.12);
  color: var(--bs-body-color);
  text-decoration: none;
}

.home-service-card-media {
  position: relative;
  aspect-ratio: 16/10;
  width: 100%;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--theme-surface-2);
}
.home-service-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.home-service-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1 1 auto;
}

.home-service-card-title {
  font-family: "Cormorant Garamond", "Baskerville", "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--theme-heading);
  line-height: 1.25;
}

.home-service-card-summary {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--theme-muted);
}

[data-bs-theme=dark] .home-services-section {
  --bs-body-color: #222222;
  --bs-secondary-color: #5f5a52;
  --bs-emphasis-color: #1d1d1d;
  --bs-border-color: #e5d7bf;
  --bs-link-color: #a67a28;
  --bs-link-hover-color: #8a5a35;
  --theme-heading: #1d1d1d;
  --theme-muted: #5f5a52;
  --theme-surface-1: #ffffff;
  --theme-surface-2: #f5ede0;
  --theme-surface-3: #efe2c8;
  --theme-card-bg: #ffffff;
  --theme-card-border: #eadcc3;
  --theme-card-muted-bg: #f5ede0;
  --theme-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  background: var(--brand-ivory);
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .section-heading,
[data-bs-theme=dark] .home-services-section .page-intro-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-services-section .page-intro-subtitle,
[data-bs-theme=dark] .home-services-section .text-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-services-section .page-intro {
  background: transparent;
  border-bottom-color: #eadcc3;
}
[data-bs-theme=dark] .home-services-section .theme-card,
[data-bs-theme=dark] .home-services-section .theme-listing-card,
[data-bs-theme=dark] .home-services-section .detail-content,
[data-bs-theme=dark] .home-services-section .detail-sidebar {
  background: #ffffff;
  border-color: #eadcc3;
  box-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .theme-listing-card-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-services-section .theme-listing-card-meta {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-services-section .theme-card-header {
  background: var(--brand-charcoal);
  border-bottom-color: rgba(215, 176, 106, 0.22);
}
[data-bs-theme=dark] .home-services-section .theme-card-header .theme-card-header-title {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-services-section .theme-card-header .theme-card-header-title i {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-services-section .theme-card-header .theme-card-header-link {
  color: var(--bs-primary);
}
[data-bs-theme=dark] .home-services-section .theme-card-header .theme-card-header-link:hover {
  color: #efd09a;
}
[data-bs-theme=dark] .home-services-section .theme-card-body {
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .misc-content {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .misc-content h1,
[data-bs-theme=dark] .home-services-section .misc-content h2,
[data-bs-theme=dark] .home-services-section .misc-content h3,
[data-bs-theme=dark] .home-services-section .misc-content h4,
[data-bs-theme=dark] .home-services-section .misc-content h5,
[data-bs-theme=dark] .home-services-section .misc-content h6 {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-services-section .misc-content p,
[data-bs-theme=dark] .home-services-section .misc-content li,
[data-bs-theme=dark] .home-services-section .misc-content span,
[data-bs-theme=dark] .home-services-section .misc-content div,
[data-bs-theme=dark] .home-services-section .misc-content strong,
[data-bs-theme=dark] .home-services-section .misc-content em {
  color: inherit;
}
[data-bs-theme=dark] .home-services-section .misc-content [style*=color] {
  color: inherit !important;
}
[data-bs-theme=dark] .home-services-section .misc-content a {
  color: #a67a28 !important;
}
[data-bs-theme=dark] .home-services-section .misc-content a:hover, [data-bs-theme=dark] .home-services-section .misc-content a:focus {
  color: #8a5a35 !important;
}
[data-bs-theme=dark] .home-services-section .text-dark {
  color: #1d1d1d !important;
}
[data-bs-theme=dark] .home-services-section .text-muted {
  color: #5f5a52 !important;
}
[data-bs-theme=dark] .home-services-section blockquote,
[data-bs-theme=dark] .home-services-section .blockquote {
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .blockquote-footer {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-services-section .breadcrumb-item.active {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-services-section .form-control,
[data-bs-theme=dark] .home-services-section .form-select,
[data-bs-theme=dark] .home-services-section textarea.form-control {
  background-color: #ffffff;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .form-control:focus,
[data-bs-theme=dark] .home-services-section .form-select:focus,
[data-bs-theme=dark] .home-services-section textarea.form-control:focus {
  background-color: #ffffff;
  border-color: var(--bs-primary);
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .form-control::-moz-placeholder, [data-bs-theme=dark] .home-services-section .form-select::-moz-placeholder, [data-bs-theme=dark] .home-services-section textarea.form-control::-moz-placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-services-section .form-control::placeholder,
[data-bs-theme=dark] .home-services-section .form-select::placeholder,
[data-bs-theme=dark] .home-services-section textarea.form-control::placeholder {
  color: #5f5a52;
}
[data-bs-theme=dark] .home-services-section .input-group-text {
  background-color: #f5ede0;
  border-color: #e5d7bf;
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .form-label,
[data-bs-theme=dark] .home-services-section .col-form-label {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-services-section .accordion-button {
  color: #1d1d1d;
  background: #f5ede0;
}
[data-bs-theme=dark] .home-services-section .accordion-button:not(.collapsed) {
  color: #1d1d1d;
  background: rgba(200, 154, 61, 0.12);
}
[data-bs-theme=dark] .home-services-section .accordion-body {
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .home-service-card {
  background: #ffffff;
  border-color: #eadcc3;
  box-shadow: 0 0.75rem 2rem rgba(21, 21, 21, 0.08);
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .home-service-card:hover {
  box-shadow: 0 1rem 2rem rgba(21, 21, 21, 0.12);
  color: #222222;
}
[data-bs-theme=dark] .home-services-section .home-service-card-title {
  color: #1d1d1d;
}
[data-bs-theme=dark] .home-services-section .home-service-card-summary {
  color: #5f5a52;
}

#donations-section #paginate-block {
  padding-top: 2rem;
}
