a {
  text-decoration: none;
  /* 밑줄 삭제 */
  color: inherit;
  /* 부모 요소의 글자색을 그대로 따름 (검정색 등) */
}


:root {
  --main: #DAE5D0;
  --sub: #F9F9F9;
  --point: #A0C1B8;
  --black: #1a1a1a;
  --border: 2px solid var(--black);
  --shadow: 8px 8px 0 rgba(26, 26, 26, 0.18);
}

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

#body {
  background-color: var(--main);
  background-image:
    linear-gradient(to right, rgba(26, 26, 26, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 26, 26, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  font-family: 'Space Mono', monospace;
  overflow: hidden;
  height: 100vh;
  /* 전역 텍스트 선택 차단 해제 (사이트 전 영역에서 드래그로 복사 가능하게) */
  user-select: text;
}

/* ══ TICKER ══ */
.ticker-bar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 36px;
  background: var(--black);
  color: var(--main);
  border-bottom: var(--border);
  z-index: 2000;
  overflow: hidden;
}

.ticker-content {
  display: flex; 
  width: max-content;
  animation: ticker-loop 60s linear infinite;
}

.ticker-content span {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding-right: 50px; 
  line-height: 36px;
  white-space: nowrap; 
}

@keyframes ticker-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ══ TASKBAR ══ */
.taskbar {
  position: fixed;
  top: 36px;
  width: 100%;
  height: 56px;
  background: var(--sub);
  border-bottom: var(--border);
  z-index: 1900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
}

.taskbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.logo {
  width: 100px;
  height: 40px;
  background: url("../img/LOGO.svg") no-repeat center / contain;
}

.taskbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.taskbar-login-btn {
  background: var(--black);
  color: var(--sub);
  border: var(--border);
  padding: 6px 16px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.1s;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.2);
}

.taskbar-login-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(26, 26, 26, 0.2);
}

.taskbar-user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 4px 10px;
  border: var(--border);
  background: var(--main);
  font-size: 12px;
  font-weight: 700;
  transition: background 0.15s;
}

.taskbar-user-info:hover {
  background: var(--point);
}

.taskbar-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--point);
  border: var(--border);
  background-image: url("../img/default-avatar.png");
  background-size: cover;
  background-position: center;
}

.taskbar-clock {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.06em;
  position: absolute;
  right: 28px;
}

/* ══ DESKTOP ══ */
.desktop {
  position: fixed;
  top: 92px;
  left: 0;
  right: 0;
  bottom: 52px;
  overflow: hidden;
}

/* ══ ICONS ══ */
.icon-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: absolute;
  top: 32px;
  left: 40px;
}

.desktop-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  width: 80px;
}

.desktop-icon:hover .icon-img {
  transform: translateY(-3px);
  box-shadow: 6px 10px 0 rgba(26, 26, 26, 0.15);
}

.icon-img {
  width: 64px;
  height: 64px;
  background: var(--sub);
  border: var(--border);
  border-radius: 4px;
  box-shadow: 4px 4px 0 rgba(26, 26, 26, 0.15);
  transition: transform 0.15s, box-shadow 0.15s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35px 35px;

}

.icon-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--black);
  text-align: center;
  letter-spacing: 0.03em;
  background: rgba(249, 249, 249, 0.88);
  padding: 2px 6px;
  border-radius: 2px;
}

.desktop-icon.active .icon-img {
  background-color: var(--point);
}

/* ══ DECO ══ */
.deco-panel {
  position: absolute;
  right: 32px;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.deco-tag {
  background: var(--sub);
  border: var(--border);
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.1);
  color: #555;
}

.deco-tag span {
  color: var(--black);
}

/* ══ WINDOWS ══ */
.win {
  position: absolute;
  background: var(--sub);
  border: var(--border);
  box-shadow: var(--shadow);
  border-radius: 2px;
  display: none;
  min-width: 280px;
  min-height: 150px;
  z-index: 100;
  overflow: hidden;
}

.win.open {
  display: block;
  animation: popIn 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(12px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.win-header {
  background: var(--point);
  border-bottom: var(--border);
  padding: 0 12px;
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: grab;
  position: relative;
  /* 창 이동(드래그)용 손잡이라 텍스트 선택은 방지 (전역 선택 허용과 별개) */
  user-select: none;
}

.win-header:active {
  cursor: grabbing;
}

.dots {
  display: flex;
  gap: 5px;
  align-items: center;
}

.dot {
  width: 13px;
  height: 13px;
  border: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: filter 0.15s;
}

.dot:hover {
  filter: brightness(0.8);
}

.dot.r {
  background: #ff5f56;
}

.dot.y {
  background: #ffbd2e;
}

.dot.g {
  background: #27c93f;
}

.win-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-left: 4px;
}

.win-body {
  padding: 28px 32px;
  overflow-y: auto;
  max-height: calc(100% - 38px - 100px);
}

.tp-main {
  padding: 0;
}



.close {
  width: 38px;
  height: 38px;             /* win-header(38px)와 동일 — 삐져나옴 방지 */
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  border-left: var(--border);   /* 왼쪽만 */
  background: url("../img/close.svg") no-repeat center;
  background-size: 16px;
  cursor: pointer;
  box-sizing: border-box;
}

/* ══ WIN: 로그인 ══ */
#win-login {
  width: 380px;
  top: 15%;
  left: 35%;
}

.login-body {
  padding: 24px 32px;
}

.login-logo-wrap {
  text-align: center;
  margin-bottom: 24px;
}

.login-logo {
  width: 300px;
  height: 60px;
  margin: 0 auto 10px;
  background: url("../img/LOGO.svg") no-repeat center / contain;
}

.login-sub {
  font-size: 11px;
  color: #777;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.login-form {
  margin-bottom: 16px;
}

.login-divider {
  text-align: center;
  position: relative;
  margin: 16px 0;
}

.login-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(26, 26, 26, 0.15);
}

.login-divider span {
  background: var(--sub);
  padding: 0 10px;
  font-size: 10px;
  color: #999;
  position: relative;
}

.social-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-btn {
  width: 100%;
  padding: 10px;
  border: var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.1s;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.1);
  letter-spacing: 0.06em;
}

.social-btn.naver {
  background: #03C75A;
  color: #1a1a1a;
}

.social-btn.kakao {
  background: #FEE500;
  color: #1a1a1a;
}

.social-btn.google {
  background: #fff;
  color: #1a1a1a;
}

.social-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 rgba(26, 26, 26, 0.1);
}

/* ══ WIN: 회원가입 ══ */
#win-signup {
  width: 380px;
  top: 10%;
  left: 38%;
}

/* ══ WIN: 프로필 ══ */
#win-profile {
  width: 360px;
  top: 12%;
  left: 36%;
}

.profile-body {
  padding: 24px 28px;
}

.profile-top {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.profile-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: var(--border);
  background: var(--point);
  flex-shrink: 0;
  background-image: url("../img/default-avatar.png");
  background-size: cover;
  background-position: center;
}

.profile-nick {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.profile-badge {
  display: inline-block;
  font-size: 10px;
  background: var(--main);
  border: var(--border);
  padding: 2px 8px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.profile-stats {
  display: flex;
  gap: 12px;
}

.pstat {
  text-align: center;
}

.pstat-n {
  font-size: 1rem;
  font-weight: 700;
}

.pstat-l {
  font-size: 10px;
  color: #777;
}

.profile-divider {
  height: 2px;
  background: var(--black);
  margin-bottom: 16px;
  opacity: 0.1;
}

.profile-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pmenu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(26, 26, 26, 0.1);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.04em;
}

.pmenu-item:hover {
  background: var(--main);
}

.pmenu-icon {
  font-size: 1rem;
}

.pmenu-logout {
  color: #ff5f56;
  margin-top: 8px;
  border: var(--border);
}

.pmenu-logout:hover {
  background: #fff0f0;
}

/* ══ 게시판 공통 ══ */
.page-main #win-hot {
  width: 1050px;
  top: 3%;
  left: 10%;
}

.page-hot #win-hot,.page-deal #win-deal, .page-free #win-free, .page-flex #win-flex, .page-trade #win-trade, .tp-page #win-trade {
  width: 90%;
  height: 100%;
  top: 0;
  right: 0;
}

.page-main #win-deal {
  width: 560px;
  height: 400px;
  bottom: 3%;
  left: 10%;
}

.page-main #win-free {
  width: 560px;
  top: 7%;
  left: 22%;
}

.page-main #win-flex {
  width: 600px;
  top: 9%;
  left: 26%;
}

.page-main #win-trade {
  width: 560px;
  height: 400px;
  bottom: 3%;
  left: 35%;
}

.page-main #win-alert {
  width: 320px;
  top: 30%;
  left: 38%;
}

.board-body {
  padding: 24px 28px;
}

.board-top {
  margin-bottom: 16px;
}

.board-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.board-desc {
  font-size: 11px;
  color: #777;
  letter-spacing: 0.04em;
}

.board-tabs,
.trade-filter {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.btab {
  padding: 5px 14px;
  border: var(--border);
  background: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s;
}

.btab:hover,
.btab.active {
  background: var(--black);
  color: var(--sub);
}

/* 게시글 목록 */
.post-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.post-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  cursor: pointer;
  transition: background 0.15s;
  box-shadow: 2px 2px 0 rgba(26, 26, 26, 0.06);
}

.post-item:hover {
  background: var(--main);
}

.slide-list {
  display: flex;
  width: 100%;
  height: 100%;
  gap: 5px;
}

.hot-slide {
  flex: 1;
  aspect-ratio: 1 / 1;
  background-color: #aaa;
}

#win-hot .post-list {
  flex: 1;
}

.hot-post {
  border-left: 3px solid #ff5f56;
  height: 60px;
}

.post-rank {
  font-size: 1.1rem;
  min-width: 28px;
  text-align: center;
  font-weight: 700;
  color: #777;
  font-size: 12px;
}

.post-content {
  flex: 1;
  min-width: 0;
}

.post-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 4px;
}

.post-meta {
  display: flex;
  gap: 10px;
  font-size: 10px;
  color: #999;
}

.deal-badge {
  font-size: 9px;
  padding: 3px 7px;
  font-weight: 700;
  background: var(--black);
  color: var(--sub);
  border: var(--border);
  letter-spacing: 0.06em;
  white-space: nowrap;
  flex-shrink: 0;
}

.deal-badge.info {
  background: var(--point);
  color: var(--black);
}

.deal-expire {
  color: #ff5f56 !important;
  font-weight: 700;
}

/* 글쓰기 버튼 */
.write-btn {
  margin-top: 4px;
}

/* ══ 자랑 (인스타형) ══ */
.insta-body {
  padding: 20px 24px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.insta-card {
  border: var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.15s;
}

.insta-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(26, 26, 26, 0.15);
}

.insta-thumb {
  aspect-ratio: 4 / 3;
  border-bottom: var(--border);
    position: relative;
}

.insta-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 700;
}

.insta-like {
  color: var(--black);
}

/* ══ 중고거래 ══ */
.trade-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.trade-card {
  border: var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.15s;
}

.trade-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 rgba(26, 26, 26, 0.15);
}

.trade-thumb {
  aspect-ratio: 4 / 3;
  border-bottom: var(--border);
}

.trade-name {
  padding: 8px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.trade-price {
  padding: 0 10px 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--point);
}

.trade-condition {
  font-size: 9px;
  padding: 2px 7px;
  font-weight: 700;
  border: var(--border);
  z-index: 999;
}

.trade-condition.best {
  background: #d4f0d4;
}

.trade-condition.good {
  background: var(--main);
}

.trade-condition.used {
  background: #f0e8d4;
}

/* ══ 공통 폼 요소 ══ */
.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  display: block;
}

.neo-input {
  width: 100%;
  border: var(--border);
  padding: 10px 12px;
  margin-bottom: 14px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  background: var(--sub);
  resize: none;
  transition: box-shadow 0.15s;
}

.neo-input:focus {
  outline: none;
  box-shadow: 4px 4px 0 var(--point);
}

textarea.neo-input {
  height: 90px;
}

.action-btn {
  display: inline-block;
  background: var(--black);
  color: var(--sub);
  border: var(--border);
  padding: 12px 28px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 5px 5px 0 rgba(26, 26, 26, 0.2);
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  margin-right: 8px;
}

.action-btn:hover {
  transform: translate(2px, 2px);
}

.action-btn.ghost {
  background: var(--main);
  color: var(--black);
  box-shadow: 5px 5px 0 rgba(26, 26, 26, 0.2);
}

.action-btn.full {
  width: 100%;
  text-align: center;
  margin-right: 0;
  display: block;
}

/* ══ 하단 앱바 ══ */
.open-apps {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 52px;
  background: rgba(249, 249, 249, 0.95);
  border-top: var(--border);
  z-index: 1800;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 8px;
}

.apps-label {
  font-size: 10px;
  color: #aaa;
  font-weight: 700;
  margin-right: 8px;
  letter-spacing: 0.06em;
}

.taskbar-btn {
  height: 34px;
  padding: 0 14px;
  border: var(--border);
  background: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.1);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.taskbar-btn:hover {
  background: var(--main);
}

.taskbar-dot {
  width: 7px;
  height: 7px;
  background: var(--point);
  border: 1px solid var(--black);
  border-radius: 50%;
}

/* ══ 플로팅 퀵바 ══ */
.quickbar {
  position: fixed;
  /* 초기 위치 — JS로 드래그 가능 */
  top: 50%;
  transform: translateY(-50%);
  right: 24px;
  z-index: 1700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--sub);
  border: var(--border);
  box-shadow: var(--shadow);
  border-radius: 4px;
  padding: 8px 6px;
  cursor: grab;
  user-select: none;
}

.quickbar:active {
  cursor: grabbing;
}

.qb-handle {
  font-size: 1.1rem;
  padding: 2px 0 6px;
  border-bottom: var(--border);
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
  cursor: grab;
}

.qb-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qb-key {
  width: 38px;
  height: 38px;
  border: var(--border);
  background: var(--main);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.15);
  transition: transform 0.1s, box-shadow 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qb-key:hover {
  transform: translate(-1px, -2px);
  box-shadow: 4px 5px 0 rgba(26, 26, 26, 0.2);
}

.qb-key:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 rgba(26, 26, 26, 0.1);
}

/* 툴팁 */
.qb-key[title]:hover::after {
  content: attr(title);
  position: absolute;
  right: 48px;
  background: var(--black);
  color: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  white-space: nowrap;
  pointer-events: none;
  border: var(--border);
}


.icon01 {
  background-image: url("../img/icon01.webp");
}

.icon02 {
  background-image: url("../img/icon02.webp");
}

.icon03 {
  background-image: url("../img/icon03.webp");
}

.icon04 {
  background-image: url("../img/icon04.webp");
}

.icon05 {
  background-image: url("../img/icon05.webp");
}

.icon06 {
  background-image: url("../img/icon06.webp");
}

/* ══ 검색창 ══ */
.search-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}

.search-input {
  height: 32px;
  border: var(--border);
  border-right: none;
  padding: 0 10px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  background: var(--sub);
  width: 180px;
  outline: none;
}

