
/* =========================================================
   ESORA GAHOU / DETAIL PAGES
   Project / Work / Note 共通
   ========================================================= */

.detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 28px;
}

.detail--narrow {
  max-width: 800px;
}

.detail--medium {
  max-width: 1000px;
}

.detail-back {
  display: inline-block;
  margin-bottom: 70px;
  font-size: 10px;
  letter-spacing: .16em;
}

.detail-title {
  margin: 0 0 18px;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 400;
  line-height: 1;
}

.detail--narrow .detail-title {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.1;
}

.detail-meta {
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 11px;
}

.detail-gallery {
  display: grid;
  gap: 20px;
}

.detail-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.detail-image {
  display: block;
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  background: #d8d6d0;
}

.detail-text {
  max-width: 620px;
  margin: 70px 0 0 auto;
}

.detail--narrow .detail-text {
  max-width: none;
  font-size: 15px;
  line-height: 2.2;
}

@media (max-width: 720px) {
  .detail {
    padding: 120px 18px 80px;
  }

  .detail-back {
    margin-bottom: 48px;
  }

  .detail-text {
    margin-top: 48px;
  }
}


/* WORK → PROJECT navigation */
.detail-project-link {
  display: inline-block;
  margin-bottom: 60px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .04em;
  border-bottom: 1px solid transparent;
  transition: opacity .2s ease, border-color .2s ease;
}

.detail-project-link:hover {
  opacity: .6;
  border-bottom-color: currentColor;
}

.detail-project-link:focus-visible {
  border-bottom-color: currentColor;
}
