@layer components {
  .nh-approach {
    container-type: inline-size;
    container-name: nh-approach;
  }

  .nh-approach__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: stretch;
  }

  .nh-approach__image-col { display: flex; }

  .nh-approach__image-wrapper {
    border-radius: var(--radius-l);
    overflow: hidden;
    flex: 1;
  }

  .nh-approach__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 48rem;
  }

  .nh-approach__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
  }

  .nh-approach__badge { align-self: flex-start; }

  .nh-approach__title {
    font-size: var(--text-3xl);
    font-weight: var(--weight-semibold);
    color: var(--text-title);
    line-height: 1.15;
    letter-spacing: -0.015em;
  }

  .nh-approach__text {
    font-size: var(--text-m);
    color: var(--text-body);
    line-height: 1.7;
    max-width: 52rem;
  }

  .nh-approach__diffs {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
    margin-top: var(--space-s);
    margin-bottom: var(--space-s);
  }

  .nh-approach__diff {
    display: flex;
    align-items: flex-start;
    gap: var(--space-m);
  }

  .nh-approach__diff-icon {
    flex-shrink: 0;
    color: var(--success);
  }

  .nh-approach__diff-title {
    font-size: var(--text-m);
    font-weight: var(--weight-semibold);
    color: var(--text-title);
    margin-bottom: var(--space-3xs);
  }

  .nh-approach__diff-text {
    font-size: var(--text-s);
    color: var(--text-body);
    line-height: 1.6;
  }

  .nh-approach__cta {
    align-self: flex-start;
    margin-top: var(--space-xs);
  }

  @container nh-approach (max-width: 768px) {
    .nh-approach__split {
      grid-template-columns: 1fr;
      gap: var(--space-2xl);
    }
    .nh-approach__image-col { order: -1; }
    .nh-approach__image { min-height: 28rem; }
    .nh-approach__title { font-size: var(--text-2xl); }
  }

  @container nh-approach (max-width: 480px) {
    .nh-approach__image { min-height: 22rem; }
    .nh-approach__title { font-size: var(--text-xl); }
    .nh-approach__text { font-size: var(--text-s); }
    .nh-approach__diff-title { font-size: var(--text-s); }
    .nh-approach__diff-text { font-size: var(--text-xs); }
  }
}
