.reasons-to-play {
}

.reasons-title {
  text-align: center;
  margin: 0 0 64px;
}

.reasons-list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px;
}

.reason-card-wrapper {
  width: 32.25%;
  max-width: 400px;
  min-width: 300px;
}

.reason-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 0;
  width: 100%;
}

.reason-card-img-wrapper {
  max-width: 400px;
  width: 100%;
  flex-grow: 1;
}

.reason-card-img {
  display: block;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.reason-card-title-wrapper {
  padding: 26px 4px;
  position: relative;
  background: radial-gradient(
    44.14% 100% at 50% 0%,
    rgba(148, 31, 203, 0.7) 18.63%,
    rgba(103, 6, 178, 0) 99.19%
  );
}

.reason-card-title-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: radial-gradient(
    50.62% 100% at 50% 0%,
    #ca86ff 30.33%,
    rgba(79, 1, 139, 0.2) 100%
  );
}

.reason-card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 1240px) {
  .reasons-list {
    justify-content: space-evenly;
    flex-wrap: wrap;
  }

  .reason-card-wrapper {
    width: auto;
  }
}

@media screen and (max-width: 900px) {
  .reasons-title {
    font-size: 28px;
    line-height: 42px;
  }

  .reason-card-title {
    font-size: 20px;
    line-height: 28px;
  }
}

@media screen and (max-width: 700px) {
  .base-section-container {
    padding: 0 24px;
  }

  .reasons-list {
    gap: 24px;
  }

  .reasons-title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 20px;
  }

  .reason-card-title-wrapper {
    padding: 16px 0;
  }

  .reason-card-title {
    font-size: 16px;
    line-height: 24px;
  }
}
