
/* ═══════════════════════════════════════════
   광주중앙교회 새벽QT — 프리미엄 디자인
   어둠→빛 전환 애니메이션 + 빛 파티클
═══════════════════════════════════════════ */
:root {
  --navy:       #0c1528;
  --navy-mid:   #162040;
  --navy-light: #1e3060;
  --gold:       #d4a84b;
  --gold-soft:  #f0d68a;
  --gold-glow:  rgba(212,168,75,.35);
  --dawn-sky:   #1a1040;
  --dawn-warm:  #4a2040;
  --dawn-peach: #e8926a;
  --dawn-amber: #f5c45a;
  --light-ray:  rgba(255,220,140,.12);
  --bg:         #f7f5f0;
  --bg-warm:    #fdf9f3;
  --white:      #ffffff;
  --text:       #2c3044;
  --text2:      #7a7e8f;
  --border:     #e8e4da;
  --red:        #e05040;
  --radius:     14px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    word-break: keep-all;
    overflow-wrap: break-word;
  font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ─── 상단 바 ─── */
.top-bar {
  background: rgba(12,21,40,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.top-bar a.home-btn {
  display: inline-flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,.75); text-decoration: none;
  font-size: 13px; font-weight: 500;
  padding: 7px 16px; border-radius: 24px;
  border: 1px solid rgba(255,255,255,.15);
  transition: all var(--transition);
  letter-spacing: -.01em;
}
.top-bar a.home-btn:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════════
   히어로 — 어둠에서 빛으로 전환 배경
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* 초기: 깊은 밤 */
  background: var(--dawn-sky);
}

/* 다층 그라데이션 배경 — 어둠→새벽→빛 전환 */
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
/* 레이어 1: 밤하늘 → 새벽 */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    #080818 0%,
    #0c1528 15%,
    #1a1040 30%,
    #3a1848 50%,
    #7a3050 65%,
    #c86848 78%,
    #e8926a 88%,
    #f5c45a 96%,
    #ffe899 100%
  );
  animation: dawnShift 12s ease-in-out infinite alternate;
}
/* 레이어 2: 수평선 근처 빛 퍼짐 */
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%; left: 30%;
  width: 80%; height: 80%;
  background: radial-gradient(ellipse at center bottom,
    rgba(255,200,100,.45) 0%,
    rgba(255,150,80,.2) 30%,
    transparent 70%);
  animation: horizonGlow 8s ease-in-out infinite alternate;
  filter: blur(40px);
}

@keyframes dawnShift {
  0%   { opacity: .6; filter: brightness(.5) saturate(.7); }
  40%  { opacity: .8; filter: brightness(.75) saturate(.9); }
  100% { opacity: 1;  filter: brightness(1.1) saturate(1.15); }
}
@keyframes horizonGlow {
  0%   { opacity: .3; transform: scale(.8) translateY(10%); }
  100% { opacity: 1;  transform: scale(1.2) translateY(-5%); }
}

/* 빛줄기 — 하늘에서 내려오는 광선 */
.light-rays {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden;
  pointer-events: none;
}
.light-rays .ray {
  position: absolute;
  top: -10%;
  width: 2px;
  height: 130%;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(255,220,150,.04) 20%,
    rgba(255,220,150,.12) 50%,
    rgba(255,220,150,.04) 80%,
    transparent 100%);
  transform-origin: top center;
  animation: rayPulse 6s ease-in-out infinite;
}
.ray:nth-child(1) { left: 15%; transform: rotate(-8deg); animation-delay: 0s; width: 3px; }
.ray:nth-child(2) { left: 30%; transform: rotate(-3deg); animation-delay: 1.2s; }
.ray:nth-child(3) { left: 48%; transform: rotate(1deg);  animation-delay: .6s; width: 4px; }
.ray:nth-child(4) { left: 62%; transform: rotate(5deg);  animation-delay: 2s; }
.ray:nth-child(5) { left: 78%; transform: rotate(9deg);  animation-delay: 1.8s; width: 3px; }
.ray:nth-child(6) { left: 90%; transform: rotate(12deg); animation-delay: .3s; }

@keyframes rayPulse {
  0%, 100% { opacity: .3; }
  50%      { opacity: 1; }
}

