.module-volunteer-cta {
  padding: 2em 1rem;
  margin: 1em auto;
}

.module-volunteer-cta__inner {
  width: min(100% - 2rem, 1120px);
  margin: 0 auto;
}

.module-volunteer-cta__card {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 32px;
  background: linear-gradient(140deg, rgba(69, 10, 110, 0.12), rgba(247, 144, 118, 0.18));
  box-shadow: 0 35px 80px rgba(12, 14, 40, 0.16);
}

.module-volunteer-cta__title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #683383;
}

.module-volunteer-cta__body {
  margin: 0;
  color: var(--site-ink-muted, #50586A);
  font-size: 1.1rem;
  line-height: 1.6;
}

.module-volunteer-cta__actions {
  display: flex;
  justify-content: flex-end;
}

.module-volunteer-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.85rem;
  border-radius: 999px;
  background: #ffffff;
  color: #0d1430;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 18px 32px rgba(8, 11, 36, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.module-volunteer-cta__button:hover,
.module-volunteer-cta__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 24px 40px rgba(8, 11, 36, 0.24);
  color: #0d1430;
}

@media (max-width: 767px) {
  .module-volunteer-cta__card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .module-volunteer-cta__actions {
    justify-content: center;
  }
}
