body {overflow-x: hidden;}
#brand .path {top: 430px !important;}
.layout_fix{max-width: 1220px; width: 100%; margin: -80px auto 0; padding: 0 10px; box-sizing: border-box;}
.path {
    overflow: hidden;
    height: 30px;
    line-height: 30px;
    *zoom:1;}

.path span {
    overflow: hidden;
    position: absolute;
    width: 0;
    height: 0;
    white-space: nowrap;
    text-indent: 100%;
}

.path ol {float: right;}

.path li {
    float: left;
    padding: 0 0 0 12px;
    margin: 0 0 0 8px;
    color: #757575;
    background: url("//img.echosting.cafe24.com/skin/base/layout/ico_path.gif") no-repeat 0 10px;
}

.path li:first-child {background: none;}

.path li a {color: #757575;}

/* .path li strong,.path li strong a {
    color: #2e2e2e;
} */

/* aside 영역 */
#aside {border-top: 2px solid #FF9F31; margin:5% 0 10%;}
#aside .center {display: flex; flex-direction: column;}
#aside .orig_menu {padding: 25px 22px; color: #333; line-height: 33px; overflow: visible; position: relative; border-bottom: 1px solid #d1d1d1; height:100%; display:flex; align-items: center; justify-content: space-between; cursor:pointer;}
#aside .orig_menu .text-wrap {display: flex; flex-direction: row; align-items: center; gap: 30px; flex:1; width: 100%;}
#aside .orig_menu span {font-weight: 300; font-size : 18px; color: #353535;}
#aside .orig_menu .toggle-title {margin-left: 30px; color: #222; font-weight: 600;}
#aside .orig_menu img.toggle-icon {width: 17px;height: 17px; position: absolute; right: 10px;}
#aside .sub_menu a {font-weight: 500; background: #0464b5; float: left; padding: 15px 0 0 22px;  width:100%; height: 100%;}
#aside .sub_menu img {padding-right: 23px; padding-top: 10px; }
.font {font-family:  'Giants-Bold', sans-serif;}
.menu2 {display: none;position: relative;width: 100%;padding: 40px 20px;background: #fff;border-top: 1px solid #eaeaea;box-sizing: border-box;line-height: 1.6; border-bottom: 1px solid #eaeaea; font-size: 17px;}
.menu2 .faq_bold {font-weight:bold; }
.toggle-icon {transition: transform 0.3s ease;  width: 17px; height: 17px; object-fit: contain; flex-shrink: 0;}
.toggle-icon.rotate {transform: rotate(180deg);}

.list_top{position: relative;}
.list_top .list_mv {position: relative; left: 50%; width: 100vw; margin-left: -50vw; height: 480px; overflow: hidden; background: url('../img/faq_bg.png') no-repeat center center; background-size: cover;}
.list_top .list_mv_tit {position:absolute; top:50%; color:#fff; text-align:center; left: 50%; transform: translate(-50%,-50%);}
.list_top .list_mv_tit h2 {font-size:48px; font-weight:bold;}
.list_top .list_mv_tit img {padding: 11px 0 20px 0;}
.list_top .list_mv_tit p {font-size:20px; color: #bdbdbd;}




/* 공지사항 */
:root {
    --bg: #f7f4ef;
    --surface: #ffffff;
    --border: #e2ddd6;
    --accent: #2a4a3e;
    --accent-light: #e8f0ec;
    --text-primary: #1a1a1a;
    --text-secondary: #6b6560;
    --text-muted: #9e9890;
    --pin: #c0392b;        /* ← 여기! */
    --shadow: 0 1px 3px ...;
}
/* ── 컨테이너 ── */
.layout_fix.notice {
    padding: 32px 24px 64px;
}

  /* ── 상단 메타 바 ── */
.meta-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}
.total-count {
    font-size: 13px;
    color: var(--text-muted);
}
.total-count span {
    color: var(--accent);
    font-weight: 500;
}
.refresh-btn {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 12px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.refresh-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}
.refresh-icon { font-size: 13px; }

  /* ── 게시판 테이블 ── */
.board {
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.board-head {
    display: grid;
    grid-template-columns: 64px 1fr 100px 96px;
    padding: 0 20px;
    background: #f9f8f6;
    border-bottom: 1px solid var(--border);
}
.board-head span {
    padding: 12px 0;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 500;
}

  /* 각 행 */
.board-row {
    display: grid;
    grid-template-columns: 64px 1fr 100px 96px;
    padding: 0 20px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.15s;
    animation: fadeUp 0.3s ease both;
}
.board-row:last-child { border-bottom: none; }
.board-row:hover { background: #fafaf8; }
.board-row.pinned { background: #fdf9f4; }
.board-row.pinned:hover { background: #faf5ee; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cell {
    padding: 16px 0;
    display: flex;
    align-items: center;
    font-size: 16px;
}
.cell-num {
    color: var(--text-muted);
    font-size: 18px;
}
.cell-title {
    gap: 8px;
    overflow: hidden;
}
.pin-badge {
    flex-shrink: 0;
    background: var(--pin);
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.08em;
    padding: 2px 4px 2px 6px;
    border-radius: 3px;
}
.title-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text-primary);
    font-weight: 400;
}
.pinned .title-text { font-weight: 500; }
.new-badge {
    flex-shrink: 0;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: 0.04em;
}
.cell-author {
    color: var(--text-secondary);
    font-size: 13px;
}
.cell-date {
    color: var(--text-muted);
    font-size: 12px;
}

  /* ── 상세 오버레이 ── */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 15, 0.5);
    z-index: 100;
    backdrop-filter: blur(2px);
    animation: fadeIn 0.2s ease;
}
.overlay.active { display: flex; align-items: center; justify-content: center; padding: 24px; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
    background: var(--surface);
    border-radius: 16px;
    width: 100%;
    max-width: 640px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.2);
    animation: slideUp 0.25s ease;
}
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.modal-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.modal-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}
.modal-num { font-size: 12px; color: var(--text-muted); }
.modal-date { font-size: 12px; color: var(--text-muted); }
.modal-author-badge {
    font-size: 11px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 500;
}
.modal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.02em;
}
.close-btn {
    position: absolute;
    top: 20px; right: 20px;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.15s;
}
.close-btn:hover { background: var(--bg); color: var(--text-primary); }
.modal-body {
    padding: 24px 28px 32px;
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-secondary);
    white-space: pre-wrap;
    word-break: keep-all;
}

  /* ── 상태 메시지 ── */
