.page-feature {
  background-color: #0E6959;
  padding-bottom: 60px;
}

.page-feature__container {
  padding: 60px 38px 0 38px;
  max-width: 1440px;
  margin: 0 auto;
}

.page-feature__wrapper {
  position: relative;
}

.page-feature__supertext {
  font-size: 1.375rem;
  line-height: 1.75rem;
  margin-bottom: 20px;
  font-weight: 600;
  color: #ffffff;
  font-family: "TWK Lausanne",sans-serif;
}

.page-feature__title {
  font-size: 3rem;
  line-height: 3.5rem;
  color: #0E6959;
  padding-bottom: 20px;
  margin-bottom: 0;
  color: #C8F6EB;
  font-family: "Wulkan Display", serif;
}

.page-feature__description {
  font-size: 1.125rem;
  line-height: 1.625rem;
  margin-bottom: 30px;
  color: #ffffff;
  font-family: "TWK Lausanne",sans-serif;
}

.page-feature__cta--mobile {
  display: block;
}

.page-feature__image {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 30px;
  max-height: 400px;
  overflow: hidden;
}

.page-feature__image img {
  border-radius: 20px;
  width: 100%;
}

.page-feature__cta {
  margin-bottom: 40px;
}

.page-feature__cta .btn {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5rem;
  border-radius: 64px;
  cursor: pointer;
  padding: 12px 24px;
  font-family: "TWK Lausanne", sans-serif;
  font-weight: 750;
  transition: background-color 0.2s ease-in 0s, color 0.2s ease-in 0s, border-color 0.2s ease-in 0s;
  user-select: none;
  background-color: rgb(171, 230, 41);
  border: 2px solid rgb(171, 230, 41);
  color: #212121;
  text-decoration: none;
}

.page-feature__cta .btn:active,
.page-feature__cta .btn:hover { 
  background-color: rgb(148, 199, 35);
  border-color: rgb(148, 199, 35);
  color: rgb(33, 33, 33);
}

@media (min-width: 1024px) {
  .page-feature {
    padding-bottom: 40px;
  }
  
  .page-feature__cta {
    display: block;
  }

  .page-feature__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 40px;
  }
  
  .page-feature__wrapper > * {
    width: 100%;
    flex: 1 1 0;
  }

  .page-feature__text {
    padding: 40px 0 0;
    min-width: 0;
    max-width: 560px;
  }

  .page-feature__description {
    margin-bottom: 30px;
  }

  .page-feature__supertext {
    margin-bottom: 30px;
  }

  .page-feature__title {
    font-size: 3.25rem;
    line-height: 3.875rem;
  }

  .page-feature__image {
    max-width: 632px;
    align-self: center;
    margin-bottom: 0;
    max-height: 480px;
  }
  
  .page-feature__image img {
    height: 100%;
    max-width: 1304px;
  }
}