.ra-hero {
  padding-top: 32px;
  padding-bottom: 0;
}

.ra-hero__inner {
  position: relative;
  border-radius: var(--ra-radius-lg);
  overflow: hidden;
  background-color: #1a1308;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: stretch;
  isolation: isolate;
  padding-bottom: 80px;
}

.ra-hero__content {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 560px;
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ra-hero__logo {
  display: inline-block;
  margin-bottom: 24px;
  max-width: 240px;
}

.ra-hero__logo img {
  max-width: 240px;
  width: 100%;
  height: auto;
}

.ra-hero__subtitle {
  color: #ffffff;
  font-size: var(--ra-fs-md);
  line-height: 1.5;
  max-width: 460px;
  margin-bottom: 32px;
}

.ra-hero__cta {
  align-self: flex-start;
}

.ra-hero__image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 65%;
  z-index: 0;
  pointer-events: none;
}

.ra-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
}

@media (max-width: 1100px) {
  .ra-hero__content {
    width: 60%;
    padding: 48px 40px;
  }
}

@media (max-width: 820px) {
  .ra-hero__inner {
    padding-bottom: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .ra-hero__content {
    order: 1;
    width: 100%;
    max-width: none;
    padding: 32px 24px 24px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }

  .ra-hero__image {
    position: relative;
    order: 2;
    width: 100%;
  }

  .ra-hero__image img {
    object-position: center bottom;
  }

  .ra-hero__logo {
    display: flex;
    justify-content: center;
  }

  .ra-hero__logo img {
    max-width: 180px;
  }

  .ra-hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .ra-hero__cta {
    align-self: center;
  }
}