.search-input:focus {
  box-shadow: inset 0 0 0 2px var(--point);
}

.search-btn {
  height: 32px;
  width: 32px;
  border: var(--border);
  background: var(--black);
  color: var(--sub);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-btn:hover {
  background: var(--point);
  color: var(--black);
}

mark {
  background: var(--point);
  color: var(--black);
  padding: 0 2px;
}

/* ══ 태스크바 우측 ══ */
.taskbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.taskbar-clock {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.06em;
}

/* ══ 인기게시판 2단 레이아웃 ══ */
.hot-body {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.hot-board-tabs {
  display: flex;
  gap: 4px;
  padding: 10px 16px 0;
  border-bottom: var(--border);
  background: rgba(160, 193, 184, 0.15);
}

.hbtab {
  padding: 6px 14px;
  border: var(--border);
  border-bottom: none;
  background: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s;
}

.hbtab:hover {
  background: var(--main);
}

.hbtab.active {
  background: var(--point);
  border-color: var(--black);
}

.hot-layout {
  display: flex;
  flex: 1;
  min-height: 0;
}

/* 왼쪽 슬라이드 */
.hot-left {
  width: 50%;
  flex-shrink: 0;
  border-right: var(--border);
  display: flex;
  flex-direction: column;
}

.hot-slideshow {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hot-slide-img {
  flex: 1;
  min-height: 180px;
  transition: background 0.6s ease;
}

.hot-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.2);
  border: 1px solid var(--black);
  cursor: pointer;
  transition: background 0.2s;
}

.hot-dot.active {
  background: var(--black);
}

/* 오른쪽 게시글 */
.hot-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hot-board-header {
  padding: 12px 16px 8px;
  border-bottom: var(--border);
  background: rgba(218, 229, 208, 0.3);
}

#hotPostList {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}

/* hover 시 배경색 강조 */
.post-item.hovered {
  background: var(--main) !important;
}

/* ══ 더보기 버튼 ══ */
.more-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border: var(--border);
  background: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: center;
  box-shadow: 3px 3px 0 rgba(26, 26, 26, 0.1);
  transition: background 0.15s;
}

.more-btn:hover {
  background: var(--main);
}

/* ══ 리본 ══ */
.ribbon {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  letter-spacing: 0.06em;
  border: 1px solid currentColor;
  border-radius: 2px;
  margin-right: 4px;
  vertical-align: middle;
}

.ribbon-hot {
  color: #d63031;
  background: #ffe8e8;
  border-color: #d63031;
}

.ribbon-pick {
  color: #6c5ce7;
  background: #f0eeff;
  border-color: #6c5ce7;
}

.ribbon-buzz {
  color: #00b894;
  background: #e8fff8;
  border-color: #00b894;
}

.ribbon-abs {
  position: absolute;
  top: 6px;
  left: 6px;
}

/* ══ 클릭 가능한 제목 ══ */
.clickable-title {
  cursor: pointer;
  transition: color 0.15s;
}

.clickable-title:hover {
  color: var(--point);
  text-decoration: underline;
}


/* ══ 자랑 카드 개선 ══ */
.insta-sub {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 8px 8px;
  font-size: 10px;
}

.insta-title {
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}

.insta-comments {
  color: #999;
}

.liked-btn {
  cursor: pointer;
  transition: color 0.15s;
  user-select: none;
}

.liked-btn.liked {
  color: #d63031;
}

.liked-btn:hover {
  color: #d63031;
}

/* ══ 좋아요 애니메이션 ══ */
@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

.like-btn.liked {
  animation: heartPop 0.3s ease;
}

/* ══ 반응형: win 내부 ══ */
.win {
  resize: none;
}

.win .win-body {
  box-sizing: border-box;
}

.hot-layout {
  flex-wrap: wrap;
}

@media (max-width:480px) {
  .hot-left {
    width: 100%;
    border-right: none;
    border-bottom: var(--border);
  }
}

/* ══ 푸터 링크바 ══ */
.footer-linkbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: var(--black);
  border-top: 2px solid var(--black);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.flink {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(218, 229, 208, 0.6);
  text-decoration: none;
  padding: 0 10px;
  height: 38px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.flink:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.flink:hover {
  color: var(--main);
  background: rgba(255, 255, 255, 0.06);
}

.footer-clock {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(218, 229, 208, 0.5);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

/* open-apps 높이 줄이기 (푸터 위에 위치) */
.open-apps {
  bottom: 38px !important;
}

/* 데스크탑 영역도 푸터만큼 위로 */
.desktop {
  bottom: 90px !important;
}

/* ══ hot-thumb (인기창 왼쪽 썸네일) ══ */
.hot-thumb-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.hot-thumb-img {
  flex: 1;
  min-height: 180px;
  transition: background 0.35s ease;
  border-bottom: var(--border);
}

.hot-thumb-caption {
  padding: 8px 10px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.5;
  color: #555;
  min-height: 46px;
  display: flex;
  align-items: center;
  letter-spacing: 0.02em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* ══ 푸터 링크바 ══ */
.footer-linkbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 38px;
  background: var(--black);
  border-top: 2px solid var(--black);
  z-index: 1700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.flink {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(218, 229, 208, 0.6);
  text-decoration: none;
  padding: 0 10px;
  height: 38px;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}

.flink:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.flink:hover {
  color: var(--main);
  background: rgba(255, 255, 255, 0.06);
}

.footer-clock {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: rgba(218, 229, 208, 0.5);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

/* open-apps + desktop: 푸터 위로 올리기 */
.open-apps {
  bottom: 38px !important;
}

.desktop {
  bottom: 90px !important;
}




/* common.css 맨 아래에 추가 (미디어 쿼리 중괄호가 끝난 후!) */

.ozl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; 
  margin: 30px 0;
}



.ozl-pg-num, .ozl-pg-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.ozl-pg-arrow {
  border: var(--border);
  background: var(--point);
  font-weight: bold;
  transition: all 0.2s;
  user-select: none;
}

.ozl-pagination .ozl-pg-arrow:hover {
  background: #DAE5D0;
  /* var(--main) */
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.ozl-pg-list {
  display: inline-flex;  /* 핵심: 자식 크기만큼만 부피를 가짐 */
  align-items: center;
  justify-content: center;
  gap: 5px;             /* 숫자들 사이의 간격 */
  
}

.ozl-pg-num.active {
  background-color: var(--black) !important; /* 배경을 검정색으로 */
  color: #fff !important;                    /* 글자를 흰색으로 */
}


.page-main .win-body {
  max-height: calc(100% - 80px);
}


/* ════════════════════════════════════════════════
   TRADE-POST.CSS
   상품 상세 페이지 전용
   common.css 변수(--main, --sub, --point, --black,
   --border, --shadow) 그대로 사용
════════════════════════════════════════════════ */

/* ── body 오버라이드: 이 페이지는 스크롤 허용 ── */
.tp-page {
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
  min-height: 100vh;
  user-select: text;
}

/* ── taskbar 위치 조정 (ticker 아래) ── */
.tp-page .taskbar { position: fixed; top: 36px; z-index: 1900; }
.tp-page .ticker-bar { position: fixed; top: 0; z-index: 2000; }

/* 뒤로가기 버튼 (taskbar 안) */
.tp-back-btn {
  height: 30px; padding: 0 14px;
  border: var(--border);
  background: var(--sub); color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  cursor: pointer; white-space: nowrap;
  transition: background 0.15s;
}
.tp-back-btn:hover { background: var(--main); }

/* ── 전체 레이아웃 ── */


/* 사이드바 (레이아웃 균형용) */
.tp-sidebar-left,
.tp-sidebar-right {
  width: 80px;
  flex-shrink: 0;
}
.tp-sidebar-left {
position: absolute;
top: 58px;
left: 20px;
z-index: 999;
}
.tp-nav-btn {
  width: 40px; height: 40px;
  border: var(--border);
  background: var(--sub);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s;
}
.tp-nav-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 10px 10px 0 rgba(26,26,26,0.15);
}

/* ── 중앙 메인 카드 ── */


/* ════════════════════
   이미지 슬라이더
════════════════════ */
.tp-img-wrap {
  position: relative;
  width: 100%;
  border-bottom: var(--border);
  overflow: hidden;
  background: #1a1a1a;
}

.tp-img-stage {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tp-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 800px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 화살표 */
.tp-img-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(249,249,249,0.85);
  border: var(--border); border-radius: 50%;
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, opacity 0.15s;
  z-index: 5;
}
.tp-img-arrow:hover { background: var(--sub); }
.tp-img-arrow:disabled { opacity: 0.25; cursor: default; }
.tp-arrow-l { left: 10px; }
.tp-arrow-r { right: 10px; }

/* n / total 카운터 */
.tp-img-counter {
  position: absolute; bottom: 10px; right: 12px;
  background: rgba(26,26,26,0.62);
  color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 10px;
  letter-spacing: 0.06em; z-index: 5;
}

/* 하단 점 dots */
.tp-img-dots {
  position: absolute; bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 5;
}
.tp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 1.5px solid rgba(255,255,255,0.6);
  cursor: pointer; transition: background 0.2s, transform 0.2s;
}
.tp-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ════════════════════
   판매자
════════════════════ */
.tp-seller {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border-bottom: var(--border);
  background: rgba(218,229,208,0.15);
}
.tp-seller-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: var(--border);
  background: var(--point);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--black);
  flex-shrink: 0;
  overflow: hidden;
}
.tp-seller-info { flex: 1; }
.tp-seller-nick {
  font-size: 13px; font-weight: 700; margin-bottom: 2px;
}
.tp-seller-region {
  font-size: 10px; color: #888;
}
.tp-seller-badge {
  font-size: 9px; font-weight: 700;
  padding: 3px 9px;
  border: var(--border);
  background: var(--main);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* ════════════════════
   상품 본문 정보
════════════════════ */
.tp-product-body {
  padding: 18px 20px;
  border-bottom: var(--border);
}
.tp-product-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.05rem; font-weight: 900;
  line-height: 1.5; margin-bottom: 7px;
}
.tp-product-date {
  font-size: 10px; color: #aaa;
  letter-spacing: 0.04em; margin-bottom: 10px;
}
.tp-product-method {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px;
  border: var(--border);
  background: var(--main);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}
.tp-product-desc {
  font-size: 12px; line-height: 1.9;
  color: #333; white-space: pre-wrap;
  margin-bottom: 16px;
}
.tp-product-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.tp-tag {
  font-size: 10px;
  padding: 3px 11px;
  border: 1.5px solid rgba(26,26,26,0.2);
  border-radius: 100px;
  color: #555;
  background: rgba(218,229,208,0.35);
  letter-spacing: 0.02em;
}

/* ════════════════════
   거래 안내 배너
════════════════════ */
.tp-notice {
  display: flex; gap: 9px; align-items: flex-start;
  padding: 12px 20px;
  border-bottom: var(--border);
  background: rgba(160,193,184,0.18);
  font-size: 11px; color: #555; line-height: 1.65;
}
.tp-notice-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.tp-notice strong { color: var(--black); }

/* ════════════════════
   댓글 섹션
════════════════════ */
.tp-comments { padding: 18px 20px 24px; }

.tp-comments-hdr {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 16px;
}
.tp-comments-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; color: #555;
}
.tp-comments-count { font-size: 10px; color: #aaa; }

/* 댓글 없을 때 */
.tp-no-comment {
  text-align: center; padding: 32px 10px;
  font-size: 11px; color: #ccc; line-height: 2;
  letter-spacing: 0.04em; border: 1px dashed rgba(26,26,26,0.15);
  margin-bottom: 16px;
}

/* ── 댓글 아이템 ── */
.tp-ci {
  border: var(--border);
  margin-bottom: 12px;
  background: var(--sub);
  box-shadow: 3px 3px 0 rgba(26,26,26,0.06);
}
.tp-ci-private { border-color: var(--point); background: rgba(160,193,184,0.07); }
.tp-ci-mine    { border-color: var(--black); }

.tp-ci-head {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 13px;
  border-bottom: 1px solid rgba(26,26,26,0.08);
  background: rgba(26,26,26,0.025);
}
.tp-ci-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid var(--black);
  background: var(--point);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; flex-shrink: 0;
}
.tp-ci-nick {
  font-size: 11px; font-weight: 700; flex: 1;
}
.tp-ci-nick.is-seller { color: var(--point); }
.tp-seller-tag {
  font-size: 9px; padding: 1px 5px;
  background: var(--point); color: var(--black);
  border: 1px solid var(--black);
  margin-left: 4px; font-weight: 700;
}
.tp-ci-lock {
  font-size: 9px; padding: 1px 6px;
  background: rgba(160,193,184,0.4); color: var(--black);
  border: 1px solid var(--point); font-weight: 700;
}
.tp-ci-time { font-size: 9px; color: #ccc; flex-shrink: 0; }

.tp-ci-body { padding: 10px 13px; }
.tp-ci-text {
  font-size: 12px; line-height: 1.75;
  color: #333; white-space: pre-wrap;
}
.tp-ci-locked {
  font-size: 11px; color: #bbb;
  display: flex; align-items: center; gap: 6px;
}

/* 답글 영역 */
.tp-ci-replies {
  border-top: 1px solid rgba(26,26,26,0.07);
  background: rgba(26,26,26,0.015);
}
.tp-reply-item {
  display: flex; align-items: baseline; gap: 7px;
  padding: 7px 13px 7px 30px;
  border-bottom: 1px solid rgba(26,26,26,0.04);
  font-size: 11px;
}
.tp-reply-item:last-child { border-bottom: none; }
.tp-reply-nick  { font-weight: 700; color: var(--point); flex-shrink: 0; }
.tp-reply-text  { flex: 1; color: #444; line-height: 1.55; }
.tp-reply-time  { font-size: 9px; color: #ccc; flex-shrink: 0; }

/* 액션 버튼 행 */
.tp-ci-actions {
  padding: 5px 13px;
  border-top: 1px solid rgba(26,26,26,0.06);
}
.tp-reply-toggle-btn {
  font-size: 9px; font-weight: 700;
  padding: 2px 8px;
  border: 1px solid rgba(26,26,26,0.18);
  background: none; cursor: pointer; letter-spacing: 0.04em;
  transition: background 0.12s;
}
.tp-reply-toggle-btn:hover { background: var(--main); }

/* 답글 입력창 */
.tp-reply-write {
  display: none;
  padding: 7px 13px 8px 30px;
  border-top: 1px dashed rgba(26,26,26,0.1);
  gap: 6px; align-items: center;
}
.tp-reply-write.open { display: flex; }
.tp-reply-input {
  flex: 1; height: 30px;
  border: var(--border); padding: 0 9px;
  font-family: 'Space Mono', monospace; font-size: 11px;
  background: var(--sub); outline: none;
}
.tp-reply-input:focus { box-shadow: 3px 3px 0 var(--point); }
.tp-reply-submit-btn {
  height: 30px; padding: 0 12px;
  border: var(--border);
  background: var(--black); color: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 10px; font-weight: 700; cursor: pointer;
}

/* ── 댓글 입력창 ── */
.tp-cw { margin-top: 16px; }
.tp-cw-row {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 9px;
}
.tp-cw-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  border: var(--border); background: var(--point);
  flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.tp-cw-textarea {
  flex: 1;
  border: var(--border); padding: 10px 12px;
  font-family: 'Space Mono', monospace;
  font-size: 11px; line-height: 1.65;
  background: var(--sub); resize: none; outline: none;
  transition: box-shadow 0.15s;
}
.tp-cw-textarea:focus { box-shadow: 4px 4px 0 var(--point); }

.tp-cw-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-left: 42px;
}
.tp-private-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: #555; cursor: pointer;
}
.tp-private-label input { accent-color: var(--point); cursor: pointer; }
.tp-submit-btn {
  padding: 8px 20px;
  border: var(--border);
  background: var(--black); color: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(26,26,26,0.2);
  transition: transform 0.1s, box-shadow 0.1s;
}
.tp-submit-btn:hover {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 rgba(26,26,26,0.2);
}

/* 비로그인 안내 */
.tp-cw-guest { margin-top: 14px; text-align: center; }

/* ════════════════════
   하단 고정 바
════════════════════ */
.tp-bottom-bar {
  height: 100px;
  background: rgba(249,249,249,0.96);
  border-top: var(--border);
  display: flex; align-items: center;
  padding: 0 20px; gap: 10px;
  z-index: 1600;
  backdrop-filter: blur(10px);
}

/* 찜 버튼 */
.tp-like-btn {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1px;
  width: 54px; height: 46px; flex-shrink: 0;
  border: var(--border);
  background: var(--sub);
  cursor: pointer;
  box-shadow: 3px 3px 0 rgba(26,26,26,0.1);
  transition: all 0.15s;
  font-family: 'Space Mono', monospace;
}
#tpLikeIcon { font-size: 1.15rem; line-height: 1; }
#tpLikeCount { font-size: 9px; font-weight: 700; color: #777; }
.tp-like-btn:hover { background: #ffe8e8; }
.tp-like-btn.liked {
  background: #ffe8e8;
  border-color: #d63031;
}
.tp-like-btn.liked #tpLikeCount { color: #d63031; }

@keyframes heartPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.35); }
  100% { transform: scale(1); }
}
.tp-like-btn.pop { animation: heartPop 0.3s ease; }

