@charset "utf-8";
/* -----------------------------------------------------------
 * 게시판 읽기 영역
 ----------------------------------------------------------- */
#bo_v_title {
    font-size:23px;
    font-weight:bold;
    line-height:1.4;
    letter-spacing:-1px;
}
#bo_v_con {
    min-height:200px; 
    word-break:break-all;
    overflow:hidden
}
@media all and (max-width:575px) {
    .responsive #bo_v_title {
        font-size:20px;
        line-height:1.5;
    }
    .responsive #bo_v_con { 
        min-height:140px; 
    }
}
#bo_v_con img {
    max-width:100%;
    height:auto
}
#bo_v_img {
    width:100%;
    text-align:center;
    overflow:hidden;
    zoom:1;
}
#bo_v_img:after {
    display:block;
    visibility:hidden;
    clear:both;
    content:"";
}
#bo_v_img a.view_image {
    display:block;
}
#bo_v_img img {
    margin-bottom:1.0rem;
}

/* SNS 공유 */
#bo_v_sns_icon { 
    margin:-5px auto; 
}
#bo_v_sns_icon img { 
    width:40px; 
    border-radius:50%; 
    margin:5px;
}

/* -----------------------------------------------------------
* 게시판 기본정보 영역 
----------------------------------------------------------- */
/* Custom Source 스타일 */
.custom-source-wrap {
    margin: 30px 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}
