.nc-first {
  color: var(--nc-content-ink);
}

.nc-first__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: clamp(28px, 5vw, 60px);
  margin-bottom: 42px;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--nc-content-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(65 45 20 / 8%);
}

.nc-first__eyebrow {
  margin: 0 0 10px;
  color: var(--nc-content-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.nc-first__intro h2 {
  margin: 0 0 20px;
  color: var(--nc-content-ink);
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.55;
}

.nc-first__intro-body > p:last-child {
  margin: 0;
  line-height: 1.95;
}

.nc-first__intro-image {
  margin: 0;
}

.nc-first__intro-image img,
.nc-first-reason__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.nc-first__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 50px;
}

.nc-first__nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px;
  border: 1px solid var(--nc-content-border);
  border-radius: 10px;
  background: #fff;
  color: var(--nc-content-ink);
  font-size: 13px;
  line-height: 1.5;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.nc-first__nav a:hover,
.nc-first__nav a:focus-visible {
  border-color: var(--nc-content-orange);
  transform: translateY(-2px);
}

.nc-first__nav span {
  display: grid;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--nc-content-orange);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  place-items: center;
}

.nc-first__reasons {
  display: grid;
  gap: 30px;
}

.nc-first-reason {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  scroll-margin-top: 30px;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--nc-content-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 9px 24px rgb(65 45 20 / 7%);
}

.nc-first-reason--reverse .nc-first-reason__body {
  order: 2;
}

.nc-first-reason--reverse .nc-first-reason__image {
  order: 1;
}

.nc-first-reason__body {
  min-width: 0;
}

.nc-first-reason__number {
  display: block;
  margin-bottom: 8px;
  color: var(--nc-content-orange);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}

.nc-first-reason h2 {
  margin: 0 0 18px;
  padding: 0 0 12px;
  border-bottom: 3px solid var(--nc-content-orange);
  color: var(--nc-content-ink);
  font-size: clamp(23px, 2.7vw, 32px);
  line-height: 1.5;
}

.nc-first-reason p {
  margin: 0;
  line-height: 1.95;
}

.nc-first-reason small {
  display: block;
  margin-top: 10px;
  color: #74695e;
  font-size: 12px;
  line-height: 1.6;
}

.nc-first-reason__image {
  margin: 0;
}

.nc-first-reason__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 24px;
  padding: 10px 26px;
  border-radius: 8px;
  background: var(--nc-content-orange);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.nc-first-reason__button:hover,
.nc-first-reason__button:focus-visible {
  color: #fff;
  opacity: .82;
}

@media (max-width: 900px) {
  .nc-first__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .nc-first__intro,
  .nc-first-reason {
    grid-template-columns: 1fr;
  }

  .nc-first__intro {
    padding: 24px 20px;
  }

  .nc-first__intro-image {
    order: -1;
  }

  .nc-first__nav {
    grid-template-columns: 1fr;
    margin-bottom: 32px;
  }

  .nc-first__nav a {
    min-height: 56px;
    font-size: 14px;
  }

  .nc-first-reason,
  .nc-first-reason--reverse {
    padding: 24px 20px;
  }

  .nc-first-reason .nc-first-reason__body,
  .nc-first-reason--reverse .nc-first-reason__body {
    order: 2;
  }

  .nc-first-reason .nc-first-reason__image,
  .nc-first-reason--reverse .nc-first-reason__image {
    order: 1;
  }

  .nc-first-reason__button {
    width: 100%;
  }
}