/* 문의 버튼 */
.tp-inquiry-btn {
  flex: 1; height: 46px;
  border: var(--border);
  font-family: 'Space Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.06em;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
}
.tp-inquiry-main {
  background: var(--black); color: var(--sub);
  box-shadow: 4px 4px 0 rgba(26,26,26,0.2);
}
.tp-inquiry-main:hover {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 rgba(26,26,26,0.2);
}
.tp-inquiry-ghost {
  background: rgba(26,26,26,0.07); color: #777;
  box-shadow: none;
}

/* ════════════════════
   로그인 모달
════════════════════ */
.tp-modal-dim {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 3000;
}
.tp-modal-dim.open { display: block; }

.tp-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 340px;
  background: var(--sub);
  border: var(--border);
  box-shadow: var(--shadow);
  padding: 28px 28px 24px;
  z-index: 3001;
}
.tp-modal.open { display: block; }
.tp-modal-close {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none;
  font-size: 1.3rem; cursor: pointer; color: #888;
  line-height: 1;
}
.tp-modal-close:hover { color: var(--black); }
.tp-modal-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1rem; font-weight: 900;
  text-align: center; margin-bottom: 20px;
}
.tp-modal-login-btn {
  width: 100%; height: 42px; margin-top: 14px;
  border: var(--border);
  background: var(--black); color: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(26,26,26,0.2);
  transition: transform 0.1s, box-shadow 0.1s;
}
.tp-modal-login-btn:hover {
  transform: translate(2px,2px);
  box-shadow: 2px 2px 0 rgba(26,26,26,0.2);
}
.tp-modal-kakao-btn {
  width: 100%; height: 42px; margin-top: 8px;
  border: var(--border);
  background: #FEE500; color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: 12px; font-weight: 700; cursor: pointer;
}

/* ── open-apps / footer 위치 ── */
.tp-page .open-apps     { bottom: 38px; }
.tp-page .footer-linkbar { bottom: 0; }

/* ════════════════════
   반응형
════════════════════ */
@media (max-width: 680px) {
  .tp-sidebar-left,
  .tp-sidebar-right { display: none; }


  .tp-cw-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; padding-left: 0;
  }
  .tp-submit-btn { width: 100%; text-align: center; }

  .tp-bottom-bar { padding: 0 12px; gap: 8px; }
  .tp-inquiry-btn { font-size: 11px; }
}

@media (max-width: 400px) {
  .tp-slide  { height: 240px; }
  .tp-product-title { font-size: 0.95rem; }
}





/* ════════════════════════════════════════════════
   RESPONSIVE MOBILE  ≤ 768px
   원본 데스크탑 코드를 건드리지 않고
   미디어쿼리로만 모바일 레이아웃을 덮어씀
════════════════════════════════════════════════ */

/* ── 햄버거 버튼: 데스크탑에서는 숨김 ── */
.m-hamburger {
  display: none;
}

@media (max-width: 768px) {

  /* ──────────────────
     BODY / 스크롤
  ────────────────── */
  #body {
    overflow-y: auto;
    overflow-x: hidden;
    height: auto;
    min-height: 100vh;
  }

  /* ──────────────────
     TICKER
  ────────────────── */
  .ticker-bar,
  .open-apps,
  .footer-clock {
    display: none;
  }

  #taskbar-guest {
    position: absolute;
    right: 70px;
  }

  .page-main #win-trade,
  .page-main #win-deal {
    display: none !important;
  }

  .win-group {
    position: absolute;
    left: 50%;
    top: 58px;
    transform: translateX(-50%);
    width: 95%;
    height: 80%;
  }

  /* ──────────────────
     TASKBAR
  ────────────────── */
  .taskbar {
    padding: 0 14px;
    height: 48px;
    top: 0;
    gap: 8px;
  }

  .logo {
    width: 72px;
    height: 32px;
  }

  .search-wrap {
    display: none;
  }

  /* 검색창 숨김 (공간 절약) */
  .taskbar-clock {
    display: none;
  }

  /* 시계 숨김 */

  /* 햄버거 버튼 표시 */
  .m-hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-shrink: 0;
    order: 10;
    /* taskbar-right 맨 오른쪽 */
  }

  .m-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275),
      opacity 0.2s ease,
      background 0.2s;
    transform-origin: center;
  }

  /* X 모양으로 변환 */
  .m-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .m-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .m-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ──────────────────
     ICON GRID → 드롭다운
  ────────────────── */
  .icon-grid {
    /* 기존 absolute 세로 배치 → fixed 가로 드롭다운 */
    position: fixed;
    top: 46px;
    /* ticker + taskbar */
    left: 0;
    right: 0;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    padding: 0 8px;
    background: var(--sub);
    border-bottom: var(--border);
    z-index: 1850;

    /* 기본: 접혀 있음 */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(0.175, 0.885, 0.32, 1.275),
      padding 0.3s ease;
  }

  .icon-grid.m-open {
    max-height: 130px;
    padding: 12px 8px 14px;
  }

  /* 아이콘 bouncy 등장 */
  .desktop-icon {
    width: auto;
    flex: 1;
    transform: translateY(-20px);
    opacity: 0;
    transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.475),
      opacity 0.28s ease;
    pointer-events: none;
  }

  .icon-grid.m-open .desktop-icon {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .icon-grid.m-open .desktop-icon:nth-child(1) {
    transition-delay: 0.04s;
  }

  .icon-grid.m-open .desktop-icon:nth-child(2) {
    transition-delay: 0.09s;
  }

  .icon-grid.m-open .desktop-icon:nth-child(3) {
    transition-delay: 0.14s;
  }

  .icon-grid.m-open .desktop-icon:nth-child(4) {
    transition-delay: 0.19s;
  }

  .icon-grid.m-open .desktop-icon:nth-child(5) {
    transition-delay: 0.24s;
  }

  .icon-img {
    width: 52px;
    height: 52px;
    background-size: 36px 36px;
  }

  .icon-label {
    font-size: 9px;
  }

  /* ──────────────────
     DESKTOP AREA
  ────────────────── */
  .desktop {
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    overflow: visible;
    padding-bottom: 38px;
    /* open-apps + footer */
    min-height: calc(100vh - 48px);
  }

  /* deco 숨김 */
  .deco-panel {
    display: none;
  }

  /* 퀵바 숨김 */
  .quickbar {
    display: none !important;
  }

  /* ──────────────────
     WIN 창 → 풀스크린
  ────────────────── */
  .win {
    left: 0 !important;
    top: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-height: none !important;
    border-radius: 0 !important;
    z-index: 1500;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* alert 창: 중앙 팝업 */
  #win-alert {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 88vw !important;
    height: auto !important;
    transform: translate(-50%, -50%) !important;
  }

  /* win 헤더/바디 */
  .win-header {
    height: 40px;
  }

  .win-title {
    font-size: 10px;
  }
  
  /* 서브페이지 win (page-xxx에서 열리는 전체 창) */
  .page-hot #win-hot,
  .page-deal #win-deal,
  .page-free #win-free,
  .page-flex #win-flex {
    top: 0;
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 38px !important;
  }

  /* 로그인창 */
  #win-login {
    top: calc(36px + 48px) !important;
  }

  #win-signup {
    top: calc(36px + 48px) !important;
  }

  #win-profile {
    top: calc(36px + 48px) !important;
  }

  #win-search {
    top: calc(36px + 48px) !important;
  }

  .login-body {
    padding: 20px;
  }

  /* ──────────────────
     게시판 레이아웃
  ────────────────── */
  .hot-layout {
    flex-direction: column;
  }

  .hot-left {
    display: none;
  }

  /* 썸네일 패널 숨김 */
  .hot-board-tabs {
    flex-wrap: wrap;
    gap: 4px;
  }

  .hbtab {
    font-size: 9px;
    padding: 4px 10px;
  }

  .board-body {
    padding: 14px;
  }

  .post-item {
    padding: 9px 10px;
    gap: 8px;
  }

  .post-title {
    font-size: 11px;
  }

  .post-meta {
    font-size: 9px;
    gap: 6px;
  }

  /* 자랑: 2열 */
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  /* 중고거래: 1열 */
  .trade-grid {
    grid-template-columns: 1fr;
  }

  /* 게시글 상세 */
  .post-detail-body {
    padding: 14px;
  }

  .post-detail-title {
    font-size: 1rem;
  }

  .post-detail-thumb {
    height: 140px;
  }


  /* ──────────────────
     FOOTER LINKBAR
  ────────────────── */
  .footer-linkbar {
    height: auto !important;
    flex-wrap: wrap;
    padding: 6px 10px;
    gap: 0;
    bottom: 0;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .flink {
    font-size: 9px;
    padding: 4px 8px;
    height: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .footer-clock {
    font-size: 9px;
    margin-top: 3px;
    width: 100%;
    text-align: right;
  }

  /* ──────────────────
     FORMS
  ────────────────── */
  .neo-input {
    font-size: 13px;
  }

  .action-btn {
    padding: 10px 18px;
    font-size: 11px;
  }

  .action-btn.full {
    width: 100%;
    margin-right: 0;
    display: block;
  }

  .social-btn {
    padding: 12px;
    font-size: 12px;
  }



.num_m { display: none; }

.ozl-pagination {
  gap: 5px; 
  margin: 30px 0;
}

}

/* ── 초소형 화면 ── */
@media (max-width: 380px) {
  .icon-img {
    width: 44px;
    height: 44px;
    background-size: 30px 30px;
  }

  .icon-label {
    font-size: 8px;
  }

  .post-title {
    font-size: 10px;
  }
}
/* ═══════════════════════════════════════════════════════════
   이하: 260716 패치 1~8 병합본 (테스트 서버에 개별 붙여넣었던 패치들)
   ═══════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════
   [패치 260716] 창 내부 스크롤바 수정
   common.css 파일 맨 아래에 이 블록 전체를 붙여넣으세요.
════════════════════════════════════════════════ */

/* 창 본문의 가로 스크롤 제거
   - .win-body가 overflow-y:auto만 지정되어 있어 내용이 1px라도 넘치면
     가로 스크롤바가 항상 표시되던 문제.
   - 가로 스크롤바가 생기면 그 높이(약 15px)만큼 세로 공간을 잡아먹어
     마우스 호버 시 세로 스크롤바까지 연쇄로 생기던 문제도 함께 해결됨 */
.win-body {
  overflow-x: hidden;
}

/* 글쓰기/판매등록 버튼 넘침 수정
   - .action-btn이 inline-block + 좌우 padding 28px + margin-right 8px 라서
     창 폭보다 넓어지며 가로 스크롤을 유발하던 원인.
   - 창 내부(win-body)에 있는 write-btn만 블록형 + border-box로 교정 */
.win-body .action-btn.write-btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin-right: 0;
  text-align: center;
}

/* ════════════════════════════════════════════════
   [패치 260716-2] index.php 화면 수정사항 (1~5, 7, 8번)
   common.css 파일 맨 아래(이전 패치 아래)에 이 블록 전체를 붙여넣으세요.

   ── 공통 원인 설명 ──
   globals.css 의 전역 규칙 두 가지가 원인:
   (a) body 기본 글자색이 반투명 흰색 rgba(255,248,240,0.5)
       → 명시적 색이 없는 글씨(창 제목, 글 제목, 더보기, 이모지)가 안 보임
   (b) a { width:100%; height:100% }
       → 그누보드 변환 과정에서 <a>로 바뀐 요소들이 부모를 꽉 채우며
         주변 내용(게시판 설명 등)을 밀어냄
   아래 규칙들은 이 두 전역 규칙을 필요한 요소에서만 되돌리는 패치입니다.
════════════════════════════════════════════════ */

/* [1] 검색 아이콘(⌕) 가로세로 정중앙 정렬
   flex 중앙정렬은 이미 있으나 글리프의 line-height가 어긋남을 유발 */
.search-btn {
  line-height: 1;
  padding: 0;
}

/* [2] 태스크바 로그인 버튼/회원정보가 세로로 길게 늘어나는 문제
   flex 컨테이너 안에서 공간이 부족하면 최소폭(글자 1개 너비)까지
   찌그러지며 글자가 세로로 쌓이던 현상 → 줄바꿈 금지 + 축소 금지 */
#taskbar-guest,
#taskbar-user {
  flex-shrink: 0;
}
.taskbar-login-btn,
.taskbar-user-info {
  white-space: nowrap;
}

/* [3] 창 제목(이모지+타이틀) 글씨 안 보임 → 검은색 지정 */
.win-title {
  color: var(--black);
}

/* [4] 게시판 이름(창 안의 큰 제목)
   - <a>로 바뀌며 전역 a 규칙(height:100%)이 헤더 영역을 독차지해
     아래의 게시판 설명(board-desc)을 영역 밖으로 밀어내던 문제 → 크기 원복
   - 기본 검은색, 마우스오버 시 색 변경 + 밑줄 */
