@charset "utf-8";

/* =========================
   RESET
========================= */

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

body{
	background:#f5f5f5;
	color:#111;
	font:15px/1.7 "Pretendard","Malgun Gothic",sans-serif;
}

a{
	color:inherit;
	text-decoration:none;
}

ul{
	list-style:none;
}

img{
	display:block;
	max-width:100%;
}

button{
	border:0;
	cursor:pointer;
	background:none;
	font:inherit;
}

/* =========================
   LAYOUT
========================= */

.user_layout{
	max-width:1400px;
	min-height:100vh;
	margin:0 auto;
}

/* =========================
   HEADER
========================= */

.header{
	background:#fff;
	border-bottom:1px solid #ddd;
}

/* 상단 */

.header-top{
	position:relative;
	display:flex;
	align-items:center;
	height:85px;
	padding:0 30px;
}

/* 로고 */

.logo a{
	color:#111;
	font-size:32px;
	font-weight:900;
	letter-spacing:-1px;
}

/* 검색 */

.search{
	position:absolute;
	left:50%;
	display:flex;
	align-items:center;
	gap:10px;
	transform:translateX(-35%);
}

.search input[type="text"]{
	width:360px;
	height:48px;
	padding:0 18px;
	border:1px solid #ccc;
	border-radius:12px;
	background:#fff;
	color:#111;
}

.search input[type="text"]::placeholder{
	color:#777;
}

.search button{
	height:48px;
	padding:0 24px;
	border-radius:12px;
	background:#111;
	color:#fff;
	font-weight:700;
}

/* 메뉴 */

.gnb{
	padding:0 30px;
	border-top:1px solid #eee;
	background:#fff;
}

.gnb > ul{
	display:flex;
	gap:35px;
}

.gnb > ul > li{
	position:relative;
}

.gnb > ul > li > a{
	display:block;
	height:58px;
	line-height:58px;
	color:#222;
	font-weight:700;
	transition:color .2s;
}

.gnb > ul > li > a:hover{
	color:#2563eb;
}

/* 드롭다운 */

.depth2{
	position:absolute;
	top:58px;
	left:0;
	z-index:10;
	display:none;
	width:190px;
	padding:10px 0;
	border:1px solid #ddd;
	border-radius:14px;
	background:#fff;
	box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.gnb li:hover .depth2{
	display:block;
}

.depth2 a{
	display:block;
	padding:11px 16px;
	color:#333;
}

.depth2 a:hover{
	background:#f5f5f5;
	color:#111;
}

/* =========================
   MAIN
========================= */

.main-wrap{
	display:flex;
	gap:25px;
	padding:30px;
}

/* =========================
   SIDEBAR
========================= */

.sidebar{
	width:270px;
	flex-shrink:0;
}

.side-box{
	margin-bottom:22px;
	padding:24px;
	border:1px solid #e3e3e3;
	border-radius:20px;
	background:#fff;
}

.side-box h3{
	margin-bottom:18px;
	color:#111;
	font-size:19px;
	font-weight:800;
}

/* 메뉴 */

.side-menu li + li{
	margin-top:14px;
}

.side-menu a{
	color:#222;
	font-weight:600;
	transition:color .2s;
}

.side-menu a:hover{
	color:#2563eb;
}

/* 태그 */

.tags{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
}

.tags a{
	padding:8px 14px;
	border:1px solid #ddd;
	border-radius:999px;
	background:#f3f4f6;
	color:#111;
	font-size:13px;
	font-weight:700;
}

/* =========================
   CONTENT
========================= */

.content-area{
	flex:1;
}

/* 상단 */

.content-top{
	display:flex;
	align-items:center;
	justify-content:space-between;
	margin-bottom:22px;
}

.content-top h2{
	color:#111;
	font-size:32px;
	font-weight:900;
}

/* 후기작성 버튼 */

.content-top a{
	display:inline-flex;
	align-items:center;
	height:48px;
	padding:0 22px;
	border-radius:12px;
	background:#111;
	color:#fff;
	font-weight:700;
}

/* 게시판 */

.board-content{
	min-height:700px;
	padding:35px;
	border:1px solid #e5e5e5;
	border-radius:22px;
	background:#fff;
}

/* 게시판 테이블 */

.board-content table{
	width:100%;
	border-collapse:collapse;
}

.board-content thead th{
	padding:15px 10px;
	border-bottom:2px solid #ddd;
	color:#111;
	font-weight:900;
	text-align:left;
	vertical-align:middle;
}

.board-content tbody td{
	padding:15px 10px;
	border-bottom:1px solid #eee;
	color:#222;
	vertical-align:middle;
}

/* 게시판 링크 */

.board-content a{
	transition:color .2s;
}

.board-content a:hover{
	color:#2563eb;
}

/* =========================
   RHYMIX FIX
========================= */

/* 제목영역 */

.board-content td.title,
.board-content .title{
	line-height:1.5;
	vertical-align:middle;
}

/* 최신글 N 마크 */

.board-content img[alt="new"],
.board-content .icon_new{
	display:inline-block;
	margin-left:4px;
	vertical-align:middle;
	position:relative;
	top:-1px;
}

/* 첨부파일 아이콘 */

.board-content img[alt="file"],
.board-content .icon_file{
	display:inline-block;
	margin-left:4px;
	vertical-align:middle;
	position:relative;
	top:1px;
}

/* 체크박스 */

.board-content input[type="checkbox"]{
	vertical-align:middle;
}

/* 댓글 입력칸 정렬 */
input[type="text"],
input[type="password"],
input[type="email"],
textarea{
	height:40px;
	padding:0 12px;
	line-height:40px;
	vertical-align:middle;

	border:1px solid #dcdcdc;
	font-size:14px;
	box-sizing:border-box;
}

/* textarea는 예외 */
textarea{
	height:auto;
	line-height:1.6;
	padding:12px;
	resize:vertical;
}

/* =========================
   FOOTER
========================= */

.footer{
	margin-top:25px;
	padding:20px 25px;
	border-top:1px solid #ddd;
	background:#fff;
	color:#444;
}

/* 푸터 메뉴 */

.footer-top{
	display:flex;
	justify-content:center;
	margin-bottom:10px;
}

.footer-links{
	display:flex;
	gap:14px;
}

.footer-links a{
	color:#333;
	font-size:13px;
	font-weight:600;
}

/* 카피라이트 */

.copyright{
	padding-top:12px;
	border-top:1px solid #eee;
	color:#666;
	font-size:12px;
	text-align:center;
}

/* =========================
   LOGIN WIDGET
========================= */

.login-box{
	overflow:hidden;
	background:#fff;
}

/* =========================
   SCROLLBAR
========================= */

::-webkit-scrollbar{
	width:10px;
}

::-webkit-scrollbar-track{
	background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
	border-radius:999px;
	background:#ccc;
}