/* 마인드코드 — 다크 칼럼 테마 */

:root {
  --bg: #0a0b0d;
  --bg-soft: #101208;
  --surface: #141610;
  --surface-hover: #1a1d14;
  --line: #24271e;
  --text: #eceee6;
  --text-sub: #9aa08f;
  --accent: #bef264;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap.narrow {
  max-width: 720px;
}

/* ---------- 아바타 ---------- */
.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #0e0f13;
  font-weight: 700;
  font-family: "Noto Serif KR", serif;
  flex-shrink: 0;
  object-fit: cover;
  user-select: none;
}

.avatar.sm {
  width: 26px;
  height: 26px;
  font-size: 0.75rem;
}

.avatar.md {
  width: 40px;
  height: 40px;
  font-size: 1rem;
}

.avatar.lg {
  width: 64px;
  height: 64px;
  font-size: 1.5rem;
}

.avatar.xl {
  width: 88px;
  height: 88px;
  font-size: 2rem;
}

/* ---------- 헤더 ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(10, 11, 13, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: "Mr Dafoe", cursive;
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  padding-bottom: 6px;
  display: inline-flex;
  align-items: center;
}

/* 이미지 로고 (assets/logo.png가 있을 때) */
.logo-img {
  display: block;
  object-fit: contain;
}

.logo-img.logo-header {
  height: 44px;
  width: auto;
}

.logo-img.logo-hero {
  height: clamp(120px, 18vw, 180px);
  width: auto;
  margin: 0 auto 6px;
}

.logo-img.logo-footer {
  height: 48px;
  width: auto;
  margin: 0 auto;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-sub);
  transition: color 0.15s;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: var(--text);
}

/* ---------- 히어로 ---------- */
.hero {
  padding: 100px 0 84px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(190, 242, 100, 0.07), transparent),
    var(--bg);
  border-bottom: 1px solid var(--line);
}

.hero-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-logo {
  font-family: "Mr Dafoe", cursive;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 0 40px rgba(190, 242, 100, 0.25);
}

.hero h1 {
  font-family: "Noto Serif KR", serif;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 20px;
}

.hero-sub {
  color: var(--text-sub);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- 섹션 공통 ---------- */
.section {
  padding: 72px 0;
}

.section + .section,
.page-head + .section,
.author-head + .section {
  padding-top: 0;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head h2 {
  font-family: "Noto Serif KR", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.section-head p {
  color: var(--text-sub);
  font-size: 0.9rem;
}

.more-link {
  color: var(--accent);
  font-size: 0.9rem;
  transition: opacity 0.15s;
}

.more-link:hover {
  opacity: 0.75;
}

/* ---------- 필진 카드 ---------- */
.author-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.author-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 36px 28px 30px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}

.author-card:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 242, 100, 0.4);
  background: var(--surface-hover);
}

.author-card .avatar {
  margin-bottom: 12px;
}