a.board-title,
.win .board-title {
  width: auto;
  height: auto;
  display: block;
  color: var(--black);
}
.clickable-title {
  cursor: pointer;
}
.clickable-title:hover {
  color: #4a7a5a; /* 팔레트 톤에 맞춘 진한 그린 — 원하는 색으로 바꿔도 됨 */
  text-decoration: underline;
}

/* [5] 글 제목 안 보임 → 검은색 지정 + <a>화된 목록 아이템 크기 원복 */
.post-title {
  color: var(--black);
}
a.post-item {
  width: 100%;
  height: auto;
}

/* [7] 퀵바 새싹(🌱) 이모지가 뿌옇게 보임
   반투명 글자색(rgba ... 0.5)이 이모지에도 투명도로 적용되던 현상
   → 불투명 색 지정으로 이모지가 원래 색으로 표시됨 */
.qb-handle {
  color: var(--black);
}

/* [8] 창 하단 더보기 버튼 글씨 안 보임 → 검은색 지정 + <a> 크기 원복 */
a.more-btn,
.more-btn {
  color: var(--black);
  height: auto;
}

/* [예방] <a>로 바뀐 카드형 아이템들도 전역 a 크기 규칙 원복
   (flex/trade 미리보기와 목록에서 레이아웃 밀림 예방) */
a.insta-card,
a.trade-card {
  width: auto;
  height: auto;
}
a.desktop-icon {
  width: auto;
  height: auto;
}

/* ════════════════════════════════════════════════
   [패치 260716-3] 글쓰기 창(write.exe) 수정사항
   common.css 파일 맨 아래(이전 패치들 아래)에 이 블록 전체를 붙여넣으세요.
════════════════════════════════════════════════ */

/* [**] 본문이 길어지면 작성완료 버튼이 화면 밖으로 밀려나는 문제
   원인: #win-write에 크기 지정이 없어 내용만큼 창이 무한정 늘어나는데,
         바탕화면(body)은 스크롤이 잠겨 있어 밀려난 버튼에 접근 불가.
   해결: 창 크기를 화면 안에 고정하고, 내용은 창 본문(win-body) 안에서
         스크롤되게 함 → 취소/작성완료 버튼이 항상 스크롤로 도달 가능.
   같은 구조인 본문보기 창(#win-post)도 함께 적용 (긴 글에서 같은 문제 예방) */
#win-write,
#win-post {
  top: 90px;
  left: 50px;
  width: calc(100% - 100px);
  max-width: 1100px;
  height: calc(100% - 140px);
}
#win-write .win-body,
#win-post .win-body {
  max-height: calc(100% - 38px); /* 38px = 창 헤더 높이 */
  overflow-y: auto;
}

/* [1] 제목 입력칸 + "임시 저장된 글" 버튼을 한 줄로 배치 */
#autosave_wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
#autosave_wrapper #wr_subject {
  flex: 1;
  min-width: 0;
}
#btn_autosave {
  flex-shrink: 0;
  white-space: nowrap; /* "임시 저장된 글 (0)"이 세로로 쌓이지 않게 */
  color: var(--black);
  border: var(--border);
  padding: 8px 12px;
  background: var(--sub);
}

/* [2] 본문(에디터)·글쓰기 폼 글씨가 흰색이라 안 보이는 문제
   근본 원인은 globals.css 상단의 html,body { color: rgba(255,248,240,0.5) }
   (전역 기본 글자색이 반투명 흰색). 이걸 직접 바꾸면 티커 등 흰 글씨에
   의존하는 요소가 깨질 수 있어서, 글쓰기 폼(#bo_w)과 본문보기(#bo_v)
   영역에만 검은색을 지정하는 방식으로 해결.
   ※ 나중에 다른 곳에서 또 흰 글씨 문제가 보이면 같은 방식으로
      해당 영역 셀렉터에 color: var(--black) 를 추가하면 됨 */
#bo_w,
#bo_w input,
#bo_w select,
#bo_w textarea,
#bo_w .wr_content,
#bo_v {
  color: var(--black);
}

/* [3] 취소 / 작성완료 버튼을 한 줄에 반반 크기로 배치 */
#bo_w .btn_confirm {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
#bo_w .btn_confirm .btn_cancel,
#bo_w .btn_confirm .btn_submit {
  flex: 1;
  width: auto;   /* 전역 a { width:100% } 규칙 원복 */
  height: auto;
  box-sizing: border-box;
  padding: 12px;
  text-align: center;
  border: var(--border);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  cursor: pointer;
}
#bo_w .btn_confirm .btn_cancel {
  background: var(--sub);
  color: var(--black);
}
#bo_w .btn_confirm .btn_submit {
  background: var(--black);
  color: var(--sub);
}
/* ↑ 버튼 색은 테마 팔레트 기준으로 넣어둔 것 — 취향대로 조정 가능 */

/* ════════════════════════════════════════════════
   [패치 260716-4] 게시판 창 크기/위치 단일 관리 지점
   common.css 파일 맨 아래(이전 패치들 아래)에 이 블록 전체를 붙여넣으세요.

   - list(목록) 창의 크기/위치를 기준으로 view(본문보기), write(글쓰기)
     창까지 전부 통일합니다.
   - 앞으로 배너 삽입 등으로 창 크기를 조절할 일이 생기면
     ★ 이 블록의 값만 수정하면 list/view/write 가 한꺼번에 바뀝니다 ★
   - 주의: 값을 "수정"하는 건 자유지만 속성 줄 자체를 "삭제"하지는 마세요.
     (삭제하면 위쪽에 흩어져 있는 옛 규칙이 되살아나 목록 창만 따로 놀게 됨)
   - 이전 패치(260716-3)에 있던 #win-write, #win-post 크기 지정은
     이 블록이 대체합니다. (아래 left/max-width 줄이 그 값을 무효화하므로
     지우지 않고 그대로 둬도 됩니다)
════════════════════════════════════════════════ */

/* ── PC : 게시판 계열 창 공통 지오메트리 ──
   기준값 = 기존 목록 페이지 창 (화면 오른쪽에 90% 폭으로 꽉 차는 형태) */
.page-hot #win-hot,
.page-deal #win-deal,
.page-free #win-free,
.page-flex #win-flex,
.page-trade #win-trade,
.tp-page #win-trade,
#win-post,
#win-write {
  width: 90%;
  height: 100%;
  top: 0;
  right: 0;
  left: auto;      /* 이전 패치의 left:50px 무효화 */
  max-width: none; /* 이전 패치의 max-width:1100px 무효화 */
}

/* ── 모바일 : 기존 목록 창의 모바일 규칙과 동일하게 view/write 도 통일 ── */
@media (max-width: 768px) {
  #win-post,
  #win-write {
    top: 0;
    width: 100% !important;
    height: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 38px !important;
  }
}

/* ════════════════════════════════════════════════
   [패치 260716-5] 본문 아래 목록 표시 스타일
   common.css 파일 맨 아래(이전 패치들 아래)에 붙여넣으세요.
   (스킨 수정과 세트 — 본문보기 창 안에 이어지는 목록 영역 꾸밈)
════════════════════════════════════════════════ */

/* 본문/댓글과 목록 사이 구분 영역 */
.ozl-view-list {
  margin-top: 28px;
  border-top: var(--border);
  padding-top: 18px;
}

.ozl-view-list-title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 10px;
}

/* 목록에서 지금 보고 있는 글 강조 */
.post-item.ozl-current-post {
  background: var(--main);
  border-color: var(--black);
}

/* ════════════════════════════════════════════════
   [패치 260716-6] 중고거래 목록 + 태스크바 닉네임 수정
   common.css 파일 맨 아래(이전 패치들 아래)에 붙여넣으세요.
════════════════════════════════════════════════ */

/* [1] 태스크바 닉네임 글씨 안 보임 (전역 반투명 흰색 상속) → 검은색 */
.taskbar-user-info {
  color: var(--black);
}

/* [3] 상품 상태 배지(거의새것/상태양호/사용감있음) 글씨 → 검은색 */
.trade-condition {
  color: var(--black);
}

/* [4] 상품명 글씨 → 검은색 */
.trade-name {
  color: var(--black);
}

/* [2] 중고거래 목록 페이지 그리드: 기본 4열, 창이 좁아지면 2열
   - "화면 크기"가 아니라 "창(win) 크기"에 반응하도록 컨테이너 쿼리 사용.
     창을 드래그로 줄이면 실시간으로 열 수가 바뀜.
   - 메인 화면의 중고거래 미리보기 창(폭이 좁음)은 기존 2열 유지되도록
     목록 페이지(.page-trade)에만 적용.
   - 4열→2열로 바뀌는 기준 폭은 아래 720px 값을 조절하면 됨 */
.page-trade #win-trade .win-body {
  container-type: inline-size; /* 이 창 본문을 크기 기준 컨테이너로 지정 */
}
.page-trade #win-trade .trade-grid {
  grid-template-columns: repeat(4, 1fr);
}
@container (max-width: 720px) {
  .page-trade #win-trade .trade-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ════════════════════════════════════════════════
   [패치 260716-7] 중고거래 목록 개선 + 분류 탭 가로 배치
   common.css 파일 맨 아래(이전 패치들 아래)에 붙여넣으세요.
════════════════════════════════════════════════ */

/* [1] 게시판 설명 색상 보증
   (설명이 아예 비어있는 경우는 관리자 설정 문제 — 답변 본문 참고) */
.board-desc {
  color: #777;
}

/* [2] 분류 탭이 한 줄에 하나씩 세로로 쌓이는 문제
   탭을 <a>로 바꾸면서 전역 a { width:100% } 규칙에 걸려
   각 탭이 가로 전체를 차지하던 것 → 크기 원복해 가로 나열
   (중고거래뿐 아니라 자유게시판 등 모든 게시판 분류 탭 공통 적용) */
a.btab {
  width: auto;
  height: auto;
  color: var(--black);
}

/* [3] 카테고리 배지(판매중/예약중/거래중/거래완료) 상태별 색상
   기존 상태 배지(.trade-condition) 스타일을 그대로 쓰되 색만 카테고리별 지정 */
.trade-condition.ozl-status-selling  { background: #d4f0d4; } /* 판매중 - 연녹 */
.trade-condition.ozl-status-reserved { background: #fdeec9; } /* 예약중 - 연노랑 */
.trade-condition.ozl-status-trading  { background: #d0dcf0; } /* 거래중 - 연파랑 */
.trade-condition.ozl-status-done     { background: #e0e0e0; } /* 거래완료 - 회색 */

/* [4] 거래완료 상품 : 썸네일 흐림+어둡게 처리 & "완료" 워터마크
   ※ filter를 썸네일에 직접 걸면 배지/워터마크까지 같이 흐려지므로,
     반투명 오버레이(::before)를 씌우는 방식 사용.
     backdrop-filter가 오버레이 뒤의 썸네일 이미지만 흐리게 만든다. */
.trade-thumb {
  position: relative; /* 오버레이/워터마크 배치 기준 */
}
.trade-thumb.ozl-thumb-done::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.5);          /* 어둡게 */
  backdrop-filter: blur(2px) grayscale(0.6);  /* 이미지만 흐림+탈색 */
  z-index: 1;
}
.ozl-done-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  border: 3px solid #fff;
  padding: 4px 18px;
  letter-spacing: 0.2em;
  z-index: 2;           /* 오버레이 위에 선명하게 */
  pointer-events: none;
}

/* ════════════════════════════════════════════════
   [패치 260716-8] 전체검색 페이지 스타일
   common.css 파일 맨 아래(이전 패치들 아래)에 붙여넣으세요.
   (skin/search/ozl-search 스킨과 세트)
════════════════════════════════════════════════ */

/* 검색 창 지오메트리 : 게시판 창들과 동일한 단일 기준을 따름 */
#win-search.open {
  width: 90%;
  height: 100%;
  top: 0;
  right: 0;
  left: auto;
  position: absolute;
}
#win-search .win-body {
  max-height: calc(100% - 38px);
  overflow-y: auto;
}

/* 검색 폼 : 흰 배경 띠 대신 테마 배경 그대로, 가운데 정렬 */
.ozl-search-fieldset {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  background: transparent; /* 기존 기본 스킨의 흰색 배경 제거 */
  padding: 8px 0 20px;
  flex-wrap: wrap;
}

/* 검색조건 드롭다운 (제목+내용/제목/내용) */
.ozl-search-select {
  height: 48px;
  border: var(--border);
  background: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  padding: 0 10px;
  color: var(--black);
  outline: none;
}

/* 검색창 : 헤더(태스크바) 검색창과 동일 디자인의 확대판
   (높이 32→48px, 폭 180→최대 520px, 폰트 11→14px) */
.ozl-search-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.ozl-search-input {
  height: 48px;
  border: var(--border);
  border-right: none;
  padding: 0 16px;
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  background: var(--sub);
  color: var(--black);
  width: min(520px, 60vw);
  outline: none;
}
.ozl-search-input:focus {
  background: #fff;
}
.ozl-search-btn {
  height: 48px;
  width: 48px;
  border: var(--border);
  background: var(--black);
  color: var(--sub);
  font-size: 1.3rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ozl-search-btn:hover {
  background: var(--point);
  color: var(--black);
}

/* 검색 결과 요약 */
.ozl-search-summary {
  color: var(--black);
  margin-bottom: 14px;
}
.ozl-search-summary h2 {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.ozl-search-summary ul {
  display: flex;
  gap: 14px;
  list-style: none;
  font-size: 12px;
  color: #777;
}

/* 게시판별 결과 수 탭 */
.ozl-search-boards {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.ozl-search-boards .cnt_cmt {
  margin-left: 5px;
  font-size: 10px;
  color: #777;
}

/* 게시판별 결과 그룹 : 더보기 링크는 제목 오른쪽 끝 */
.ozl-search-board-group {
  margin-bottom: 22px;
}
.ozl-search-board-group .ozl-view-list-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
a.ozl-search-more {
  width: auto;
  height: auto;
  font-size: 11px;
  font-weight: 700;
  color: var(--black);
}
a.ozl-search-more:hover {
  color: #4a7a5a;
  text-decoration: underline;
}

/* 본문 발췌문 */
.ozl-search-excerpt {
  font-size: 12px;
  color: #666;
  margin: 4px 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* 두 줄 초과 시 말줄임 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 페이지네이션 (그누보드 기본 마크업 재스타일) */
.ozl-search-paging {
  text-align: center;
  margin-top: 18px;
}
.ozl-search-paging .pg_page,
.ozl-search-paging .pg_current {
  display: inline-block;
  width: auto;
  height: auto;
  min-width: 32px;
  padding: 6px 10px;
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  margin: 0 2px;
}
.ozl-search-paging .pg_current {
  background: var(--black);
  color: var(--sub);
}

/* ════════════════════════════════════════════════
   [패치 260720-9] 회원가입/정보수정 화면 스타일
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
   (skin/member/ozl-member 스킨과 세트)

   ★ 추가 작업 1가지: 창 크기 통일 블록([패치 260716-4])의 셀렉터 목록
     맨 끝(#win-write 다음)에 아래 한 줄을 추가하세요:
       ,
       #win-register
     → 회원가입 창도 게시판 창들과 같은 크기/위치를 따르게 됩니다.
════════════════════════════════════════════════ */

/* 창 본문 스크롤 (약관/입력폼이 길어도 버튼까지 스크롤 도달 가능) */
#win-register .win-body {
  max-height: calc(100% - 38px);
  overflow-y: auto;
}

/* 회원 화면 전체 기본 글자색 (전역 반투명 흰색 문제 해결) */
.ozl-member-body {
  color: var(--black);
}
.ozl-member-body h2 {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  margin: 22px 0 8px;
}

/* 안내 문구 (약관 동의 안내) */
.ozl-member-body .register > p:first-of-type {
  background: var(--main);
  border: var(--border);
  padding: 10px 14px;
  font-size: 12px;
  margin-bottom: 14px;
}

/* 약관 본문 textarea */
.ozl-member-body #fregister_term textarea,
.ozl-member-body .register textarea {
  width: 100%;
  height: 160px;
  box-sizing: border-box;
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  padding: 12px;
  font-family: inherit;
  font-size: 12px;
  line-height: 1.6;
  resize: vertical;
}

/* 개인정보 수집 표 */
.ozl-member-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin: 8px 0;
}
.ozl-member-body th,
.ozl-member-body td {
  border: 1px solid #bbb;
  background: var(--sub);
  padding: 8px 10px;
  color: var(--black);
  text-align: left;
}
.ozl-member-body thead th {
  background: var(--main);
  font-weight: 700;
  text-align: center;
}

/* 동의 체크박스 줄 */
.ozl-member-body .fregister_agree {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 10px 0;
}
.ozl-member-body .fregister_agree input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--black); /* 체크 시 테마 톤 */
}
.ozl-member-body #fregister_chkall {
  border-top: var(--border);
  margin-top: 16px;
  padding-top: 14px;
  font-weight: 700;
}

