.banner {
  padding: 100px 30px;
}

.banner--blue {
  background: #242833;
}

.banner--dark {
  background: var(--bg-brand-color-dark);
}

.banner--gray-light {
  background: transparent;
}

.banner__title p {
  margin: 0;
  word-wrap: break-word;
}

.banner__title {
  color: var(--light-color);
  font-size: 44px;
  font-weight: 200;
  letter-spacing: -2.4px;
  line-height: 48px;
  margin-bottom: 90px;
}

.banner__title strong {
  font-weight: 700;
}

.banner__body {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.48px;
  line-height: 35px;
  margin-bottom: 50px;
}
.banner__body p {
  margin: 0;
}

.banner__link {
  align-items: center;
  border: solid 1px rgba(255, 255, 255, 0.50);
  color: var(--light-color);
  display: flex;
  font-size: 18px;
  font-weight: 500;
  height: 60px;
  letter-spacing: -0.36px;
  line-height: normal;
  max-width: max-content;
  padding: 10px 45px;
  position: relative;
  text-decoration: none;
}

.banner__link::before {
  background: var(--brand-color-pink);
  content: "";
  height: 60px;
  position: absolute;
  right: -60px;
  width: 60px;
}

.banner__link::after {
  background-image: url('/themes/custom/grwpo/images/white-arrow.svg');
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 16px;
  pointer-events: none;
  position: absolute;
  right: -38px;
  width: 16px;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .banner {
    padding: 140px 76px;
  }

  .banner__title {
    font-size: 72px;
    letter-spacing: -3.6px;
    line-height: 70px;
  }

  .banner__body {
    margin-bottom: 80px;
    max-width: 450px;
  }
}

@media only screen and (min-width: 1024px) {
  .banner {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .banner__title {
    flex: 0 0 100%;
    max-width: 800px;
  }

  .banner__body {
    flex: 0 0 55%;
    margin: 0;
  }

  .banner__link {
    flex: 0 0 30%;
    margin-right: 60px;
  }
}

@media only screen and (min-width: 1366px) {
  .banner {
    padding: 140px 136px;
  }

  .banner__title {
    font-size: 82px;
    letter-spacing: -4.1px;
    line-height: 85px;
    margin-right: 50%;
    max-width: 871px;
  }
  .banner__body {
    font-size: 18px;
    max-width: 535px;
  }
  .banner__link {
    padding: 10px 50px;
  }
}

@media only screen and (min-width: 1920px) {
  .banner {
    padding: 140px 181px;
  }

  .banner__title {
    font-size: 92px;
    letter-spacing: -4.6px;
    line-height: 102px;
    max-width: 950px;
  }

  .banner__body {
    font-size: 20px;
    letter-spacing: -0.6px;
    line-height: 40px;
    max-width: 650px;
  }
  .banner__link {
    padding: 10px 75px;
  }
}