/* 빛 파티클 — 반짝이는 먼지/빛 입자 */
.particles {
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  width: 4px; height: 4px;
  background: radial-gradient(circle, rgba(255,235,180,1) 0%, rgba(255,235,180,0) 70%);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
/* 30개 파티클 분포 */
.particle:nth-child(1)  { left:5%;  top:20%; width:3px; height:3px; animation-duration:9s;  animation-delay:0s; }
.particle:nth-child(2)  { left:12%; top:60%; width:5px; height:5px; animation-duration:11s; animation-delay:.5s; }
.particle:nth-child(3)  { left:20%; top:35%; width:2px; height:2px; animation-duration:8s;  animation-delay:1s; }
.particle:nth-child(4)  { left:28%; top:75%; width:4px; height:4px; animation-duration:10s; animation-delay:1.5s; }
.particle:nth-child(5)  { left:35%; top:15%; width:6px; height:6px; animation-duration:12s; animation-delay:2s; }
.particle:nth-child(6)  { left:42%; top:50%; width:3px; height:3px; animation-duration:9s;  animation-delay:.8s; }
.particle:nth-child(7)  { left:50%; top:30%; width:5px; height:5px; animation-duration:10s; animation-delay:3s; }
.particle:nth-child(8)  { left:58%; top:70%; width:2px; height:2px; animation-duration:8s;  animation-delay:1.2s; }
.particle:nth-child(9)  { left:65%; top:10%; width:4px; height:4px; animation-duration:11s; animation-delay:2.5s; }
.particle:nth-child(10) { left:72%; top:45%; width:3px; height:3px; animation-duration:9s;  animation-delay:.3s; }
.particle:nth-child(11) { left:80%; top:65%; width:5px; height:5px; animation-duration:10s; animation-delay:1.8s; }
.particle:nth-child(12) { left:88%; top:25%; width:2px; height:2px; animation-duration:8s;  animation-delay:3.5s; }
.particle:nth-child(13) { left:95%; top:55%; width:4px; height:4px; animation-duration:12s; animation-delay:.7s; }
.particle:nth-child(14) { left:8%;  top:80%; width:3px; height:3px; animation-duration:9s;  animation-delay:2.2s; }
.particle:nth-child(15) { left:18%; top:42%; width:6px; height:6px; animation-duration:11s; animation-delay:1.6s; }
.particle:nth-child(16) { left:33%; top:88%; width:2px; height:2px; animation-duration:8s;  animation-delay:4s; }
.particle:nth-child(17) { left:45%; top:8%;  width:3px; height:3px; animation-duration:10s; animation-delay:0.4s; }
.particle:nth-child(18) { left:55%; top:92%; width:4px; height:4px; animation-duration:9s;  animation-delay:2.8s; }
.particle:nth-child(19) { left:68%; top:38%; width:5px; height:5px; animation-duration:11s; animation-delay:1.1s; }
.particle:nth-child(20) { left:82%; top:82%; width:3px; height:3px; animation-duration:12s; animation-delay:3.2s; }

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(0) scale(.5); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}

/* 반짝임 효과 — 큰 빛 깜빡임 */
.sparkle {
  position: absolute;
  width: 20px; height: 20px;
  z-index: 3;
  pointer-events: none;
}
.sparkle::before, .sparkle::after {
  content: '';
  position: absolute;
  background: rgba(255,240,200,.9);
  border-radius: 50%;
}
.sparkle::before {
  top: 50%; left: 0;
  width: 100%; height: 2px;
  transform: translateY(-50%);
}
.sparkle::after {
  left: 50%; top: 0;
  width: 2px; height: 100%;
  transform: translateX(-50%);
}
.sparkle { animation: sparkleFlash 4s ease-in-out infinite; }
.sparkle:nth-child(1) { top: 18%; left: 22%; animation-delay: 0s; }
.sparkle:nth-child(2) { top: 30%; left: 55%; animation-delay: 1.5s; width: 14px; height: 14px; }
.sparkle:nth-child(3) { top: 12%; left: 78%; animation-delay: 3s; width: 16px; height: 16px; }
.sparkle:nth-child(4) { top: 45%; left: 38%; animation-delay: 2s; width: 10px; height: 10px; }
.sparkle:nth-child(5) { top: 25%; left: 68%; animation-delay: .8s; width: 12px; height: 12px; }
.sparkle:nth-child(6) { top: 55%; left: 85%; animation-delay: 2.5s; width: 8px; height: 8px; }

@keyframes sparkleFlash {
  0%, 100% { opacity: 0; transform: scale(.3) rotate(0deg); }
  50%      { opacity: 1; transform: scale(1) rotate(45deg); }
}