.author-card-name {
  font-family: "Noto Serif KR", serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.author-card-role {
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.author-card-bio {
  color: var(--text-sub);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.author-card-stat {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-sub);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 4px 14px;
}

/* ---------- 인증 뱃지 ---------- */
.badge {
  color: var(--accent);
  margin-left: 4px;
  vertical-align: -2px;
  flex-shrink: 0;
}

/* ---------- 작가 표기 공통 ---------- */
.author-line {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.author-role-inline {
  font-size: 0.78rem;
  color: var(--text-sub);
  opacity: 0.8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---------- 게시판 목록 (bcave 스타일) ---------- */
.board {
  display: flex;
  flex-direction: column;
}

.board-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 10px;
  border-bottom: 1px solid var(--line);
  transition: background 0.15s;
}

.board-row:first-child {
  border-top: 1px solid var(--line);
}

.board-row:hover {
  background: var(--bg-soft);
}

.board-row:hover .board-title {
  color: var(--accent);
}

.board-main {
  min-width: 0;
}

.board-title {
  font-family: "Noto Serif KR", serif;
  font-size: 1.18rem;
  font-weight: 600;
  margin: 10px 0 6px;
  line-height: 1.45;
  transition: color 0.15s;
}

.board-excerpt {
  color: var(--text-sub);
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.board-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
}

.board-date {
  color: var(--text-sub);
  font-size: 0.82rem;
  opacity: 0.7;
}

.views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-sub);
  opacity: 0.75;
  white-space: nowrap;
}

.views .eye {
  flex-shrink: 0;
  opacity: 0.85;
}

.board-row.current {
  background: var(--bg-soft);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

.board-now {
  font-size: 0.72rem;
  color: var(--accent);
  border: 1px solid rgba(190, 242, 100, 0.4);
  border-radius: 4px;
  padding: 1px 10px;
  white-space: nowrap;
}

/* ---------- 1:1 썸네일 ---------- */
.board-thumb {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.board-thumb.ph,
.nav-thumb.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif KR", serif;
  font-weight: 700;
  color: #0a0b0d;
}

.board-thumb.ph {
  font-size: 1.6rem;
}

.nav-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.nav-thumb.ph {
  font-size: 1.1rem;
}

/* ---------- 페이지 헤드 ---------- */
.page-head {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.page-head h1 {
  font-family: "Noto Serif KR", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.page-head p {
  color: var(--text-sub);
  margin-top: 10px;
}

/* ---------- 작가 페이지 헤드 ---------- */
.author-head {
  padding: 80px 0 56px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
  text-align: left;
}

.author-head-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  position: relative;
}

.author-sign {
  position: absolute;
  right: 24px;
  bottom: 0;
  height: 26px;
  width: auto;
  opacity: 0.65;
  pointer-events: none;
}

@media (max-width: 640px) {
  .author-sign {
    height: 20px;
    right: 16px;
  }
}

.author-head h1 {
  font-family: "Noto Serif KR", serif;
  font-size: 1.9rem;
  font-weight: 700;
  margin-top: 16px;
}

.author-head-role {
  color: var(--accent);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.author-head-bio {
  color: var(--text-sub);
  max-width: 480px;
  margin-top: 10px;
  font-size: 0.95rem;
}

.author-head-stat {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-sub);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 5px 16px;
}

/* ---------- 글 페이지 ---------- */
.post {
  padding: 80px 0;
}

.post-head {
  text-align: left;
  margin-bottom: 48px;
}

.post-category {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
}

.post-head h1 {
  font-family: "Noto Serif KR", serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin: 14px 0 28px;
}

.post-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.post-byline .author-line {
  gap: 12px;
  transition: opacity 0.15s;
}

.post-byline .author-line:hover {
  opacity: 0.8;
}

.byline-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.5;
}

.byline-text .author-name {
  font-size: 0.95rem;
}

.byline-sub {
  color: var(--text-sub);
  font-size: 0.82rem;
}

.byline-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-sub);
  font-size: 0.85rem;
  white-space: nowrap;
}

.byline-dot {
  opacity: 0.5;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text-sub);
  font-size: 0.8rem;
  font-family: inherit;
  padding: 4px 10px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.share-btn:hover {
  color: var(--accent);
  border-color: rgba(190, 242, 100, 0.4);
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--text);
  font-size: 0.85rem;
  padding: 10px 18px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.post-body {
  font-size: 1.05rem;
  line-height: 1.9;
}

.post-body p {
  margin-bottom: 2.6em;
}

.post-body h2 {
  font-family: "Noto Serif KR", serif;
  font-size: 1.45rem;
  font-weight: 600;
  margin: 2.2em 0 0.8em;
}

.post-body h3 {
  font-family: "Noto Serif KR", serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.8em 0 0.7em;
}

.post-body blockquote {
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 0 4px 4px 0;
  padding: 20px 24px;
  margin: 2em 0;
  color: var(--text);
  font-family: "Noto Serif KR", serif;
}

.post-body blockquote p {
  margin: 0;
}

.post-body ul,
.post-body ol {
  margin: 0 0 1.6em 1.4em;
}

.post-body li {
  margin-bottom: 0.5em;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 3em auto;
  width: 120px;
}

.post-body code {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.15em 0.4em;
  font-size: 0.88em;
}

.post-body pre {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 20px;
  overflow-x: auto;
  margin: 0 0 1.6em;
}

.post-body pre code {
  background: none;
  border: none;
  padding: 0;
}

.post-body p img {
  max-width: 100%;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
}

/* 사진 캡션 — 사진에 붙여서, 가운데 정렬 + 작은 글씨 */
.post-body p.caption {
  margin-top: -2.1em;
  margin-bottom: 2.6em;
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.post-body p.caption em {
  font-style: normal;
}

.post-body strong {
  font-weight: 600;
  color: #fff;
}

/* ---------- 다음 편 박스 (본문 내) ---------- */
.next-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 16px 18px;
  margin: 2.4em 0;
  transition: border-color 0.2s, background 0.2s;
}

.next-box:hover {
  border-color: rgba(190, 242, 100, 0.5);
  background: var(--surface-hover);
}

.next-box-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.next-box-label {
  font-size: 0.76rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.next-box-title {
  font-family: "Noto Serif KR", serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.45;
}

.next-box-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-sub);
  opacity: 0.8;
}

.next-box-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.next-box-thumb.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif KR", serif;
  font-weight: 700;
  color: #0a0b0d;
  font-size: 1.2rem;
}

/* ---------- 다음 편 카드 (본문 내) ---------- */
.next-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 20px 22px;
  margin: 2.4em 0;
  transition: border-color 0.2s, background 0.2s;
}

.next-card:hover {
  border-color: rgba(190, 242, 100, 0.4);
  background: var(--surface-hover);
}

