@charset "utf-8";

/* ===========================
   Review 공통
=========================== */
.review-wrap {
	min-height: 100vh;
}

/* Visual 헤더 */
.review-visual {
	width: 100%;
	aspect-ratio: 1920 / 500;
	background-image: url("/hongt/file/IMAGE/uu/95085a5e658840658f4361a2b07ca577");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(44, 36, 36, 0.6);
}

.review-visual-text {
	position: relative;
	text-align: center;
	color: #fff;
	z-index: 1;
	width: 100%;
}

.review-visual-text h2 {
	font-size: 60px;
	line-height: 1.2;
	padding-bottom: 30px;
	letter-spacing: 0.05em;
	color: #fff;
}

.review-visual-text p {
	color: rgba(255, 255, 255, 0.7);
	font-size: 16px;
	letter-spacing: 0.1em;
}

/* 내부 영역 */
.review-inner {
	max-width: 1200px;
	width: calc(100% - 80px);
	margin: 0 auto;
	padding: 80px 0 120px;
}

.review-header {
	text-align: center;
	padding-bottom: 52px;
}

.review-header > span {
	display: block;
	font-size: 13px;
	letter-spacing: 0.2em;
	color: var(--l-brown);
	padding-bottom: 14px;
}

.review-header h3 {
	font-size: 32px;
	font-weight: 700;
	color: #FFE7E7;
	padding-bottom: 16px;
	line-height: 1.3;
}

.review-header p {
	color: var(--l-brown);
	font-size: 15px;
	line-height: 1.8;
}

/* ===========================
   목록 그리드
=========================== */
.review-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.review-card {
	display: block;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(158, 128, 128, 0.15);
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	color: #fff;
	transition: transform 0.2s, border-color 0.2s;
}

.review-card:hover {
	transform: translateY(-4px);
	border-color: rgba(201, 168, 76, 0.5);
}

.review-thumb {
	width: 100%;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: rgba(255,255,255,0.04);
}

.review-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.review-card:hover .review-thumb img {
	transform: scale(1.04);
}

.review-thumb-empty {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review-thumb-empty span {
	color: rgba(255,255,255,0.2);
	font-size: 13px;
}

.review-thumb-empty.large {
	min-height: 320px;
}

.review-card-info {
	padding: 16px 18px 20px;
}

.review-address {
	font-size: 14px;
	color: rgba(255,255,255,0.65);
	margin: 0 0 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid rgba(158, 128, 128, 0.15);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.review-price-row {
	display: flex;
	align-items: center;
}

.review-price-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
	flex: 1;
}

.review-price-divider {
	width: 1px;
	height: 28px;
	background: rgba(158, 128, 128, 0.2);
	margin: 0 14px;
	flex-shrink: 0;
}

.price-label {
	font-size: 11px;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.05em;
}

.price-value {
	font-size: 15px;
	font-weight: 700;
	color: #C9A84C;
	line-height: 1.2;
}

.review-empty {
	grid-column: 1 / -1;
	text-align: center;
	padding: 80px 0;
	color: rgba(158,128,128,0.5);
	font-size: 15px;
}

/* ===========================
   페이징
=========================== */
.review-paging {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 48px;
}

.review-paging .paging-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid rgba(158, 128, 128, 0.25);
	border-radius: 4px;
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	font-size: 14px;
	transition: all 0.2s;
}

.review-paging .paging-btn:hover,
.review-paging .paging-btn.active {
	background: rgba(158, 128, 128, 0.2);
	border-color: rgba(158, 128, 128, 0.5);
	color: #fff;
}

/* ===========================
   뷰 페이지
=========================== */
.review-view {
	max-width: 860px;
	margin: 0 auto;
}

.review-view-thumb {
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 32px;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(158,128,128,0.15);
}

.review-view-thumb img {
	width: 100%;
	display: block;
	max-height: 520px;
	object-fit: cover;
}

.review-view-meta {
	margin-bottom: 28px;
	padding-bottom: 28px;
	border-bottom: 1px solid rgba(158, 128, 128, 0.15);
}