/* 입력폼 공통 (아이디/비밀번호/닉네임/이메일 등) */
.ozl-member-body input[type="text"],
.ozl-member-body input[type="password"],
.ozl-member-body input[type="email"],
.ozl-member-body input[type="tel"],
.ozl-member-body select,
.ozl-member-body .frm_input {
  height: 40px;
  box-sizing: border-box;
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  padding: 0 10px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  max-width: 100%;
}
.ozl-member-body input:focus,
.ozl-member-body select:focus {
  background: #fff;
  outline: none;
}

/* 중복확인 등 인라인 버튼 */
.ozl-member-body .btn_frmline {
  height: 40px;
  border: var(--border);
  background: var(--black);
  color: var(--sub);
  padding: 0 14px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}
.ozl-member-body .btn_frmline:hover {
  background: var(--point);
  color: var(--black);
}

/* 취소 / 회원가입 버튼 : 한 줄 반반 (글쓰기 창과 동일 규칙) */
.ozl-member-body .btn_confirm {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.ozl-member-body .btn_confirm .btn_close,
.ozl-member-body .btn_confirm .btn_submit {
  flex: 1;
  width: auto;   /* 전역 a { width:100% } 원복 */
  height: auto;
  box-sizing: border-box;
  padding: 13px;
  text-align: center;
  border: var(--border);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.ozl-member-body .btn_confirm .btn_close {
  background: var(--sub);
  color: var(--black);
}
.ozl-member-body .btn_confirm .btn_submit {
  background: var(--black);
  color: var(--sub);
}
.ozl-member-body .btn_confirm .btn_submit:hover {
  background: var(--point);
  color: var(--black);
}

/* 가입완료 화면 */
.ozl-member-body .reg_result_p {
  text-align: center;
  font-size: 1.05rem;
  margin: 24px 0;
}
.ozl-member-body .result_txt {
  font-size: 12px;
  color: #555;
  margin: 10px 0;
  line-height: 1.7;
}
.ozl-member-body #result_email {
  border: var(--border);
  background: var(--sub);
  padding: 12px 16px;
  margin: 12px 0;
  font-size: 13px;
}
.btn_confirm_reg {
  text-align: center;
  margin-top: 16px;
}
a.reg_btn_submit {
  display: inline-block;
  width: auto;
  height: auto;
  border: var(--border);
  background: var(--black);
  color: var(--sub);
  padding: 12px 40px;
  font-family: 'Space Mono', monospace;
  font-weight: 700;
}

/* ════════════════════════════════════════════════
   [패치 260720-10] 회원가입 창 크기 고정
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.

   회원가입 창(#win-register)에 크기 지정이 없어 내용만큼 늘어나며
   화면(100vh)을 넘어 푸터 아래로 들어가던 문제.
   → 게시판 창들과 동일한 지오메트리로 고정하고 내용은 창 안에서 스크롤.
   ※ 지난 패치9 안내의 "패치4 블록에 #win-register 수동 추가"는
     이 블록이 대신하므로 하지 않아도 됩니다. (이미 했더라도 충돌 없음)
════════════════════════════════════════════════ */
#win-register {
  width: 90%;
  height: 100%;
  top: 0;
  right: 0;
  left: auto;
  max-width: none;
}

/* ════════════════════════════════════════════════
   [패치 260720-11] 260720 수정 요청사항 일괄 반영
   theme/ozl/css/common.css 맨 아래(이전 패치들 아래)에 붙여넣으세요.

   포함 내용:
   ① 창 지오메트리 : 최대 1046px + 오른쪽 배너(250px) 공간 포함 화면 중앙
   ② VIEW 시안 스타일 (분류 배지, 수정/삭제, 액션바, 본문 배너 자리)
   ③ 댓글 스타일 (익명 닉네임, 원글 작성자 강조, 이미지 첨부 UI)
   ④ 갤러리: 썸네일 꽉 채움 + 창 크기 반응 2열 전환
   ⑤ 제목 옆 미디어 아이콘
   ⑥ 회원 화면 (도움말 문구 축소)
   ⑦ 모바일 1차 (푸터 가로, 스크롤 활성화, 창 dots 표시, 카테고리 색)
   ⑧ 글쓰기 테마톤
════════════════════════════════════════════════ */

/* ── ① 창 지오메트리 : 배너 공간 포함 중앙 정렬 ──────────────────
   [창 W = 최대 1046px] + [간격 50px] + [배너 250px] 그룹 전체가 화면 중앙.
   브라우저가 좁아지면 창(W)만 줄어들고 배너 폭은 유지된다.
   ★ 창 최대폭/배너폭을 바꾸려면 아래 두 변수만 수정하면 전체에 반영됨 */
:root {
  --ozl-win-max: 1046px;  /* 게시판 계열 창 최대 가로 */
  --ozl-banner-w: 300px;  /* 사이드 배너 가로 (배너2 규격 300x600) */
  --ozl-banner-gap: 50px; /* 창-배너 사이 간격 */
}

.page-hot #win-hot,
.page-deal #win-deal,
.page-free #win-free,
.page-flex #win-flex,
.page-trade #win-trade,
.tp-page #win-trade,
#win-post,
#win-write,
#win-register,
#win-new,
#win-search.open {
  /* 사용 가능 폭 = 100% - (배너 250 + 간격 50 + 양쪽 숨쉴 여백 40) */
  width: min(var(--ozl-win-max), calc(100% - var(--ozl-banner-w) - var(--ozl-banner-gap) - 40px));
  max-width: none;
  height: 100%;
  top: 0;
  /* 창+간격+배너 그룹의 왼쪽 시작점 = 화면중앙 - 그룹전체폭/2 */
  left: calc(50% - (min(var(--ozl-win-max), calc(100% - var(--ozl-banner-w) - var(--ozl-banner-gap) - 40px)) + var(--ozl-banner-gap) + var(--ozl-banner-w)) / 2);
  right: auto;
}

/* 사이드 배너 : 창 오른쪽 250px 자리.
   실제 배너 이미지 준비되면 .ozl-side-banner-ph 대신 <img> 로 교체 */
.ozl-side-banner {
  display: block;
  position: fixed;
  top: 130px;
  left: calc(50% + (min(var(--ozl-win-max), calc(100vw - var(--ozl-banner-w) - var(--ozl-banner-gap) - 40px)) + var(--ozl-banner-gap) + var(--ozl-banner-w)) / 2 - var(--ozl-banner-w));
  width: var(--ozl-banner-w);
  max-height: calc(100vh - 220px);
  overflow: hidden;
  z-index: 90;
}
.ozl-side-banner img {
  width: 100%;
  display: block;
  border: var(--border);
  margin-bottom: 10px;
}
/* 사이드 배너 임시 플레이스홀더 (실제 이미지 준비 전) : 모바일 배너 플레이스홀더와 같은 톤 */
.ozl-side-banner-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 600px;
  background: #d8dcd6;
  color: #8a938a;
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
  border: var(--border);
  box-sizing: border-box;
}

/* ── ② VIEW 시안 스타일 ─────────────────────────────────────── */

/* 분류 배지 : 고정폭 제거, 글자수에 맞게 (2글자 이상 카테고리 대응) */
#bo_v .bo_v_cate,
#bo_v_atc .bo_v_cate,
.bo_v_cate {
  display: inline-block;
  width: auto;
  min-width: 0;
  padding: 4px 10px;
  border: var(--border);
  background: var(--main);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

/* 본문 우상단 수정/삭제 (작성자에게만 서버에서 출력됨 — 위치/모양만 정의) */
.ozl-post-actions {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  gap: 10px;
}
.ozl-post-actions a {
  width: auto;
  height: auto;
  font-size: 11px;
  color: #777;
}
.ozl-post-actions a:hover {
  color: var(--black);
  text-decoration: underline;
}

/* 본문 아래 배너 자리 : 배너 준비 전까지 숨김 (켤 때 display:flex 로) */
.ozl-content-banner {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  margin: 22px 0;
  background: #e4e4e0;
  color: #999;
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* 액션바 : 리스트/주소복사/스크랩 (좌) — 신고/공유 (우) */
.ozl-view-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px 4px;
  margin: 18px 0;
  font-size: 12px;
}
.ozl-view-actions .ozl-va-right {
  margin-left: auto;
  display: flex;
  gap: 16px;
}
.ozl-view-actions a,
.ozl-view-actions button {
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: var(--black);
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}
.ozl-view-actions a:hover,
.ozl-view-actions button:hover {
  color: #4a7a5a;
  text-decoration: underline;
}

/* 댓글 쓰기 헤더 링크 (누르면 입력영역으로 스크롤) */
a.ozl-cmt-write-link {
  width: auto;
  height: auto;
  display: inline-block;
  font-weight: 900;
  color: var(--black);
  margin: 8px 0;
  cursor: pointer;
}
a.ozl-cmt-write-link:hover {
  color: #4a7a5a;
  text-decoration: underline;
}

/* ── ③ 댓글 스타일 ──────────────────────────────────────────── */

/* 댓글 닉네임 (오지라퍼N) */
.ozl-cmt-name {
  font-weight: 900;
  color: var(--black);
  font-size: 13px;
}
/* 원글 작성자 댓글 : 닉네임 + 배경으로 구분 */
.ozl-cmt-name.ozl-cmt-author {
  color: #2e6e4e;
}
.ozl-cmt-name.ozl-cmt-author em {
  font-style: normal;
  font-size: 10px;
  background: #2e6e4e;
  color: #fff;
  padding: 2px 6px;
  margin-left: 4px;
  border-radius: 2px;
}
#bo_vc article.ozl-author-comment {
  background: #eef5ef;
  border-left: 4px solid #2e6e4e;
}

/* 본인 댓글의 수정/삭제 링크 (서버가 본인에게만 출력 — 모양만 정의) */
#bo_vc .bo_vc_act a,
#bo_vc .bo_vl a {
  width: auto;
  height: auto;
  color: #999;
  font-size: 11px;
}
#bo_vc .bo_vc_act a:hover,
#bo_vc .bo_vl a:hover {
  color: var(--black);
  text-decoration: underline;
}

/* 댓글 이미지 첨부 UI */
.ozl-cmt-attach {
  margin: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ozl-cmt-attach-btn {
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  font-size: 11px;
  padding: 6px 10px;
  cursor: pointer;
}
.ozl-cmt-attach-btn:hover {
  background: var(--point);
}
.ozl-cmt-attach-status {
  font-size: 11px;
  color: #777;
}
/* 댓글 본문 속 이미지 (URL→이미지 렌더링 결과) */
#bo_vc .ozl-cmt-img {
  max-width: min(420px, 100%);
  display: block;
  margin: 8px 0;
  border: 1px solid #ddd;
}

/* ── ④ 갤러리 : 썸네일 꽉 채움 + 창 크기 반응형 ─────────────── */
/* 여백이 생겼던 원인: 코어 썸네일이 비율 유지 축소본을 만들 때가 있고,
   카드 상자의 세로 비율이 제각각이라 contain처럼 보이는 경우가 있었음.
   → 카드 이미지 영역을 정사각(aspect-ratio 1/1)으로 고정하고 cover로 채움.
   (스킨은 원본 이미지 우선 사용으로 이미 변경됨) */
.insta-thumb {
  aspect-ratio: 1 / 1;
  height: auto;
  background-size: cover;
  background-position: center;
}
/* 창 폭에 반응해 2열 전환 (중고게시판과 동일 패턴, 720px 기준) */
.page-flex #win-flex .win-body,
#win-post .win-body {
  container-type: inline-size;
}
@container (max-width: 720px) {
  .insta-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .trade-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── ⑤ 제목 옆 미디어 아이콘 ────────────────────────────────── */
.ozl-mi {
  font-size: 11px;
  margin-left: 4px;
  opacity: 0.85;
  vertical-align: 1px;
}

/* ── ⑥ 회원 화면 : 도움말 문구 축소 ─────────────────────────── */
/* register_form 의 입력 도움말 (예: "영문자, 숫자, _ 만 입력 가능") */
.ozl-member-body .frm_info,
.ozl-member-body .tooltip {
  font-size: 10.5px;
  color: #8a9a8a;
  font-weight: 400;
}

/* ── ⑦ 모바일 1차 ───────────────────────────────────────────── */
@media (max-width: 768px) {
  /* 스크롤 활성화 : 화면 고정 해제, 문서 흐름으로 전환 */
  html, body {
    overflow: auto !important;
    height: auto !important;
  }
  #body {
    height: auto !important;
    overflow: visible !important;
  }
  .desktop {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }
  /* 헤더/푸터 고정 해제 — 푸터는 스크롤 끝에서 보임 */
  .ozl-header,
  .ozl-footer {
    position: static !important;
  }
  /* 창을 문서 흐름에 배치 (겹침/잘림 방지, 순서대로 세로 나열) */
  .win.open {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 0 14px !important;
    transform: none !important;
  }
  .win .win-body {
    max-height: none !important;
    overflow: visible !important;
  }
  /* 창 상단 dots(빨강/노랑/초록) 표시 */
  .win-header .dots {
    display: flex !important;
  }
  /* 푸터 링크 : 세로 쌓임 → 가로 나열 (2~3줄 내) */
  .ozl-footer .footer-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 4px 14px !important;
    justify-content: center;
  }
  .ozl-footer .footer-links .flink {
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
  }
  /* 비선택 카테고리가 파란색(브라우저 기본 링크색)으로 보이던 문제 */
  a.btab,
  a.hbtab {
    color: var(--black) !important;
  }
  a.btab.active,
  a.hbtab.active {
    color: var(--sub) !important;
  }
  /* 모바일에서 사이드 배너 숨김 유지 (공간 없음) */
  .ozl-side-banner {
    display: none !important;
  }
}

