/* =========================================================
   메인 화면
========================================================= */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: var(--page-bg);
}

.hero-top {
  padding: 52px 26px 24px;
  text-align: center;
}

.hero-small {
  margin: 0;
  color: var(--point-color);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: .26em;
}

.hero-names {
  margin: 14px 0 0;
  color: #4c5053;
  font-family: var(--font-en);
  font-size: var(--font-hero-name);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
}

.hero-names span {
  display: inline-block;
  margin: 0 4px;
  color: var(--gold-point);
  font-size: .55em;
  font-weight: 400;
}

.hero-photo-wrap {
  width: 100%;
  padding: 0 20px;
}

.hero-photo-frame {
  position: relative;
  width: var(--hero-photo-width);
  aspect-ratio: var(--hero-photo-ratio);
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--hero-photo-radius);
  background: #e8edf0;
  box-shadow: 0 14px 40px rgba(84, 101, 112, .12);
}

.hero-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.12),
      rgba(255,255,255,0)
    );
  pointer-events: none;
  z-index: 1;
}

.hero-photo-frame::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 12px;
  pointer-events: none;
  z-index: 2;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px 42px;
  text-align: center;
}

.hero-date {
  margin: 0;
  color: #607585;
  font-family: var(--font-en);
  font-size: var(--font-hero-date);
  font-weight: 500;
  letter-spacing: .18em;
}

.hero-place {
  margin: 8px 0 0;
  color: var(--sub-text-color);
  font-size: 12px;
  letter-spacing: .02em;
}

.scroll-mark {
  margin-top: 28px;
  color: #a4adb3;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .22em;
}