/* Section Devenez benevole (accueil) */
.volunteer-section {
  --vol-primary: #ff0a54;
  --vol-on-surface: #191c1d;
}

.volunteer-section__banner {
  position: relative;
  overflow: hidden;
  background: #f8f9fa;
  background:
    radial-gradient(circle at 50% 50%, rgba(184, 0, 73, 0.05) 0%, rgba(248, 249, 250, 0) 70%),
    #f8f9fa;
  padding: 56px 0 48px;
}

.volunteer-section__banner .container {
  position: relative;
  z-index: 1;
}

.volunteer-section__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.volunteer-section__title {
  font-family: "Oswald", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--vol-on-surface);
  margin: 0 0 16px;
}

.volunteer-section__accent {
  width: 96px;
  height: 4px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: var(--vol-primary);
}

.volunteer-section__quote {
  font-family: "Work Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: #000000;
  max-width: 560px;
  margin: 0 auto 32px;
}

.volunteer-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.volunteer-section__actions .btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Work Sans", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
}

.volunteer-section__actions .btn.btn-primary .ion-ios-arrow-forward {
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.25s ease;
}

.volunteer-section__actions .btn.btn-primary:hover .ion-ios-arrow-forward,
.volunteer-section__actions .btn.btn-primary:focus .ion-ios-arrow-forward {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .volunteer-section__banner {
    padding: 72px 0 64px;
  }

  .volunteer-section__title {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .volunteer-section__quote {
    font-size: 20px;
    margin-bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .volunteer-section__actions .btn.btn-primary .ion-ios-arrow-forward {
    transition: none;
  }
}
