.page-hero {
  width: 100%;
  height: 200px;
  margin-top: 72px;
  background-image: url("../img/step_bg.jpg");
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero__title {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(22px, 4vw, 36px);
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--c-blue-dk);
}

@media (max-width: 720px) {
  .page-hero {
    margin-top: 64px;
  }
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumb__item+.breadcrumb__item::before {
  content: "›";
  margin-right: 4px;
  color: var(--ink-mute);
}

.breadcrumb__item a {
  color: var(--c-blue);
  transition: color .2s;
}

.breadcrumb__item a:hover {
  color: var(--c-blue-dk);
}

/* ===== Greeting ===== */
.greeting {
  padding: 64px 0 96px;
}

.greeting__inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.greeting__photo {
  border: 1px solid var(--c-blue);
  padding: 8px;
}

.greeting__photo img {
  width: 100%;
  height: auto;
  display: block;
}

.greeting__caption {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
  color: var(--c-blue-dk);
  text-align: center;
}

.greeting__text {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 2;
  color: var(--ink);
}

.greeting__text:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 720px) {
  .greeting {
    padding: 48px 0 64px;
  }

  .greeting__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .greeting__photo {
    max-width: 320px;
    margin: 0 auto;
  }

  .greeting__text {
    font-size: 15px;
  }
}