.next-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.next-thumb.ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Serif KR", serif;
  font-weight: 700;
  color: #0a0b0d;
  font-size: 1.3rem;
}

.next-card-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.next-card-kicker {
  font-size: 0.76rem;
  color: var(--accent);
  letter-spacing: 0.04em;
}

.next-card-title {
  font-family: "Noto Serif KR", serif;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.45;
}

.next-card-sub {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.55;
}

.next-card-arrow {
  margin-left: auto;
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ---------- 작가 소개 박스 (글 하단) ---------- */
.author-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 28px;
  margin-top: 72px;
}

.author-box-text {
  min-width: 0;
}

.author-box-name {
  font-family: "Noto Serif KR", serif;
  font-size: 1.15rem;
  font-weight: 600;
  transition: color 0.15s;
}

.author-box-name:hover {
  color: var(--accent);
}

.author-box-role {
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.author-box-bio {
  color: var(--text-sub);
  font-size: 0.9rem;
  margin-top: 10px;
}

.author-box-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-size: 0.85rem;
  transition: opacity 0.15s;
}

.author-box-link:hover {
  opacity: 0.75;
}

/* ---------- 작가의 다른 글 ---------- */
.author-others {
  margin-top: 28px;
}

.author-others-head {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin-bottom: 10px;
}

.author-others-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  transition: color 0.15s;
}

.author-others-item:first-of-type {
  border-top: 1px solid var(--line);
}

.author-others-item:hover span {
  color: var(--accent);
}

.author-others-item time {
  color: var(--text-sub);
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0.7;
}

/* ---------- 이전/다음 글 ---------- */
.post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.post-nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 18px 20px;
  transition: border-color 0.2s;
}

.post-nav-item:hover {
  border-color: rgba(190, 242, 100, 0.4);
}

.post-nav-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.post-nav-text > span {
  font-size: 0.78rem;
  color: var(--text-sub);
}

.post-nav-text strong {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.post-nav-item.empty {
  visibility: hidden;
}

/* ---------- 글 하단 전체 글 게시판 ---------- */
.post-board {
  margin-top: 88px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}

.board-lines {
  display: flex;
  flex-direction: column;
}

.board-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  transition: background 0.15s;
}

.board-line:first-child {
  border-top: 1px solid var(--line);
}

.board-line:hover {
  background: var(--bg-soft);
}

.board-line:hover .board-line-title {
  color: var(--accent);
}

.board-line-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.15s;
}

.board-line-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.board-line time {
  color: var(--text-sub);
  font-size: 0.82rem;
  white-space: nowrap;
  opacity: 0.7;
  text-align: right;
}

.board-line.current {
  background: var(--bg-soft);
}

.board-line.current .board-line-title {
  color: var(--accent);
  font-weight: 500;
}

/* ---------- 소개 페이지 필진 ---------- */
.about-authors {
  margin-top: 8px;
}

/* ---------- 하단 슬라이드업 CTA ---------- */
.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: rgba(10, 11, 13, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
}

.cta-bar.show {
  transform: none;
}

.cta-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 22px 24px 24px;
}

.cta-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-sub);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.cta-close:hover {
  color: var(--text);
}

.cta-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  padding-right: 36px;
}

.cta-thumb {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  border: 1px solid var(--line);
  object-fit: cover;
  flex-shrink: 0;
}

.cta-copy {
  min-width: 0;
}

.cta-kicker {
  font-size: 0.76rem;
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 3px;
}

.cta-text {
  font-family: "Noto Serif KR", serif;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--accent);
  color: #0a0b0d;
  font-size: 1.02rem;
  font-weight: 700;
  padding: 15px 20px;
  border-radius: 4px;
  transition: filter 0.15s;
}

.cta-btn:hover {
  filter: brightness(1.06);
}

.cta-arrow {
  font-weight: 400;
}

/* ---------- 푸터 ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 56px 0;
  text-align: center;
  margin-top: 40px;
}

.footer-logo {
  font-family: "Mr Dafoe", cursive;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

.footer-note {
  color: var(--text-sub);
  font-size: 0.88rem;
  margin-top: 8px;
}

.footer-copy {
  color: var(--text-sub);
  opacity: 0.6;
  font-size: 0.8rem;
  margin-top: 20px;
}

/* ---------- 모바일 ---------- */
@media (max-width: 640px) {
  .hero {
    padding: 72px 0 60px;
  }

  /* 목록에서는 직함 숨김 — 아바타 + 이름만 */
  .author-role-inline {
    display: none;
  }

  /* 글 상단 바이라인: 작가 줄과 메타 줄을 위아래로 */
  .post-byline {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .byline-meta {
    width: 100%;
    justify-content: flex-start;
  }

  .board-thumb {
    width: 64px;
    height: 64px;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .post-nav {
    grid-template-columns: 1fr;
  }

  .post-nav-item.empty {
    display: none;
  }
}
