/* ══════════════════════════════════════
   works.css  ─  全作品一覧ページ
   ══════════════════════════════════════ */

/* ── ナビロゴのリンク ── */
.nav__logo a {
  text-decoration: none;
  color: inherit;
}

/* ── ページ全体 ── */
.wpage {
  padding: 140px 40px 100px;
}
.wpage__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.wpage__inner .section-head {
  margin-bottom: 72px;
}

/* ── グリッド ── */
.wpage__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
}

/* ── カード ── */
.wcard {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.wcard__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  overflow: hidden;
}
.wcard__img img {
  display: block;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center;
}
.wcard__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wcard__num {
  font-size: 11px;
  font-weight: 700;
  color: #f7931e;
  letter-spacing: 0.12em;
}
.wcard__category {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.06em;
}
.wcard__title {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.wcard__desc {
  font-size: 13px;
  color: #666;
  line-height: 1.85;
  margin-top: 4px;
}
.wcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.wcard__tag {
  font-size: 11px;
  color: #4caf6e;
  background: #edf7ee;
  border: 1px solid #4caf6e;
  padding: 3px 10px;
  border-radius: 20px;
}
.wcard__tag--demo {
  background: #fff8f1;
  color: #f7931e;
  border-color: #f7931e;
}
.wcard__link {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #f7931e;
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(247,147,30,0.35);
  padding-bottom: 2px;
  transition: opacity 0.2s;
  width: fit-content;
}
.wcard__link:hover { opacity: 0.65; }

/* ── 戻るリンク ── */
.wpage__back {
  margin-top: 80px;
  text-align: center;
}
.wpage__back-link {
  font-size: 13px;
  color: #999;
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.wpage__back-link:hover { color: #f7931e; }

/* ── レスポンシブ ── */
@media (max-width: 768px) {
  .wpage {
    padding: 120px 24px 80px;
  }
  .wpage__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