/* ── ⑧ 글쓰기 테마톤 ────────────────────────────────────────── */
#bo_w {
  color: var(--black);
}
#bo_w .write_div {
  margin: 14px 0;
}
#bo_w label {
  font-weight: 700;
  font-size: 12px;
  display: block;
  margin-bottom: 6px;
}
#bo_w .frm_input,
#bo_w select,
#bo_w input[type="text"],
#bo_w input[type="number"] {
  height: 42px;
  box-sizing: border-box;
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  padding: 0 12px;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
}
#bo_w .frm_input:focus,
#bo_w select:focus {
  background: #fff;
  outline: none;
}
#bo_w #wr_subject {
  width: 100%;
  font-size: 14px;
  font-weight: 700;
}
#bo_w .bo_w_flb .frm_file,
#bo_w input[type="file"] {
  font-size: 11px;
  padding: 8px;
  border: 1px dashed #aaa;
  background: var(--sub);
  width: 100%;
  box-sizing: border-box;
}
#bo_w .chk_box label,
#bo_w .bo_w_link label {
  display: inline-block;
  font-weight: 400;
}

/* ════════════════════════════════════════════════
   [패치 260721-12] VIEW 페이지 시안 반영 + 글씨 크기 통일
   theme/ozl/css/common.css 맨 아래(이전 패치들 아래)에 붙여넣으세요.
   (view.skin.php / view_comment.skin.php 재작업본과 세트)
════════════════════════════════════════════════ */

/* ── 글씨 크기 통일 ──────────────────────────────────────────
   핵심(제목/작성자/본문/댓글/댓글작성자) = 12px
   안내(수정·공유·스크랩·조회수·댓글쓰기 등) = 10px */

/* 본문 영역 전체 기본 12px */
#bo_v,
#bo_v_con,
#bo_v_con * {
  font-size: 12px;
  line-height: 1.7;
  color: var(--black);
}

/* ── ① 상단: 분류 배지 + 제목 + 작성일 (한 줄, 세로 가운데 정렬) ── */
.ozl-v-head {
  display: flex;
  align-items: center;      /* view1 #1: 분류와 제목 세로 정렬 맞춤 */
  gap: 8px;
  flex-wrap: wrap;
  padding: 4px 0 10px;
  border: none;
}
.ozl-v-titlerow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  flex: 1;
  min-width: 0;
}
#bo_v .bo_v_cate {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-width: 0;
  padding: 3px 9px;
  border: var(--border);
  background: var(--main);
  color: var(--black);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.4;
}
#bo_v .bo_v_tit {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}
.ozl-v-date {
  font-size: 10px;          /* 안내 = 10px */
  color: #999;
  white-space: nowrap;
  margin-left: auto;
}

/* ── ② 작성자 (좌) / 조회수·댓글수 (우) ── */
.ozl-v-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 16px;
}
.ozl-v-writer {
  font-size: 12px;
  font-weight: 700;
  color: var(--black);
}
.ozl-v-writer .ozl-anon-name { color: var(--black); }
.ozl-v-writer .ozl-v-ip { font-size: 10px; color: #aaa; font-weight: 400; }
.ozl-v-stat {
  display: flex;
  gap: 12px;
  font-size: 10px;          /* 조회수/댓글수 = 안내 10px */
  color: #888;
}
.ozl-v-stat i { margin-right: 2px; }

/* ── 본문 영역 ── */
#bo_v_atc {
  position: relative;       /* 우상단 수정/삭제 기준 */
  border: none;
  padding: 0;
}
#bo_v_atc_title { display: none; } /* "본문" 라벨 숨김 */
#bo_v_con {
  min-height: 120px;
  padding: 6px 0 20px;
}
#bo_v_con img { max-width: 100%; height: auto; cursor: zoom-in; }

/* 본문 우상단 수정/삭제 (안내성 = 10px) */
.ozl-post-actions {
  position: absolute;
  top: -2px;
  right: 0;
  display: flex;
  gap: 10px;
}
.ozl-post-actions a {
  width: auto;
  height: auto;
  font-size: 10px;
  color: #999;
}
.ozl-post-actions a:hover { color: var(--black); text-decoration: underline; }

/* 첨부 이미지 묶음 */
#bo_v_img { margin-bottom: 12px; }
#bo_v_img img { max-width: 100%; height: auto; cursor: zoom-in; }

/* 서명 */
.ozl-v-signature { font-size: 11px; color: #888; margin-top: 12px; }

/* ── 본문 하단 배너 자리 (준비 전 숨김) ── */
.ozl-content-banner {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  margin: 20px 0;
  background: #e4e4e0;
  color: #999;
  font-size: 10px;
  letter-spacing: 0.1em;
}

/* ── 액션바 : 리스트·추천·주소복사·스크랩 | 신고·공유 ── */
.ozl-view-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 9px 2px;
  margin: 16px 0;
}
.ozl-view-actions .ozl-va-left,
.ozl-view-actions .ozl-va-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ozl-view-actions .ozl-va-right { margin-left: auto; }
.ozl-va-btn {
  width: auto;
  height: auto;
  background: none;
  border: none;
  color: var(--black);
  font-size: 10px;          /* 안내 = 10px */
  font-family: inherit;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}
.ozl-va-btn:hover { color: #4a7a5a; text-decoration: underline; }
.ozl-va-good strong { color: #4a7a5a; margin-left: 2px; }

/* ── 이전글/다음글 네비 ── */
.bo_v_nb {
  list-style: none;
  border: 1px solid #e0e0e0;
  margin: 16px 0;
  padding: 0;
}
.bo_v_nb li {
  padding: 8px 12px;
  font-size: 11px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  gap: 10px;
}
.bo_v_nb li:last-child { border-bottom: none; }
.bo_v_nb .nb_tit { color: #888; white-space: nowrap; }
.bo_v_nb a { width: auto; height: auto; color: var(--black); flex: 1; }
.bo_v_nb .nb_date { color: #aaa; margin-left: auto; }

/* ── 첨부파일/관련링크 섹션 ── */
#bo_v_file, #bo_v_link {
  border: 1px solid #e0e0e0;
  padding: 10px 14px;
  margin: 12px 0;
  font-size: 11px;
}
#bo_v_file h2, #bo_v_link h2 { font-size: 11px; font-weight: 700; margin-bottom: 6px; }
#bo_v_file ul, #bo_v_link ul { list-style: none; }
#bo_v_file a, #bo_v_link a { width: auto; height: auto; color: var(--black); }
.bo_v_file_cnt, .bo_v_link_cnt { font-size: 10px; color: #aaa; }

/* ════════════════════════════════════════════════
   댓글 영역 (view2 시안)
════════════════════════════════════════════════ */

/* 댓글 개수 버튼 (네모 말풍선 느낌) */
.cmt_btn {
  width: auto;
  height: auto;
  background: none;
  border: none;
  padding: 6px 0;
  cursor: default;
}
.cmt_btn .total { font-size: 12px; font-weight: 700; color: var(--black); }
.cmt_btn .total b { font-weight: 700; }

/* 댓글쓰기 헤더 링크 (view2 #2: 댓글 개수 오른쪽 끝으로) — 안내 10px */
a.ozl-cmt-write-link {
  width: auto;
  height: auto;
  display: inline-block;
  font-size: 10px;
  color: #777;
  cursor: pointer;
}
a.ozl-cmt-write-link:hover { color: var(--black); text-decoration: underline; }

/* 댓글 목록 */
#bo_vc { border: none; padding: 0; }
#bo_vc article {
  border-top: 1px solid #eee;
  padding: 12px 4px;
  margin: 0;
  position: relative;
}
#bo_vc article.ozl-author-comment {
  background: #eef5ef;
  border-left: 4px solid #2e6e4e;
  padding-left: 12px;
}
#bo_vc .cm_wrap { width: 100%; }
#bo_vc header { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 6px; }

/* 댓글 작성자명 = 핵심 12px */
.ozl-cmt-name { font-weight: 900; color: var(--black); font-size: 12px; }
.ozl-cmt-name.ozl-cmt-author { color: #2e6e4e; }
.ozl-cmt-name.ozl-cmt-author em {
  font-style: normal; font-size: 9px; background: #2e6e4e; color: #fff;
  padding: 2px 5px; margin-left: 4px; border-radius: 2px;
}
/* 댓글 날짜 = 안내 10px */
.bo_vc_hdinfo { font-size: 10px; color: #aaa; }
/* 댓글 본문 = 핵심 12px */
#bo_vc .cmt_contents { font-size: 12px; color: var(--black); line-height: 1.7; }
#bo_vc .cmt_contents p { word-break: break-all; }
#bo_vc .ozl-cmt-img { max-width: min(360px, 100%); display: block; margin: 8px 0; border: 1px solid #eee; }

/* 댓글 수정/삭제/답변 등 액션 = 안내 10px */
#bo_vc .bo_vc_act a, #bo_vc .bo_vc_act button {
  width: auto; height: auto; background: none; border: none;
  font-size: 10px; color: #aaa; cursor: pointer;
}
#bo_vc .bo_vc_act a:hover, #bo_vc .bo_vc_act button:hover { color: var(--black); }

/* ── 댓글 쓰기 폼 (view2 #5, #6) ── */
#bo_vc_w { border: none; padding: 16px 0 0; margin-top: 10px; }
#bo_vc_w h2 { font-size: 12px; font-weight: 700; margin-bottom: 8px; color: var(--black); }
/* view2 #5: 입력칸 가로 100%로 길게 */
#fviewcomment textarea#wr_content {
  width: 100%;
  box-sizing: border-box;
  min-height: 90px;
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 12px;
  resize: vertical;
}
#fviewcomment textarea#wr_content:focus { background: #fff; outline: none; }
/* view2 #5: 이미지 첨부 외곽선 더 연하고 가늘게 */
.ozl-cmt-attach { margin: 8px 0; display: flex; align-items: center; gap: 10px; }
.ozl-cmt-attach-btn {
  border: 1px solid #ccc;
  background: var(--sub);
  color: #555;
  font-size: 10px;
  padding: 5px 10px;
  cursor: pointer;
}
.ozl-cmt-attach-btn:hover { border-color: var(--black); color: var(--black); }
.ozl-cmt-attach-status { font-size: 10px; color: #999; }

/* 폼 하단 : 비밀글 체크 + 등록 버튼 한 줄 */
#fviewcomment .btn_confirm {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}
#fviewcomment .secret_cm { font-size: 10px; color: #777; }
/* view2 #6: 댓글등록 버튼 = 카테고리 버튼(btab) 디자인으로 통일 */
#fviewcomment #btn_submit {
  width: auto;
  height: auto;
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 20px;
  cursor: pointer;
}
#fviewcomment #btn_submit:hover { background: var(--point); }

/* ── default-avatar 404 방지 ──
   프로필 이미지를 제거했지만, 혹시 남은 곳의 깨진 이미지 아이콘을 숨김 */
img[src$="default-avatar.png"] { visibility: hidden; }



/* ════════════════════════════════════════════════
   [패치 260721-13] free 리스트 + hot + index 화면 묶음
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
   (list.skin.php 재작업본과 세트)
════════════════════════════════════════════════ */

/* ── [free #1] 게시판 창 상단 50px 여백 / 하단은 푸터 위까지 ──
   기존 창 지오메트리(패치11)는 top:0 이었음. 헤더 아래로 50px 띄운다.
   ※ 패치11의 창 지오메트리 블록보다 뒤에 있어야 적용됨(맨 아래 붙이면 OK) */
.page-hot #win-hot,
.page-deal #win-deal,
.page-free #win-free,
.page-flex #win-flex,
.page-trade #win-trade,
.tp-page #win-trade,
#win-post,
#win-write,
#win-register,
#win-new,
#win-search.open {
  top: 50px;
  height: calc(100% - 50px);   /* 하단은 기존처럼 영역 끝(푸터 위)까지 */
}

/* ── [free #2] 분류 탭(좌) + 글쓰기 버튼(우) 한 줄 ── */
.ozl-tabs-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0 14px;
}
.ozl-tabs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1;
  min-width: 0;
}
.ozl-tabs-row-nocat { justify-content: flex-end; }
/* 상단 글쓰기 버튼 : 분류 탭과 톤 맞춘 작은 버튼 */
a.ozl-top-write {
  width: auto;
  height: auto;
  flex-shrink: 0;
  display: inline-block;
  border: var(--border);
  background: var(--black);
  color: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 7px 14px;
  white-space: nowrap;
  cursor: pointer;
}
a.ozl-top-write:hover { background: var(--point); color: var(--black); }

/* ── [free #3] 댓글 개수 : 네모 말풍선 아이콘 안 작은 숫자 ── */
.ozl-cmt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 15px;
  padding: 0 4px;
  margin-left: 5px;
  border: 1px solid #4a7a5a;
  border-radius: 3px;
  background: #eef5ef;
  color: #4a7a5a;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  vertical-align: 1px;
  position: relative;
}
/* 말풍선 꼬리 (네모 아래 작은 삼각형) */
.ozl-cmt-badge::after {
  content: '';
  position: absolute;
  left: 5px;
  bottom: -4px;
  width: 0; height: 0;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid #4a7a5a;
}

/* ── [free #5] 페이지네이션 : 스크롤 안(정적 배치) + 검정 색 ── */
.ozl-pagination {
  position: static;      /* 창 하단 고정 해제 → 목록 끝에서 스크롤로 노출 */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 20px 0 10px;
  background: none;
}
.ozl-pg-num,
.ozl-pg-arrow {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 6px 9px;
  border: var(--border);
  background: var(--sub);
  color: var(--black);       /* free #5: 숫자·화살표 검정 */
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  text-decoration: none;
}
.ozl-pg-num.active {
  background: var(--black);
  color: var(--sub);
}
.ozl-pg-arrow.disabled {
  color: #ccc;
  cursor: default;
  pointer-events: none;
}
.ozl-pg-dots { padding: 0 4px; color: #999; }

/* ── [hot.php] 창 세로 크기 : 브라우저 높이에 맞춰 스크롤 ── */
#win-hot .win-body {
  max-height: calc(100% - 38px);   /* 38px = 창 헤더 높이 */
  overflow-y: auto;
}

