[data-component-id='ecore:cta_banner'] {
  max-width: 1550px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: row;
  background-color: #000;
  color: #fff;

  .cta-content {
    padding: 60px 40px;
    color: #fff;
    min-width: 66%;
  }

  .cta-heading {
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    line-height: 0.9;
    text-transform: uppercase;
  }

  .cta-description-button {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
    gap: 20px;

    .cta-description {
      font-size: 24px;
      flex-grow: 1;
    }

    .cta-button {
      flex-shrink: 1;
      font-weight: bold;
      height: fit-content;
      padding-left: 48px;
      padding-right: 48px;
      font-size: 16px;
    }
  }

  img {
    height: 100%;
    object-fit: cover;
  }

  @media (max-width: 768px) {
    flex-direction: column;

    .cta-description-button {
      flex-direction: column;

      .cta-button {
        width: fit-content;
      }
    }
  }
}
