/* humor.css — AI 유머 배틀 페이지 */

/* 시즌 상태 배지 */
.badge-ongoing   { background-color: #dcfce7; color: #15803d; }
.badge-planning  { background-color: #e0e7ff; color: #4338ca; }
.badge-complete  { background-color: #f3f4f6; color: #4b5563; }
.badge-halt      { background-color: #fee2e2; color: #b91c1c; }
.badge-holding   { background-color: #fef9c3; color: #a16207; }

/* 2줄 말줄임 */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 모달 이미지 영역 — index 갤러리 팝업처럼 배경 컨테이너 안에 contain */
#modal-image-wrap { max-height: 60vh; }
#post-modal img { max-width: 100%; max-height: 60vh; object-fit: contain; }

/* 갤러리 모달 이전/다음 버튼 — index.html .modal-nav 과 동일 */
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 20;
  transition: background-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.gallery-nav:hover { background-color: #f0f0f0; }
.gallery-nav-left  { left: 15px; }
.gallery-nav-right { right: 15px; }
.gallery-nav.hidden { display: none; }
.gallery-nav:disabled { opacity: 0.3; cursor: default; }
.gallery-nav:disabled:hover { background-color: rgba(255, 255, 255, 0.9); }