/* ─── 히어로 텍스트 콘텐츠 ─── */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 40px 24px 60px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
  padding: 6px 16px;
  border-radius: 28px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-soft);
  letter-spacing: .05em;
  margin-bottom: 24px;
  animation: fadeInUp .8s ease-out;
}
.hero-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -.02em;
  animation: fadeInUp 1s ease-out .2s both;
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold-soft) 0%, var(--dawn-amber) 50%, var(--dawn-peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-family: 'Noto Serif KR', serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 12px;
  animation: fadeInUp 1s ease-out .4s both;
  letter-spacing: .02em;
}
.hero-verse {
  font-family: 'Noto Serif KR', serif;
  font-size: 15px;
  color: var(--gold-soft);
  opacity: .85;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out .6s both;
  margin-top: 20px;
}
.hero-verse .ref {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 4px;
  font-style: italic;
}
.hero-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto;
  animation: fadeInUp 1s ease-out .5s both;
}

/* 말씀 슬라이드 */
.verse-carousel {
  position: relative;
  min-height: 80px;
  animation: fadeInUp 1s ease-out .7s both;
}
.verse-slide {
  position: absolute; inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.verse-slide.active { opacity: 1; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   QT 안내 카드 섹션
═══════════════════════════════════════════ */
.container { max-width: 880px; margin: 0 auto; padding: 0 20px; }

.qt-info-section {
  position: relative;
  margin-top: -50px;
  z-index: 20;
  padding: 0 20px 40px;
}
.qt-info-card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08), 0 4px 16px rgba(0,0,0,.04);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  border: 1px solid rgba(0,0,0,.04);
}
.qt-info-texts {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qt-info-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.65;
}
.qt-info-line .ico {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg);
  border-radius: 10px;
  font-size: 16px;
}
.qt-info-line strong { color: var(--navy); font-weight: 700; }

.btn-duranno {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4a84b 0%, #c08a2a 100%);
  color: #fff;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 8px 24px rgba(212,168,75,.3);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -.01em;
}
.btn-duranno:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(212,168,75,.45);
}
.btn-duranno .arr { transition: transform .2s; }
.btn-duranno:hover .arr { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   게시판 영역
═══════════════════════════════════════════ */
.board-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 20px 20px 100px;
}

