.greeting-section {
  display: block;
  min-width: 0;
  /* overflow: hidden; */

  width: 100%;
  padding: 30px 0;
  background-color: var(--color--bg--2);
}

.greeting-header {
  text-align: center;
  width: 100%;
  margin-bottom: var(--space--8);
}

.greeting-title {
  display: inline-block;
  font-size: var(--font-size--2xl);
  font-weight: bold;
  position: relative;

  background-image: var(--gradation--text-marker--1);
  background-position: left bottom;
  background-size: 100% 0.6em;
  background-repeat: no-repeat;
}

/* =============================
  左カラム：写真 + 名前 + 経歴
============================= */
.greeting-body {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: var(--space--8);
  margin-bottom: var(--space--4);
}


.greeting-profile {
  width: var(--card-size--1);
}
.greeting-profile__media img {
  width: 100%;
  height: 100%;
}

.greeting-profile__name {
  font-size: var(--font-size--xl);
  text-align: center;
  margin-top: var(--space--4);
}
.greeting-profile__info .separator {
  margin: var(--space--4) 0;
}
.greeting-profile__career {
  font-size: var(--font-size--md);
  line-height: 2;
}

/* =============================
  右カラム：あいさつ文
============================= */
.greeting-message {
  width: var(--card-size--5);
  line-height: 2;
}

.greeting-message p:nth-child(1) {
  font-size: var(--font-size--xl);
  margin-bottom: var(--space--8);

}

.greeting-message p:nth-child(2) {
  font-size: var(--font-size--md);
  margin-bottom: var(--space--8);
}
.greeting-message__row2-accent {
  font-weight: 700;
  background-image: var(--gradation--text-marker--1);
  background-position: left bottom;
  background-size: 100% 0.6em;
  background-repeat: no-repeat;

}

.greeting-message p:nth-child(3) {
  font-size: var(--font-size--md);
}
.greeting-message__row3-accent {
  background-image: var(--gradation--text-marker--1);
  background-position: left bottom;
  background-size: 100% 0.6em;
  background-repeat: no-repeat;

}


@media (width <= 668px) {
  .greeting-title {
    font-size: var(--font-size--xl);
  }
}
