/* 모시는 글 */
.welcome {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: start;
  padding: 8px 0 24px;
}

.welcome::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 10%;
  width: 55%;
  height: 70%;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 214, 150, 0.35) 0%,
    rgba(255, 214, 150, 0.12) 45%,
    rgba(255, 214, 150, 0) 72%
  );
  pointer-events: none;
  z-index: 0;
}

.welcome-body {
  position: relative;
  z-index: 1;
}

.welcome-text {
  color: #222;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.welcome-text p + p {
  margin-top: 1.6em;
}

.welcome-text strong {
  font-weight: 800;
}

.welcome-sign {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.02em;
}

.welcome-sign .name {
  margin-left: 6px;
  color: var(--color-navy);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.welcome-photo {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(360px, 100%);
  aspect-ratio: 1;
}

.welcome-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.85),
    0 12px 40px rgba(0, 0, 0, 0.12);
}

@media (max-width: 960px) {
  .welcome {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .welcome-photo {
    order: -1;
    width: min(280px, 70vw);
  }

  .welcome-text {
    font-size: 16px;
  }
}
