.zj-hero {
  padding: 24px 0 40px;
}

.zj-hero__inner {
  background-image: url("./../../images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-xl);
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}

.zj-hero__content {
  max-width: 60%;
  position: relative;
  z-index: 3;
}

.zj-hero__heading {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

.zj-hero__subheading {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
}

.zj-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.zj-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #45f7871a;
  border: 1px solid #45f787;
  color: #45f787;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

.zj-hero__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .zj-hero__content {
    max-width: 100%;
    text-align: center;
    justify-items: center;
  }
  .zj-hero__inner {
    padding-bottom: 0;
  }
}
@media (max-width: 767px) {
  .zj-hero {
    padding: 0;
  }

  .zj-hero__inner {
    padding: 1rem;
    border-radius: 0;
  }

  .zj-hero__heading {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .zj-hero__subheading {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .zj-hero__badges {
    justify-content: center;
    gap: 6px;
  }

  .zj-hero__badge {
    font-size: 11px;
    padding: 5px 10px;
    gap: 5px;
  }

  .zj-hero__badge-icon {
    width: 14px;
    height: 14px;
  }
}