.status {
    text-align: center;
    padding: 64px 24px;
    color: var(--text-muted);
}
.status-icon { font-size: 32px; margin-bottom: 12px; }
.status-text { font-size: 14px; }
.loading-dots span {
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin: 0 3px;
    animation: bounce 1.2s infinite ease-in-out;
}
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 200;
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
  backdrop-filter: blur(4px);
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.modal-img {
  cursor: zoom-in;
  max-width: 100%;
}




@media (max-width: 900px) {
    .layout_fix{padding: 0 15px;}
    #aside .orig_menu{padding: 3%;}
    #aside .orig_menu .toggle-title{white-space: nowrap; overflow: hidden; text-overflow: ellipsis; width: 58%; margin-left: 0;}
    .list_top .list_mv_tit{width: 100%;}
}

@media (max-width: 600px) {
    .path li, .path li a, .path li strong, .path li strong a{font-size: 14px;}
    .path{margin: 5% 0;}
    .list_top .list_mv{height: 330px;}
    .list_top .list_mv_tit h2{font-size: 40px;}
    .list_top .list_mv_tit img{width: 200px;}
    .list_top .list_mv_tit p{font-size: 16px;}
    #aside .orig_menu span{font-size: 16px;}
    #aside .orig_menu img.toggle-icon{width: 15px; height: 15px;}
    .menu2{font-size: 14px; padding: 5% 3%;}
}


@media (max-width: 560px) {
.board-head, .board-row {
    grid-template-columns: 48px 1fr 80px;
}
.board-head span:last-child,
.board-row .cell-date { display: none; }
.header-title { font-size: 24px; }
.modal-title { font-size: 17px; }
.modal-header, .modal-body { padding-left: 20px; padding-right: 20px; }
}