/* ── [hot.php #1] 탭 영역 : 배경색 제거 + 글씨색 지정 ── */
.hot-board-tabs {
  background: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 16px;
}
a.hbtab,
.hbtab {
  width: auto;
  height: auto;
  border: var(--border);
  background: var(--sub);
  color: var(--black);       /* 글씨색 */
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 16px;
  cursor: pointer;
  text-decoration: none;
}
a.hbtab.active,
.hbtab.active {
  background: var(--black);
  color: var(--sub);
}

/* ── [index #1] taskbar-user-info 클릭해 뜨는 프로필 창 글씨 ── */
#win-profile,
#win-profile .profile-nick,
#win-profile .pstat-n,
#win-profile .pstat-l,
#win-profile .pmenu-item {
  color: var(--black);
}
#win-profile .profile-badge { color: #4a7a5a; }
#win-profile .pmenu-logout { color: #c0392b; }

/* ── [index #2] hot.php 썸네일 cover ── */
.hot-thumb-img,
#hotThumbImg {
  object-fit: cover;
  background-size: cover;
  background-position: center;
}


/* ════════════════════════════════════════════════
   [패치 260721-14] write 화면 + 전역 포커스 외곽선
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
════════════════════════════════════════════════ */

/* ── [write #4] 전역: 선택/포커스 시 파란 외곽선 → 사이트 컬러로 ──
   브라우저 기본 focus 아웃라인(파란색)이 사이트 톤과 안 맞는 문제.
   input/select/textarea/버튼/에디터 영역 등 포커스 시 테마 색 외곽선으로 통일. */
input:focus,
select:focus,
textarea:focus,
button:focus,
a:focus,
[contenteditable]:focus,
.frm_input:focus,
[tabindex]:focus {
  outline: 2px solid var(--point) !important;
  outline-offset: 1px;
}
/* 드롭다운/셀렉트가 열렸을 때 파란 테두리도 정리 */
select:focus-visible { outline-color: var(--point) !important; }

/* ── [write #5] 취소/작성완료 버튼 크기 축소 + 12px ── */
#bo_w .btn_confirm {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
#bo_w .btn_confirm .btn_cancel,
#bo_w .btn_confirm .btn_submit {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  box-sizing: border-box;
  padding: 9px 22px;          /* 기존보다 작게 */
  font-size: 12px;            /* write #5: 12px */
  font-weight: 700;
  font-family: 'Space Mono', monospace;
  border: var(--border);
  text-align: center;
  cursor: pointer;
  line-height: 1.2;
}
#bo_w .btn_confirm .btn_cancel {
  background: var(--sub);
  color: var(--black);
  flex: 1;                    /* 취소는 남는 폭 채움 */
}
#bo_w .btn_confirm .btn_submit {
  background: var(--black);
  color: var(--sub);
  flex: 1;
}
#bo_w .btn_confirm .btn_submit:hover { background: var(--point); color: var(--black); }

/* 링크 입력칸 (deal에서만 노출됨) 라벨 정리 */
#bo_w .bo_w_link label { display: inline-block; margin-bottom: 4px; font-size: 12px; }


/* ════════════════════════════════════════════════
   [패치 260721-15] 회원정보수정 잠금 필드 + 프로필 아바타
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
════════════════════════════════════════════════ */

/* 정보수정 시 아이디/이름 : 입력창 대신 잠긴 값 표시 (박스 없이 구분) */
.ozl-locked-field {
  padding: 8px 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ozl-locked-field .ozl-lock {
  font-size: 10px;
  font-weight: 400;
  color: #999;
  background: #f0f0f0;
  border: 1px solid #ddd;
  padding: 2px 7px;
  border-radius: 3px;
}

/* 프로필/헤더 아바타 : 회원 이미지 없을 때 이니셜 가운데 표시 */
.profile-avatar,
.taskbar-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--black);
  background-color: var(--main);
  overflow: hidden;
}


/* ════════════════════════════════════════════════
   [패치 260721-16] 비회원 댓글 지연 안내 문구
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
════════════════════════════════════════════════ */
.ozl-cmt-locked {
  font-size: 12px;
  color: #999;
  background: #f7f7f5;
  border: 1px dashed #ccc;
  padding: 10px 12px;
  border-radius: 4px;
}
.ozl-cmt-locked a {
  width: auto;
  height: auto;
  color: #4a7a5a;
  font-weight: 700;
  text-decoration: underline;
}


/* ════════════════════════════════════════════════
   [패치 260722-17] 260722 요청 중 CSS 처리분 일괄
   theme/ozl/css/common.css 맨 아래(이전 패치들 아래)에 붙여넣으세요.
════════════════════════════════════════════════ */

/* ── [공통] 본문 복사 허용 ──
   기존에 전역으로 user-select:none 이 걸려 본문을 긁을 수 없었음.
   본문/댓글 영역만 텍스트 선택을 허용한다. */
#bo_v_con,
#bo_v_con *,
#bo_vc .cmt_contents,
#bo_vc .cmt_contents * {
  -webkit-user-select: text !important;
  user-select: text !important;
}

/* ── [index 1-1] 선택 시 무조건 생기던 연두색 외곽선 제거 ──
   지난 패치14가 a:focus, [tabindex]:focus 등 너무 광범위하게 잡아서
   로고·모든 링크·클릭 요소에 민트 외곽선이 덧대어졌음.
   → 그 규칙을 무력화하고, "입력 계열"에만 민트 외곽선을 준다. */
a:focus,
button:focus,
[tabindex]:focus,
[contenteditable]:focus,
.win:focus,
.win *:focus {
  outline: none !important;
}
/* 입력 계열: 브라우저 기본 파란 외곽선 대신 민트 (이것만 유지) */
input:focus,
select:focus,
textarea:focus,
.frm_input:focus,
.ozl-search-modal-input:focus,
.ozl-search-modal-sel:focus {
  outline: 2px solid var(--point) !important;
  outline-offset: 0;
}

/* ── [list #1] 게시판 창 상단 여백 28px, 하단도 동일 여백(28px)로 통일
   → 세로 크기 = 연두색 영역(.desktop) - 상 28px - 하 28px = 총 56px 축소.
   기존엔 하단 여백이 0이라 창이 푸터 바로 위까지(또는 겹쳐) 내려갔음. ── */
.page-hot #win-hot,
.page-deal #win-deal,
.page-free #win-free,
.page-flex #win-flex,
.page-trade #win-trade,
.tp-page #win-trade,
#win-post,
#win-write,
#win-register,
#win-new,
#win-search.open {
  top: 28px;
  height: calc(100% - 56px);
}

/* ── [list #2] 한 줄 목록 레이아웃 ──
   좌: 카테고리·제목·댓글배지 / 우: 추천·조회·시간. 작성자명 없음(익명이라 불필요) */
.post-item.ozl-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: var(--black);
}
.post-item.ozl-row:hover { background: #f7f9f7; }
.ozl-row-main {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.ozl-row-title {
  font-size: 13px;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.ozl-row-stat {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  font-size: 11px;
  color: #999;
}
.ozl-row-stat span { white-space: nowrap; }

/* [list #2-2] 댓글 말풍선 배지 (기본 리스트에도 표시) — 강조색 */
.ozl-cmt-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 16px;
  padding: 0 5px;
  border-radius: 8px;
  background: #e74c3c;   /* 강조색(빨강) */
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* ── [list #3,4,5,6] 페이지네이션 바 : 검색(좌)·번호(중앙)·글쓰기(우) ── */
.ozl-pgbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 10px;
  padding: 0 4px;
}
.ozl-pg-center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.ozl-pgbar-search {
  flex-shrink: 0;
  width: 36px; height: 34px;
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  font-size: 15px;
  cursor: pointer;
}
.ozl-pgbar-search:hover { background: var(--point); }
.ozl-pgbar-write {
  flex-shrink: 0;
  width: auto; height: auto;
  border: var(--border);
  background: var(--black);
  color: var(--sub);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  padding: 9px 14px;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.ozl-pgbar-write:hover { background: var(--point); color: var(--black); }
/* [list #6] 페이지 숫자에도 마우스오버 효과 */
.ozl-pg-num:hover { background: var(--point); color: var(--black); }
/* [list #5] 페이지네이션 없어도 빈 공간이 남지 않게 (flex라 자동), 하단 기본 패딩만 */
.win-body { padding-bottom: 20px; }

/* ── [list #3] 게시판 검색 모달 ── */
.ozl-search-modal { position: fixed; inset: 0; z-index: 9999; }
.ozl-search-modal-bg { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.ozl-search-modal-box {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(360px, 90vw);
  background: var(--sub);
  border: var(--border);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.15);
  padding: 22px 20px 20px;
}
.ozl-search-modal-title { font-weight: 900; font-size: 14px; margin-bottom: 14px; color: var(--black); }
.ozl-search-modal-sel,
.ozl-search-modal-input {
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  border: var(--border);
  background: #fff;
  color: var(--black);
  padding: 0 10px;
  font-size: 13px;
  margin-bottom: 10px;
}
.ozl-search-modal-btn {
  width: 100%;
  height: 42px;
  border: var(--border);
  background: var(--black);
  color: var(--sub);
  font-family: 'Space Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}
.ozl-search-modal-btn:hover { background: var(--point); color: var(--black); }
.ozl-search-modal-close {
  position: absolute;
  top: 10px; right: 12px;
  width: auto; height: auto;
  border: none; background: none;
  font-size: 16px; color: #999; cursor: pointer;
}
.ozl-search-modal-close:hover { color: var(--black); }

/* ── [view] 첨부이미지 클릭 시 원본 크기 (JS와 함께) ── */
/* (실제 원본 오픈은 view.skin.php 스크립트가 처리 — 여기선 본문 이미지 커서만) */
#bo_v_con img, #bo_v_img img { cursor: zoom-in; }

/* ── [내 글/댓글] 게시판명 열 2줄 방지 : 폭 넓히고 줄바꿈 안 함 ── */
.ozl-new-table .td_board {
  white-space: nowrap;
  min-width: 90px;
}
.ozl-new-table .td_board a { white-space: nowrap; }

/* ── [hot.php] 창 스크롤 (index 1-2와 별개로 재보증) ── */
#win-hot .win-body { max-height: calc(100% - 38px); overflow-y: auto; }


/* ════════════════════════════════════════════════
   [패치 260722-18] 모바일 index + 배경 전체 높이
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
════════════════════════════════════════════════ */

/* ── 배경(격자 패턴)이 스크롤 끝까지 안 내려오는 문제 ──
   html, body, #body, .desktop 중 height가 고정되거나 짧은 쪽이 있어서
   배경이 콘텐츠 밑으로 안 따라오던 것 */
html, body {
  min-height: 100%;
}
#body, .desktop {
  min-height: 100vh;
}

@media (max-width: 768px) {
  /* 모바일에서 창들이 세로로 흘러 콘텐츠가 길어지면 배경도 같이 늘어나야 함 */
  html, body, #body, .desktop {
    height: auto !important;
    min-height: 100vh;
  }

  /* ── 모바일 아이콘 그리드 : 햄버거 메뉴에서 가로 나열 ── */
  .icon-grid {
    flex-direction: row !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px !important;
    padding: 10px 8px !important;
    background: var(--sub);
    border-bottom: var(--border);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .icon-grid::-webkit-scrollbar { display: none; }
  .desktop-icon {
    flex-shrink: 0;
    min-width: 60px;
  }

  /* ── 모바일 index 전체글 목록 컨테이너 ── */
  #ozlMobileIndex {
    margin: 0;
    padding: 0 0 80px;  /* 하단 앱바 높이만큼 여백 */
  }
  .ozl-mob-idx-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px 10px;
    border-bottom: var(--border);
  }
  .ozl-mob-idx-title {
    font-weight: 900;
    font-size: 14px;
    color: var(--black);
  }
  a.ozl-mob-idx-search {
    width: auto;
    height: auto;
    font-size: 18px;
    color: var(--black);
    text-decoration: none;
  }

  /* 목록 아이템 : ozl-row 와 동일한 스타일 재사용 */
  #ozlMobileIndex .post-item.ozl-row {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  #ozlMobileIndex .ozl-row-main {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
  }
  #ozlMobileIndex .ozl-row-title {
    font-size: 13px;
    color: var(--black);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  #ozlMobileIndex .ozl-row-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 10px;
    color: #aaa;
    flex-shrink: 0;
  }
}

/* ════════════════════════════════════════════════
   [패치 260722-19] 모바일 최신글 창 + 글씨 크기 + 가로스크롤 방지
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── 가로 스크롤 원천 차단 (플립7 등 좁은 기기 대응) ──
     어떤 요소가 화면 폭을 넘어도 가로 스크롤이 안 생기게 한다. */
  html, body {
    overflow-x: hidden !important;
    max-width: 100%;
  }
  #body, .desktop, .win, .win-body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  /* 목록 아이템 내부 요소가 넘치지 않도록 */
  .post-item, .ozl-row, .ozl-row-main, .post-list {
    max-width: 100%;
    box-sizing: border-box;
  }
  /* hot.php 탭이 넘칠 때 가로 스크롤 대신 줄바꿈 */
  .hot-board-tabs {
    flex-wrap: wrap !important;
  }

  /* ── 모바일 최신글 창(win) UI ── */
  #ozlMobileIndex {
    padding: 10px 8px 90px;  /* 하단 앱바 여백 */
  }
  .ozl-mob-win {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    margin: 0 !important;
    border: var(--border);
    box-shadow: 4px 4px 0 rgba(0,0,0,0.12);
  }
  .ozl-mob-win .win-body {
    max-height: none !important;
    overflow: visible !important;
    padding: 0 0 10px;
  }

  /* ── 글씨 크기 : 제목·본문 13px (기존 대비 키움) ── */
  .ozl-row-title,
  #ozlMobileIndex .ozl-row-title,
  .post-title,
  #bo_v_con,
  #bo_v_con *,
  #bo_vc .cmt_contents {
    font-size: 13px !important;
  }
  /* 배지·상태 등 보조 정보도 약간 키움 */
  .ozl-row-stat,
  .ozl-row-stat span {
    font-size: 11px !important;
  }
  .deal-badge {
    font-size: 11px !important;
  }

  /* ── 모바일 페이지네이션 ── */
  .ozl-mob-pg {
    margin: 16px 0 4px;
    flex-wrap: wrap;
  }
  .ozl-mob-pg .ozl-pg-num,
  .ozl-mob-pg .ozl-pg-arrow {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }

  /* 모바일 최신글 헤더 */
  .ozl-mob-idx-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 10px;
    border-bottom: var(--border);
  }
  .ozl-mob-idx-title { font-weight: 900; font-size: 14px; color: var(--black); }
  a.ozl-mob-idx-search { width: auto; height: auto; font-size: 18px; text-decoration: none; }
}

/* ── 모바일 전용 컨테이너 표시 제어 (JS 의존 없이 CSS로) ── */
.ozl-mobile-only { display: none; }   /* 데스크탑: 숨김 */
@media (max-width: 768px) {
  .ozl-mobile-only { display: block; } /* 모바일: 표시 */
}