.review-view-title {
	font-size: 24px;
	font-weight: 700;
	color: #FFE7E7;
	margin: 0 0 10px;
	line-height: 1.4;
}

.review-view-address {
	color: rgba(255,255,255,0.55);
	font-size: 14px;
	margin: 0 0 20px;
}

.review-view-price {
	display: flex;
	gap: 0;
}

.review-view-price-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding-right: 32px;
	margin-right: 32px;
	border-right: 1px solid rgba(158,128,128,0.2);
}

.review-view-price-item:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.review-view-price-item .price-label {
	font-size: 12px;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.05em;
}

.review-view-price-item .price-value {
	font-size: 22px;
	font-weight: 700;
	color: #C9A84C;
}

.review-view-content {
	font-size: 15px;
	line-height: 1.9;
	color: rgba(255,255,255,0.75);
	margin-bottom: 40px;
	min-height: 80px;
}

.review-view-btns {
	display: flex;
	gap: 10px;
	justify-content: center;
	flex-wrap: wrap;
}

.review-view-btns .btn-list {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 32px;
	background: #C9A84C;
	color: #1A1414;
	font-size: 14px;
	font-weight: 700;
	border-radius: 4px;
	text-decoration: none;
	letter-spacing: 0.08em;
	transition: background 0.2s;
	line-height: 1;
}

.review-view-btns .btn-list:hover {
	background: #D4B660;
}

.review-view-btns .btn-nav {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 24px;
	border: 1px solid rgba(158, 128, 128, 0.3);
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	border-radius: 4px;
	text-decoration: none;
	transition: all 0.2s;
	line-height: 1;
}

.review-view-btns .btn-nav:hover {
	border-color: rgba(201, 168, 76, 0.6);
	color: #C9A84C;
}

/* ===========================
   글쓰기 폼
=========================== */
.review-wrap .contact-inner {
	max-width: 860px;
	width: calc(100% - 80px);
	margin: 0 auto;
	padding: 80px 0 120px;
}

.review-wrap .form-textarea {
	width: 100%;
	padding: 14px 16px;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(158, 128, 128, 0.3);
	border-radius: 4px;
	color: #fff;
	font-size: 15px;
	resize: vertical;
	box-sizing: border-box;
	font-family: inherit;
	line-height: 1.7;
	min-height: 180px;
	transition: border-color 0.2s, background 0.2s;
}

.review-wrap .form-textarea:focus {
	outline: none;
	border-color: rgba(158, 128, 128, 0.7);
	background: rgba(255, 255, 255, 0.08);
}

/* ===========================
   반응형
=========================== */
@media (max-width: 900px) {
	.review-visual { aspect-ratio: auto; height: 240px; }
	.review-visual-text h2 { font-size: 44px; }
	.review-inner { width: calc(100% - 48px); padding: 64px 0 100px; }
	.review-header h3 { font-size: 28px; }
	.review-header { padding-bottom: 40px; }
	.review-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (max-width: 768px) {
	.review-visual-text h2 { font-size: 36px; }
	.review-inner { width: calc(100% - 32px); padding: 56px 0 80px; }
	.review-header h3 { font-size: 24px; }
	.review-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.review-view-title { font-size: 20px; }
	.review-view-price-item .price-value { font-size: 18px; }
	.review-wrap .contact-inner { width: calc(100% - 32px); padding: 56px 0 80px; }
}

@media (max-width: 520px) {
	.review-visual-text h2 { font-size: 28px; }
	.review-visual-text p { font-size: 13px; }
	.review-grid { grid-template-columns: 1fr; gap: 14px; }
	.review-view-price { flex-direction: column; gap: 12px; }
	.review-view-price-item {
		flex-direction: row;
		align-items: center;
		gap: 10px;
		padding-right: 0;
		margin-right: 0;
		border-right: none;
		border-bottom: 1px solid rgba(158,128,128,0.15);
		padding-bottom: 10px;
	}
	.review-view-price-item:last-child { border-bottom: none; padding-bottom: 0; }
	.review-view-price-item .price-value { font-size: 16px; }
}
