.tg-hero {
  padding: 24px 0 0 24px;
}

.tg-hero__inner {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: center;
}

.tg-hero__content {
  position: relative;
  z-index: 3;
}

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

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

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

.tg-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1cfafc;
  font-size: 13px;
  font-weight: 500;
}

.tg-hero__badge-icon {
  width: 14px;
  flex-shrink: 0;
}

@media (max-width: 1023px) {
  .tg-hero__image {
    position: static;
  }
  .tg-hero__image img {
    margin: 0 auto;
  }
  .tg-hero__content {
    max-width: 100%;
    text-align: center;
    justify-items: center;
  }
  .tg-hero__inner {
    padding: 0;
    grid-template-columns: 1fr;
    align-items: end;
  }
}
@media (max-width: 767px) {
  .tg-hero {
    padding: 12px 6px;
  }

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

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

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

  .tg-hero__badge {
    font-size: 10px;
    gap: 5px;
  }

  .tg-hero__badge-icon {
    width: 14px;
  }

  .tg-hero__image {
    display: flex;
    justify-content: center;
    margin-top: 16px;
  }

  .tg-hero__image img {
    max-width: 200px;
  }
}