/* ════════════════════════════════════════════════
   [패치 260722-20] 모바일 헤더/푸터 스크롤 + 창 풀폭 + list 2줄 등
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
   ⚠ 이 블록은 이전 모바일 패치(11,18,19)보다 뒤에 있어야 우선 적용됩니다.
════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── 헤더/푸터 : 고정 해제 → 문서 흐름 (스크롤 따라 이동) ──
     스크롤 내리면 헤더가 위로 사라지고, 올리면 푸터가 아래로 사라짐.
     (데스크탑은 기존 고정 유지 — 이 규칙은 모바일에서만 적용됨) */
  .ozl-header,
  #ozl-header,
  .taskbar,
  .ticker-wrap,
  .ozl-footer,
  .footer-bar,
  .app-bar {
    position: static !important;
    top: auto !important;
    bottom: auto !important;
  }

  /* ── 데스크탑 미리보기 창 그룹 : 모바일에서 완전 숨김 ──
     JS 실패해도 확실히 숨겨서, 투명 컨테이너가 클릭을 막는 문제 방지
     (로그인 버튼·목록 상단이 안 눌리던 버그 해결) */
  .win-group { display: none !important; }

  /* ── 창(win) 가로 꽉 차게 + 좌우 여백 제거 ── */
  #ozlMobileIndex {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .ozl-mob-win {
    width: 100% !important;
    border-left: none !important;
    border-right: none !important;
    box-shadow: none !important;
  }
  .ozl-mob-win .win-body { padding-left: 0 !important; padding-right: 0 !important; }
  /* 게시판 목록 창들도 모바일에선 풀폭 */
  .win.open {
    border-left: none !important;
    border-right: none !important;
  }

  /* ── 모바일 배너 자리 (준비 전 회색 플레이스홀더) ── */
  .ozl-mob-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
    background: #d8dcd6;
    color: #8a938a;
    font-size: 12px;
    margin: 0;
  }
  .ozl-mob-banner-top { margin-bottom: 10px; }
  .ozl-mob-banner-bottom { margin-top: 10px; }
  .ozl-mob-banner img { width: 100%; display: block; }

  /* ── 인기게시판(hot) 탭 : 두 줄 → 한 줄 ──
     탭 박스 크기(패딩/폰트)를 줄여 5개가 한 줄에 들어가게 */
  .hot-board-tabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hot-board-tabs::-webkit-scrollbar { display: none; }
  .hot-board-tabs .hbtab,
  .hot-board-tabs a.hbtab {
    flex-shrink: 0;
    padding: 6px 10px !important;
    font-size: 11px !important;
  }
  /* 탭 앞 이모지 숨겨 폭 절약 (텍스트만) */
  .hot-board-tabs .hbtab .tab-emoji { display: none; }

  /* ── list 페이지 목록 : 2줄 배치 ──
     1줄: 카테고리 + 제목 + (우측 끝) 댓글 말풍선
     2줄: 작성자 · 추천 · 조회 · 시간 */
  .post-item.ozl-row {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 5px !important;
    padding: 11px 14px !important;
  }
  .ozl-row-main {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
  }
  .ozl-row-title {
    flex: 1;
    font-size: 13px !important;
  }
  /* 댓글 배지를 1줄 오른쪽 끝으로 */
  .ozl-row-main .ozl-cmt-badge {
    margin-left: auto;
    flex-shrink: 0;
  }
  /* 2줄: 작성자 표시 + 정보 왼쪽 정렬 */
  .ozl-row-stat {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    font-size: 11px !important;
    color: #999 !important;
  }
  .ozl-row-writer { display: inline !important; color: #777; }

  /* ── 모바일 최신글(index) 목록도 동일하게 2줄 ── */
  #ozlMobileIndex .post-item.ozl-row {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  #ozlMobileIndex .ozl-row-stat {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }
}

/* 데스크탑: 목록의 작성자명은 숨김 (모바일 2줄에서만 노출) */
@media (min-width: 769px) {
  .ozl-row-writer { display: none; }
}


/* ════════════════════════════════════════════════
   [패치 260722-21] 모바일 버그 수정 (흰박스/X자/푸터) + 배너 전게시판
   theme/ozl/css/common.css 맨 아래(이전 모바일 패치들 뒤)에 붙여넣으세요.
════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── 모바일 핵심: .desktop position 해제 ──
     .desktop이 position:fixed 라서 그 안의 모든 요소(배너, 창, X버튼)가
     뷰포트 기준으로 떠다닌다. 모바일에선 static으로 바꿔 문서 흐름에 편입. */
  .desktop {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    height: auto !important;
    min-height: 100vh;
    overflow: visible !important;
    padding-top: 0 !important;
    background: transparent !important;
  }
  /* 모바일 배경 격자 : #body에 확실히 적용 (배너 위 여백에도 배경 보이게) */
  #body {
    background-color: var(--main) !important;
    background-image:
      linear-gradient(to right, rgba(26,26,26,0.07) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(26,26,26,0.07) 1px, transparent 1px) !important;
    background-size: 44px 44px !important;
  }
  /* 상단 배너: 위아래 10px 고정 여백 (게시판 무관 통일) */
  .ozl-mob-banner-global.top {
    margin: 10px 0 !important;
  }
  /* 배너 바로 다음에 오는 창은 상단 여백 0으로 통일
     (자유/중고=일반스킨과 자랑/핫딜=갤러리스킨의 창 상단 margin이 달라
      배너 하단 여백이 들쭉날쭉했던 문제 해결) */
  .ozl-mob-banner-global.top + .win,
  .ozl-mob-banner-global.top + .win.open {
    margin-top: 0 !important;
  }
  /* 창들의 상단 여백 모바일에서 통일 */
  .win.open { margin-top: 0 !important; }
  /* taskbar, ticker도 문서 흐름으로 (스크롤 따라 이동) */
  .ticker-bar,
  .taskbar {
    position: static !important;
    top: auto !important;
    width: 100% !important;
  }
  /* 푸터 계열 모두 문서 흐름으로 */
  .footer-linkbar,
  .ozl-footer,
  .app-bar,
  .open-apps {
    position: static !important;
    bottom: auto !important;
  }

  /* ── .win 모바일 처리 : static으로 변경, .close는 창 안 우상단에 고정 ──
     .desktop이 static이 되면서 .win(absolute)의 기준점이 엉뚱한 곳으로 올라가
     X버튼이 뷰포트 상단에 떠있던 문제. win을 relative로 바꿔 .close가 win 기준이 되게. */
  .win {
    position: relative !important;
  }
  /* win.open 상태에서 close 버튼이 win-header(타이틀바) 우측에 오버랩되게 */
  .win.open .close,
  .win .close {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    /* 크기는 기본값 유지 — 데스크탑과 공유하므로 강제 지정 안 함 */
    z-index: 10;
  }

  /* ── 로그인/프로필 창은 모바일에서도 중앙 모달로 (문서흐름 예외) ── */
  #win-login.open,
  #win-profile.open {
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: min(340px, 90vw) !important;
    max-height: 85vh !important;
    margin: 0 !important;
    overflow-y: auto !important;
    z-index: 3000 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3) !important;
    background: var(--sub) !important;      /* 사이트 기본 배경색 */
    border: var(--border) !important;
  }
  /* 모달 뒤 어두운 딤 배경 */
  #win-login.open::before,
  #win-profile.open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: -1;
    left: 50%; top: 50%;
    width: 100vw; height: 100vh;
    transform: translate(-50%, -50%);
  }
  /* 모달 내부 본문 배경색도 일치 */
  #win-login.open .win-body,
  #win-profile.open .win-body {
    background: var(--sub) !important;
  }
  /* 열린 창은 relative로 문서 흐름에 배치 + .close의 absolute 기준점 역할 */
  .win.open {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    margin: 0 !important;
    box-shadow: none !important;
  }

  /* ── 버그1: 헤더 아래 흰 박스 + 까만 선 제거 ──
     icon-grid(아이콘 영역)가 햄버거를 안 눌러도 항상 보여서 흰 박스로 남던 문제.
     → 기본 숨김, 햄버거 열림(.m-open)일 때만 표시. deco-panel도 숨김. */
  /* icon-grid: fixed로 문서흐름에서 분리. max-height로 열고닫음.
     - border는 닫혔을 때 안 보이게 (검은 선 방지)
     - top: 48px = 모바일에서 ticker 숨김 후 taskbar 높이(48px)만큼 */
  .icon-grid {
    position: fixed !important;
    top: 48px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 2500 !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: space-around !important;
    align-items: center !important;
    background: var(--sub) !important;
    border: none !important;          /* 닫혔을 때 검은 선 완전 제거 */
    overflow: hidden !important;
    max-height: 0 !important;
    padding: 0 8px !important;
    transition: max-height 0.3s ease, padding 0.3s ease !important;
    display: flex !important;
  }
  .icon-grid.m-open {
    max-height: 130px !important;
    padding: 10px 8px 12px !important;
    border-bottom: var(--border) !important;  /* 열렸을 때만 하단 선 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.10) !important;
  }
  .deco-panel { display: none !important; }

  /* ── 버그2: 햄버거(X자) 위치 정상화 ──
     헤더(taskbar) 안 오른쪽에 자연스럽게 배치. 화면에 떠다니지 않게. */
  .m-hamburger {
    position: static !important;
    order: 3;
    width: 40px; height: 40px;
    flex-shrink: 0;
  }
  .taskbar {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
  }

  /* ── 푸터: 첫 화면엔 안 보이고 스크롤로만 노출 ──
     문서 흐름 맨 아래에 두어 스크롤을 끝까지 내려야 나타남 (고정 아님) */
  .ozl-footer,
  .footer-bar,
  .app-bar {
    position: static !important;
    margin-top: 0;
  }

  /* ── 배너: 모든 게시판(list/view)에서도 같은 위치에 노출 ──
     tail.php의 공통 모바일 배너를 표시 (아래 tail 배너 삽입과 세트) */
  .ozl-mob-banner-global {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 70px;
    background: #d8dcd6;
    color: #8a938a;
    font-size: 12px;
  }
  .ozl-mob-banner-global.top { margin: 10px 0; }
  .ozl-mob-banner-global.bottom { margin: 10px 0 0; }
  .ozl-mob-banner-global img { width: 100%; display: block; }
}

/* 데스크탑에서는 공통 모바일 배너 숨김 */
@media (min-width: 769px) {
  .ozl-mob-banner-global { display: none; }
}

/* ════════════════════════════════════════════════
   [패치 260722-22] 로그인 옵션 + 푸터/배너/view 액션바 정리
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
════════════════════════════════════════════════ */

/* ── 로그인 창 : 자동로그인 / 아이디 기억 체크박스 (데스크탑·모바일 공통) ── */
.ozl-login-opts {
  display: flex;
  gap: 16px;
  margin: 4px 0 12px;
  flex-wrap: wrap;
}
.ozl-login-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--black);       /* 글씨 안 보이던 문제: 명시적으로 검정 */
  cursor: pointer;
}
.ozl-login-check input[type="checkbox"] {
  width: 15px; height: 15px;
  accent-color: #4a7a5a;
  flex-shrink: 0;
}
.ozl-login-check span { color: var(--black); }

/* 네이버 로그인 버튼 */
.social-btn.naver {
  background: #03c75a;
  color: #fff;
  border-color: #03c75a;
}
.social-btn.naver:hover { background: #02b350; }

/* ── view 액션바 : 좁은 화면에서 한 줄이 길어 가로 스크롤 유발 → 줄바꿈 허용 ── */
.ozl-view-actions {
  flex-wrap: wrap;
  row-gap: 8px;
}
@media (max-width: 768px) {
  .ozl-view-actions {
    gap: 10px 12px;
  }
  .ozl-view-actions .ozl-va-left,
  .ozl-view-actions .ozl-va-right {
    gap: 10px 12px;
    flex-wrap: wrap;
  }
  /* 우측 그룹이 줄바꿈되면 왼쪽 정렬로 (밀려서 넘치지 않게) */
  .ozl-view-actions .ozl-va-right { margin-left: 0; }
}

/* ── [view] 추천 버튼 본문 하단 중앙 + 볼드 크게 (데스크탑·모바일 공통) ── */
.ozl-good-center {
  display: flex;
  justify-content: center;
  margin: 18px 0;
}
.ozl-good-center .ozl-good-btn {
  width: auto; height: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: var(--border);
  background: var(--sub);
  color: var(--black);
  font-family: inherit;
  font-size: 13px;          /* 12~13px */
  font-weight: 700;         /* 볼드 */
  padding: 10px 24px;
  cursor: pointer;
}
.ozl-good-center .ozl-good-btn:hover { background: var(--point); }
.ozl-good-center .ozl-good-btn strong { color: #4a7a5a; }

/* ── [view] 타이틀 바(창 헤더) 클릭 시 목록 이동 : 커서 표시 ── */
.win-header.ozl-clickable { cursor: pointer; }

@media (max-width: 768px) {

  /* ── [index] 푸터 메뉴 박스 외곽선 제거 ── */
  .ozl-footer .flink,
  .footer-links a,
  .app-bar a {
    border: none !important;
    box-shadow: none !important;
    background: none !important;
  }

  /* ── 배너 : 영역 안에서 세로 가운데 정렬 (푸터 밑으로 안 밀리게) ── */
  .ozl-mob-banner,
  .ozl-mob-banner-global {
    display: flex !important;
    align-items: center;
    justify-content: center;
    order: 0;
  }
  /* 배너가 문서 흐름 상 창과 푸터 사이에 오도록 (푸터 아래로 안 가게) */
  .ozl-mob-banner-global.bottom { order: 5; }
  .ozl-footer, .app-bar { order: 10; }

  /* ── [list] 페이지네이션 바 : 검색·번호·글쓰기 세로 중앙 정렬 ── */
  .ozl-pgbar {
    align-items: center !important;
    gap: 10px;
  }
  .ozl-pgbar-search,
  .ozl-pgbar-write {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}



/* ════════════════════════════════════════════════
   [패치 260723-23] 운영자 닉네임 배지 + 삭제 댓글 + 거래완료 댓글 금지
   theme/ozl/css/common.css 맨 아래에 붙여넣으세요.
════════════════════════════════════════════════ */

/* 운영자 이름 + 배지 (목록/본문/댓글 공통) */
.ozl-staff-name { color: #2e6e4e; font-weight: 900; }
.ozl-staff-badge {
  font-style: normal;
  font-size: 10px;
  background: #2e6e4e;
  color: #fff;
  padding: 2px 6px;
  margin-left: 4px;
  border-radius: 2px;
  vertical-align: 1px;
}

/* 삭제된 댓글 */
.ozl-cmt-name.ozl-cmt-deleted { color: #aaa; font-weight: 400; }
.ozl-cmt-deleted-text {
  color: #999;
  font-style: italic;
  font-size: 12px;
}

/* 거래완료 댓글 작성 금지 안내 */
.ozl-cmt-closed {
  border: 1px dashed #ccc;
  background: #f7f7f5;
  padding: 16px;
  text-align: center;
  margin-top: 10px;
}
.ozl-cmt-closed-msc {
  color: #999;
  font-size: 13px;
  margin: 0;
}
