.cmp-hero {
  position: relative;
  background-color: var(--base-500);
  z-index: 0;
}
@media (min-width: 768px) {
  .cmp-hero {
    min-height: 19.125rem;
    display: flex;
    padding-top: 47px;
    padding-bottom: 47px;
  }
}
.cmp-hero__image {
  width: 100%;
  height: 9.3125rem;
  object-fit: cover;
  object-position: top;
  width: 515;
  border-bottom-left-radius: var(--image-banner-radio);
}
@media (min-width: 768px) {
  .cmp-hero__image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    min-height: 19.125rem;
    width: 30%;
  }
}
@media (min-width: 1200px) {
  .cmp-hero__image {
    width: 35%;
  }
}
.cmp-hero__content-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .cmp-hero__content-text {
    justify-content: center;
    gap: 0.5rem;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.cmp-hero__content-text-buttons {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .cmp-hero__content-text-buttons {
    flex-direction: row;
  }
}