.custom-source-header {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: linear-gradient(135deg, #e66a98, #f8a6c1);
}

.source-title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.additional-info {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    margin-left: auto;
    padding-left: 20px;
}

.custom-source-header i {
    color: white;
    font-size: 20px;
    margin-right: 10px;
}
.custom-source-header h3 {
    color: white;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}
.custom-source-content {
    padding: 20px 25px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.custom-source-name, 
.custom-source-url {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
}
.custom-source-name i, 
.custom-source-url i {
    color: #4a6ee0;
    font-size: 20px;
}
.custom-source-url a {
    color: #4a6ee0;
    text-decoration: none;
}
.custom-source-url a:hover {
    text-decoration: underline;
}

/* 업체정보 */
.store-info {
   margin-bottom: 2rem;
   background: #fff;
   box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   border-radius: 1rem;
   padding: 1.75rem;
   border: 1px solid #e9ecef;
}

/* Custom Store 스타일 */
.custom-store-wrap {
   margin: 30px 0;
   background: #fff;
   border: 1px solid #e9ecef;
   border-radius: 12px;
   box-shadow: 0 2px 8px rgba(0,0,0,0.05);
   overflow: hidden;
}

.custom-store-header {
   display: flex;
   align-items: center;
   padding: 15px 25px;
   background: linear-gradient(135deg, #6e8efb, #4a6ee0);
}

.custom-store-header i {
   color: white;
   font-size: 24px;
   margin-right: 10px;
}

.custom-store-header h3 {
   color: white;
   font-size: 20px;
   font-weight: 500;
   margin: 0;
   padding: 0;
   background: none;
   border: none;
}

.custom-store-content {
   padding: 5px 0;
}

.custom-store-item {
   display: flex;
   padding: 10px 25px;
   border-bottom: 1px solid #f1f3f5;
   transition: background-color 0.2s;
   align-items: center;
}

.custom-store-item:last-child {
   border-bottom: none;
}

.custom-store-item:hover {
   background-color: #f8f9fa;
}

.custom-store-label {
   flex: 0 0 140px;
   color: #495057;
   font-weight: 500;
   padding-right: 20px;
}

.custom-store-value {
   flex: 1;
   color: #212529;
   line-height: 1.5;
}

/* 체크박스 값 표시 스타일 */
.checkbox-values {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkbox-item {
    border-radius: 6px;
    padding: 4px 8px;
    font-size: 14px;
    color: white;
    display: inline-block;
    font-weight: 500;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    line-height: 1.2;
    border: none;
}

.checkbox-item.color-blue {
    background: #4a6ee0;
}

.checkbox-item.color-blue:hover {
    background: #3d5bd1;
}

.checkbox-item.color-red {
    background: #e74c3c;
}

.checkbox-item.color-red:hover {
    background: #c0392b;
}

.checkbox-item.color-green {
    background: #27ae60;
}

.checkbox-item.color-green:hover {
    background: #229954;
}

.checkbox-item.color-yellow {
    background: #f39c12;
}

.checkbox-item.color-yellow:hover {
    background: #e67e22;
}

.checkbox-item.color-purple {
    background: #9b59b6;
}

.checkbox-item.color-purple:hover {
    background: #8e44ad;
}

.checkbox-item.color-orange {
    background: #e67e22;
}

.checkbox-item.color-orange:hover {
    background: #d35400;
}

.checkbox-item.color-teal {
    background: #1abc9c;
}

.checkbox-item.color-teal:hover {
    background: #16a085;
}

.checkbox-item.color-pink {
    background: #e91e63;
}

.checkbox-item.color-pink:hover {
    background: #c2185b;
}

.checkbox-item:hover {
    background: #e9ecef;
    border-color: #ced4da;
}

.store-info-title {
   font-size: 1.5rem;
   font-weight: 600;
   color: #1a202c;
   margin-bottom: 1.25rem;
   padding-bottom: 1rem;
   border-bottom: 2px solid #4a5568;
}

.store-info-table {
   width: 100%;
}

.store-info-table th,
.store-info-table td {
   padding: 0.875rem 1rem;
   border-bottom: 1px solid #e9ecef;
   vertical-align: top;
   line-height: 1.5;
}

.store-info-table th {
   width: 130px;
   color: #2d3748;
   background: #f8fafc;
   font-weight: 600;
}

/* -----------------------------------------------------------
 * 게시판 댓글 영역 
 ----------------------------------------------------------- */
/* 댓글 내용 */
.cmt-reply {
    top:0;
    left:-16px;
}
.by-writer { 
    background:#fbefef !important;
    border-top:1px solid #f6cece !important;
}
.cmt-content {
    word-break:break-all;
    overflow:hidden
}
.cmt-content img {
    max-width:100%;
    height:auto
}

/* 대댓글, 수정, 삭제 */
.cmt-btn ul { 
    list-style: none; 
    margin: 0; 
}
.cmt-btn ul > li { 
    float: left; 
    font-size:12px;
    padding: 0 10px; 
}
.cmt-btn ul > li::before { 
    float: left; 
    color:#ccc; 
    content: "|"; 
    margin-left:-12px;
}
.cmt-btn ul > li:last-child { 
    padding-right:0;
}
.cmt-btn ul > li:first-child::before, 
.cmt-btn ul > li.no-bar::before { 
    content: ""; 
    margin-left:0; 
}
.cmt-btn ul > li > a { 
    float:left;
    color:#888;
    white-space:nowrap;    
}

/* 댓글 쓰기폼 */
#fviewcomment #wr_content { 
    resize:none; 
}

/* SNS 등록 */
#bo_vc_opt ol {    
    margin:0;
    padding:0;
    list-style:none;
    zoom:1; 
    background:#ccc;
    border-radius:3px;
}
#bo_vc_opt ol:after { 
    display:block;
    visibility:hidden;
    clear:both;
    content:""; 
}
#bo_vc_opt ol li { 
    float:left;
    margin:0; 
}
#bo_vc_send_sns ul { 
    margin:0;
    padding:0;
    list-style:none;
    zoom:1; 
}
#bo_vc_send_sns ul:after { 
    display:block;
    visibility:hidden;
    clear:both;
    content:""; 
}
#bo_vc_send_sns ul li {    
    float:left;
    margin:0 1.0rem 0 0;
}
#bo_vc_send_sns input {    
    margin:0 0 0 0.5rem;
}

/* 반응형 */
@media all and (max-width:768px) {
   .store-info {
       padding: 1.25rem;
       margin: 1.5rem 0;
   }

   .store-info-table th {
       width: 100px;
   }
   
   .custom-store-item {
       flex-direction: row;
       gap: 15px;
       align-items: center;
   }
   
   .custom-store-label {
       flex: 0 0 100px;
       padding-right: 0;
       color: #868e96;
       font-size: 14px;
       word-break: keep-all;
       white-space: nowrap;
   }
   
   .custom-store-value {
       font-size: 14px;
       word-break: break-all;
   }

   .custom-store-header i {
       font-size: 20px;
   }

   .custom-store-header h3 {
       font-size: 18px;
   }

    .custom-source-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .custom-source-name, 
    .custom-source-url {
        width: 100%;
    }
}

@media all and (max-width:575px) {
    .responsive .cmt-box {
        border-right:0 !important;
    }
    .responsive #bo_vc_w .cmt-box {
        border-left:0 !important;
        border-radius:0 !important;
    }
    .responsive #bo_vc_login {
        border-left:0 !important;
        border-right:0 !important;
        border-radius:0 !important;
    }
}