@charset "UTF-8";





/* ==================================================================================================== */
/* ==================================================================================================== */
/* 기본 reset */

*{
	margin:0px; padding:0px;
	font-size:16px;
	font-weight:400;
	font-family: "Noto Sans KR", sans-serif;
	color:black;
	text-decoration:none;
	word-break:keep-all;
}

img{ display:block; }

body{ display:flex; min-width:1250px; }





/* ==================================================================================================== */
/* ==================================================================================================== */
/* 사이드바 */

.cq_sidebar_frame{ width:250px; box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25); background-color:white; z-index:1000; overflow-y:scroll; scrollbar-width: none; }
.cq_sidebar_inner{ width:100%; }
.cq_sidebar_aaa{ padding:20px; display:flex; }
.cq_sidebar_img img{ width:60px; }
.cq_sidebar_texts{ margin-left:10px; }
.cq_sidebar_title{ margin-bottom:5px; font-weight:700; }
.cq_sidebar_text{}
.cq_sidebar_bbb{ padding:20px; }
.cq_sidebar_menu{ padding:5px 0px; margin:5px 0px; }





/* ==================================================================================================== */
/* ==================================================================================================== */
/* 공용 */

.cq_main{ padding:20px 50px; width:900px; box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25); }

.cq_main_title{ font-weight:700; margin-bottom:30px; }

.cq_header{ padding-bottom:80px; margin-bottom:80px; border-bottom:1px solid black; }

.cq_text_max2{
	display: -webkit-box;
	-webkit-line-clamp: 2;       /* 최대 줄 수: 2줄 */
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}

.cq_footer{ margin-top:80px; padding:50px 0px; border-top:1px solid black; }
.cq_footer_text{}





/* ==================================================================================================== */
/* ==================================================================================================== */
/* 카드 */

.cq_card_list{ display:flex; flex-direction: column; gap: 30px; }
.cq_card_frame{ display:flex; }
.cq_card_img img{ width:300px; box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25); }
.cq_card_texts{ margin-left:10px; padding:5px 0px; display:flex; flex-direction: column; justify-content: space-between; }
.cq_card_title{	font-weight:700; }
.cq_card_description{}
.cq_card_created_on{}





/* ==================================================================================================== */
/* ==================================================================================================== */
/* 목록페이지 */

.cq_pagination_frame{ display:flex; margin:80px 0px; }
.cq_pagination_unit{ width:32px; text-align:center; margin:0px 4px; }
.cq_pagination_pick{ background-color:black; color:white; }
.cq_pagination_arrow{ cursor:pointer; }




/* ==================================================================================================== */
/* ==================================================================================================== */
/* 글페이지 */

.cq_contents{}
.cq_contents img{ max-width:100%; box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25); }





/* ==================================================================================================== */
/* ==================================================================================================== */
/* 기타 */

.cq_404{ min-height:calc(100vh - 200px); display:flex; justify-content: center; align-items: center; }