.board-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
}
.board-topbar h2 {
  font-size: 22px; font-weight: 800; color: var(--navy);
  display: flex; align-items: center; gap: 8px;
}
.board-topbar h2 .count { font-size: 14px; font-weight: 400; color: var(--text2); }
.btn-write {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy); color: #fff;
  padding: 11px 22px; border-radius: 12px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: all var(--transition); text-decoration: none;
  box-shadow: 0 4px 12px rgba(12,21,40,.2);
}
.btn-write:hover { background: #1e3a6e; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(12,21,40,.3); }
.btn-write.hidden { display: none; }

/* 게시글 목록 */
.post-list { list-style: none; }
.post-item {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all var(--transition);
  cursor: pointer;
  border: 1px solid rgba(0,0,0,.04);
}
.post-item:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-3px);
  border-color: rgba(212,168,75,.2);
}
.post-inner {
  display: flex; align-items: center; gap: 18px; padding: 22px 28px;
}
.post-thumb {
  width: 56px; height: 56px; border-radius: 14px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--dawn-sky) 0%, var(--dawn-warm) 100%);
  display: flex; align-items: center;
  justify-content: center; font-size: 24px;
  box-shadow: 0 4px 12px rgba(26,16,64,.15);
}
.post-body { flex: 1; min-width: 0; }
.post-subject {
  font-size: 16px; font-weight: 700; color: var(--navy);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 5px;
  letter-spacing: -.01em;
}
.post-subject .new-badge {
  display: inline-block; background: linear-gradient(135deg, #e05040, #d03a2a);
  color: #fff;
  font-size: 10px; font-weight: 700; padding: 2px 7px;
  border-radius: 10px; margin-left: 8px; vertical-align: 2px;
}
.post-excerpt {
  font-size: 13.5px; color: var(--text2);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 7px;
  line-height: 1.5;
}
.post-meta { font-size: 12px; color: #b0b4c4; letter-spacing: .02em; }
.post-actions { display: flex; gap: 8px; flex-shrink: 0; }
.btn-sm {
  padding: 6px 12px; font-size: 12px; border-radius: 8px;
  border: none; cursor: pointer; font-weight: 600; transition: all .15s;
}
.btn-del { background: #fde8e8; color: var(--red); }
.btn-del:hover { background: #f9c0c0; }
.btn-edit-post { background: #e8f0fe; color: #1a73e8; }
.btn-edit-post:hover { background: #c8dcf8; }
.admin-actions { display: none; }
body.is-admin .admin-actions { display: flex; }

/* 공지사항 배지 */
.notice-badge {
  display: inline-block; background: linear-gradient(135deg, #f8e8a0, #e8d070);
  color: #7a6010; font-size: 10px; font-weight: 700; padding: 2px 8px;
  border-radius: 10px; margin-right: 6px; vertical-align: 2px;
}

/* 빈 목록 */
.empty-state {
  text-align: center; padding: 80px 20px;
  color: var(--text2); background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.04);
}
.empty-state .icon { font-size: 64px; margin-bottom: 16px; opacity: .7; }
.empty-state p { font-size: 15px; line-height: 1.7; }

/* ─── 글쓰기 폼 ─── */
.form-wrap {
  display: none;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  padding: 36px;
  border: 1px solid rgba(0,0,0,.04);
}
.form-wrap.active { display: block; }
.form-title {
  font-size: 22px; font-weight: 800; color: var(--navy);
  margin-bottom: 28px; display: flex; align-items: center; gap: 10px;
}
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--navy); margin-bottom: 8px;
}
.form-group input[type="text"],
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-size: 15px; color: var(--text);
  font-family: inherit;
  transition: all var(--transition);
  background: var(--bg-warm);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
  background: #fff; box-shadow: 0 0 0 4px var(--gold-glow);
}
.form-group textarea { min-height: 240px; resize: vertical; line-height: 1.8; }
.form-row { display: flex; gap: 10px; margin-top: 12px; }
.btn-submit {
  flex: 1; padding: 15px; background: var(--navy); color: #fff;
  border: none; border-radius: 12px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(12,21,40,.2);
}
.btn-submit:hover { background: #1e3a6e; transform: translateY(-1px); }
.btn-cancel {
  padding: 15px 24px; background: var(--bg); color: var(--text2);
  border: none; border-radius: 12px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.btn-cancel:hover { background: #e8e4da; }

/* ─── 상세보기 ─── */
.detail-wrap {
  display: none;
  background: var(--white); border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  padding: 44px;
  border: 1px solid rgba(0,0,0,.04);
}
.detail-wrap.active { display: block; }
.detail-header { margin-bottom: 28px; }
.detail-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-soft);
  font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 14px;
  margin-bottom: 14px; letter-spacing: .05em;
}
.detail-title {
  font-family: 'Noto Serif KR', serif;
  font-size: 28px; font-weight: 800; color: var(--navy);
  margin-bottom: 12px; line-height: 1.4;
}
.detail-meta { font-size: 13px; color: var(--text2); }
.detail-body {
  font-size: 16px; line-height: 1.9; color: var(--text);
  white-space: pre-wrap; word-break: break-word;
  margin-top: 28px;
}
.detail-footer {
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.btn-back {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg); color: var(--text2);
  padding: 12px 20px; border-radius: 12px;
  font-size: 14px; font-weight: 600; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-back:hover { background: #e8e4da; }

/* 페이지네이션 */
.pagination {
  display: flex; justify-content: center; gap: 6px; margin-top: 32px;
}
.pg-btn {
  width: 40px; height: 40px; border-radius: 12px;
  border: 1.5px solid var(--border); background: #fff;
  font-size: 14px; cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center;
  color: var(--text);
}
.pg-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.pg-btn:hover:not(.active) { background: var(--bg); border-color: var(--gold); }

/* ═══════════════════════════════════════════
   반응형
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  .hero { min-height: 440px; }
  .hero-title { font-size: 34px; }
  .hero-subtitle { font-size: 15px; }
  .qt-info-card { flex-direction: column; padding: 28px 24px; gap: 20px; }
  .btn-duranno { align-self: stretch; justify-content: center; }
  .post-thumb { width: 48px; height: 48px; font-size: 20px; }
  .post-inner { padding: 18px 20px; }
  .detail-wrap { padding: 28px; }
  .detail-title { font-size: 22px; }
  .sparkle:nth-child(4), .sparkle:nth-child(6) { display: none; }
}
@media (max-width: 480px) {
  .hero { min-height: 400px; }
  .hero-content { padding: 30px 16px 50px; }
  .hero-title { font-size: 28px; }
  .hero-subtitle { font-size: 14px; }
  .hero-verse { font-size: 13px; }
  .qt-info-section { margin-top: -36px; padding: 0 12px 28px; }
  .qt-info-card { padding: 22px 18px; border-radius: 16px; }
  .qt-info-line { font-size: 14px; }
  .btn-duranno { font-size: 14px; padding: 14px 20px; }
  .board-section { padding: 16px 12px 80px; }
  .board-topbar h2 { font-size: 18px; }
  .post-inner { padding: 16px; gap: 14px; }
  .post-thumb { display: none; }
  .post-subject { font-size: 15px; }
  .form-wrap { padding: 24px 18px; }
  .ray:nth-child(4), .ray:nth-child(6) { display: none; }
  .sparkle { display: none; }
  .sparkle:nth-child(1), .sparkle:nth-child(2), .sparkle:nth-child(3) { display: block; }
}
