/* statue project page only */

/* hero */
.project-hero {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  column-gap: 56px;
  align-items: start;
  padding: 28px 0 72px 0;
  border-bottom: 1px solid #d9d9d9;
}

.project-hero__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: #8d98a7;
  font-family: "FontL", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.project-hero h1 {
  font-family: "FontR", sans-serif;
  font-size: 64px;
  line-height: 0.95;
  font-weight: 400;
}

.project-hero__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.project-hero__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.project-hero__meta span {
  border: 1px solid #d9d9d9;
  padding: 7px 12px;
  color: #6f7782;
  font-family: "FontL", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.project-hero__right p {
  width: 100%;
  max-width: 560px;
  color: #6f7782;
  font-family: "FontL", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

/* viewer layout */
.viewer-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) 380px;
  column-gap: 48px;
  align-items: start;
  padding: 56px 0 64px 0;
  border-bottom: 1px solid #d9d9d9;
}

.viewer-layout__left {
  width: 100%;
}

.viewer-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 700px;
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  overflow: hidden;
}

.viewer-box__embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  outline: none;
  box-shadow: none;
  background: #ffffff;
}

.viewer-layout__right {
  display: grid;
  gap: 28px;
}

.side-block {
  display: grid;
  gap: 14px;
}

.side-block__eyebrow {
  display: inline-block;
  color: #8d98a7;
  font-family: "FontL", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.side-block p {
  color: #111;
  font-family: "FontL", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.qr-link {
  display: block;
  width: 285px;
  padding: 6px;
  border: 3px solid #000000;
  background: #ffffff;
  text-decoration: none;
  transition: background 160ms ease;
}

.qr-link:hover {
  background: #f7f7f7;
}

.qr-image {
  display: block;
  width: 100%;
  height: auto;
}

.qr-caption {
  color: #6f7782;
  font-family: "FontL", sans-serif;
  font-size: 14px;
  line-height: 1;
}

/* info */
.project-info {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  column-gap: 56px;
  padding: 24px 0 40px 0;
}

.project-info__eyebrow {
  display: inline-block;
  color: #8d98a7;
  font-family: "FontL", sans-serif;
  font-size: 14px;
  line-height: 1;
}

.project-info__right {
  display: grid;
  gap: 18px;
}

.project-info__right p {
  width: 100%;
  max-width: 760px;
  color: #111;
  font-family: "FontL", sans-serif;
  font-size: 22px;
  line-height: 1.18;
}

.project-info__note {
  max-width: 760px;
  color: #6f7782;
  font-family: "FontL", sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.project-info__link {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 1px;
  transition: border-color 160ms ease, color 160ms ease;
}

.project-info__link:hover {
  border-bottom-color: #111;
}

.project-info__link:focus-visible {
  outline: none;
  border-bottom-color: #111;
}

/* nav */
.project-nav {
  padding: 0 0 56px 0;
}

.project-nav__link {
  color: #111;
  text-decoration: none;
  font-family: "FontL", sans-serif;
  font-size: 18px;
  line-height: 1;
}

/* responsive */
@media (max-width: 1200px) {
  .project-hero,
  .project-info {
    grid-template-columns: 340px minmax(0, 1fr);
    column-gap: 36px;
  }

  .project-hero h1 {
    font-size: 54px;
  }

  .viewer-layout {
    grid-template-columns: minmax(0, 1.35fr) 340px;
    column-gap: 32px;
  }

  .viewer-box {
    min-height: 580px;
  }

  .project-info__right p {
    font-size: 20px;
  }

  .qr-link {
    width: 240px;
  }
}

@media (max-width: 900px) {
  .project-hero,
  .project-info,
  .viewer-layout {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }

  .project-hero {
    padding-bottom: 40px;
  }

  .project-hero h1 {
    font-size: 42px;
  }

  .project-hero__right {
    align-items: flex-start;
  }

  .project-hero__right p {
    max-width: none;
    font-size: 18px;
  }

  .viewer-layout {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .viewer-box {
    aspect-ratio: 4 / 5;
    min-height: 460px;
  }

  .qr-link {
    width: 240px;
    padding: 5px;
  }

  .project-info__right p,
  .project-info__note {
    font-size: 18px;
  }

  .project-nav {
    padding-bottom: 48px;
  }
}