/* Devlog 목록 페이지 전용. devlog.css 를 먼저 불러온 뒤 덮어쓴다. */

.wrap-wide {
  width: min(880px, calc(100vw - 32px));
  padding-top: 40px;
}

.lead h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.lead p {
  color: var(--muted);
  font-size: 16px;
  max-width: 60ch;
  margin: 0;
}
.lead strong {
  color: #fff;
}
.kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.list {
  margin-top: 48px;
  display: grid;
  gap: 14px;
}

.post {
  display: block;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 28px;
  color: var(--text);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.post:hover {
  border-color: #3a3a48;
  transform: translateY(-2px);
  text-decoration: none;
}
.post .meta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--muted);
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.post h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  margin: 0 0 8px;
  line-height: 1.3;
}
.post p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
