.kth-hero{
  background: var(--kth-bg);
  color: var(--kth-text);
  min-height: var(--kth-minh);
  width: 100%;
  overflow: hidden;
}

.kth-inner{
  max-width: var(--kth-maxw);
  margin: 0 auto;
  padding: var(--kth-py) var(--kth-px);
  min-height: var(--kth-minh);
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: var(--kth-gap);
  align-items: stretch;
  box-sizing: border-box;
}

.kth-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.kth-right{
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  min-width: 0;
  min-height: 100%;
}

.kth-headline{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.02;
  font-size: 40px;
}

.kth-line{
  margin: 0 0 10px;
}

.kth-highlight-wrap{
  margin-top: 0;
}

.kth-highlight{
  display: inline-block;
  background: var(--kth-hbg);
  color: var(--kth-htext);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 16px 22px;
  font-size: 40px;
  line-height: 1;
  transform: translateX(-20px);
}

.kth-tagline{
  margin-top: 56px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(18px, 1.6vw, 30px);
  letter-spacing: -0.01em;
  line-height: 1.15;
  opacity: 0.98;
}

.kth-image{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  margin-top: auto;
  margin-bottom: calc(var(--kth-py) * -1) !important;
}

.kth-image-placeholder{
  width: 100%;
  height: 320px;
  border: 2px dashed rgba(255,255,255,0.25);
  border-radius: 14px;
  opacity: 0.55;
}



@media (max-width: 1024px){
  .kth-inner{
    grid-template-columns: minmax(0, 1.45fr) minmax(220px, 0.9fr);
    gap: 24px;
  }

  .kth-headline,
  .kth-highlight{
    font-size: 30px;
  }

  .kth-tagline{
    margin-top: 28px;
  }
}

@media (max-width: 767px){
  .kth-inner{
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;padding: 20px;
  }

  .kth-left{
    justify-content: center;
  }

  .kth-right{
    justify-content: center;
    align-items: flex-end;
  }

  .kth-image{
    max-width: min(420px, 100%) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .kth-highlight{
    transform: none;
  }

  .kth-tagline{
    margin-top: 24px;
  }
}