@charset "UTF-8";

.filterForm {
	display: grid;
	grid-template-columns: 260px 1fr;
	gap: 22px;
	align-items: start;
}

/* ============ LEFT SEARCH ============ */
.searchArea {
	border-right: 1px solid #D5D5D5;
	background: #fff;
	overflow: hidden;
	padding: 14px;
}

.searchHead {
	background: #DC731D;
	color: #fff;
	font-weight: 500;
	padding: 5px 10px;
	font-size: 14px;
	text-align: center;
	margin-bottom: 10px;
}

.filterRow {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.filter {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.filter div {
	width: 180px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.filterRow--keyword {
	grid-template-columns: 1fr;
	margin-top: 12px;
}

.filterLabel {
	font-size: 14px;
	color: #666;
	margin-top: 10px;
}

.filterSelect {
	width: 100%;
	height: 40px;
	border: none;
	border-radius: 20px;
	padding: 0 10px;
	font-size: 14px;
	outline: none;
	background: #F8F9FA;
}

.keywordInput {
	width: 100%;
	height: 30px;
	border: none;
	background: #F8F9FA;
	border-radius: 15px;
	padding: 0 10px;
	font-size: 12px;
	outline: none;
}

.keywordBtn {
	width: 50px;
	height: 26px;
	border: none;
	border-radius: 13px;
	background: #DC731D;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	margin: 0 auto;
}

/* ============ RIGHT CONTENT ============ */

/* 페이징 스타일 */
#pageStr {
	display: flex;
    justify-content: center;
    margin-top: 20px;
}
#pageStr a {
    color: #DC731D;          
    text-decoration: none;   
    padding: 5px 10px;       
    border: 1px solid #ddd;  
    border-radius: 4px;      
    margin: 0 3px;           
    transition: all 0.2s;    
}


#pageStr a:hover {
    background-color: #DC731D;
    color: white;
    border-color: #DC731D;
}

.contentArea {
	min-width: 0;
}

.contentTop {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contentTitle {
	font-size: 14px;
	font-weight: 800;
	color: #111;
}

.sortBox {
	width: 100%;
	padding: 20px;
	text-align: right;
}

.sortSelect {
	height: 32px;
	border: none;
	border-radius: 999px;
	padding: 0 12px;
	font-size: 12px;
	outline: none;
	background: #F8F9FA;
}

.cardGrid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.classCard {
	border-radius: 14px;
	border: 1px solid #eee;
	display: block;
	overflow: hidden;
	text-decoration: none;
	color: #111;
	padding: 15px;
}

.thumb {
	width: 100%;
	aspect-ratio: 16/9;
	background: #f3f5f7;
	overflow: hidden;
}

.thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.meta {
	padding-top: 10px;
}

.rating {
	font-size: 12px;
	font-weight: 400;
}

.top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
}

.provider {
	font-size: 13px;
}

.bottom {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 10px;
}

.title {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 70%;
}

.price {
	font-size: 16px;
	font-weight: 800;
	white-space: nowrap;
}

@media ( max-width : 980px) {
	.cardGrid {
		grid-template-columns: 1fr;
	}
}

/* ============ ============ */
/* class Detail */
/* ============ ============ */

/* 공통 변수 느낌 */
:root {
	--ink: #111827;
	--muted: #6b7280;
	--line: #e5e7eb;
	--bg: #ffffff;
	--card: #ffffff;
	--chip: #f3f4f6;
	--accent: #DC731D; /* 결제 버튼 */
	--accent-soft: #e6fffe; /* hover */
	--danger: #ef4444;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	--radius: 16px;
}

/* =========================
   상단 프로필/타이틀 영역
   ========================= */
.classDetailTop {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	padding: 0 0 24px;
}

.topLeft {
	display: flex;
	align-items: center;
	gap: 14px;
	min-width: 0;
}

.providerAvatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	border: 1px solid var(--line);
	background: #f9fafb;
	flex: 0 0 auto;
}

.providerAvatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.topInfo {
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-width: 0;
}

.providerLine {
	display: flex;
	align-items: center;
	gap: 4px;
}

.providerName {
	font-weight: 500;
	color: #555555;
	font-size: 15px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 340px;
}

.providerBadge {
	width: 15px;
	height: 15px;
}

.classTitle {
	font-weight: 800;
	color: var(--ink);
	font-size: 24px;
	line-height: 1.25;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 640px;
}

/* 오른쪽 액션 영역 */
.topRight {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.topIcons {
	display: flex;
	gap: 10px;
	margin-right: 30px;
}

.topRight .iconBtn {
	width: 30px;
	height: 30px;
	border: none;
	background: var(--bg);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.topRight .iconBtn img {
	width: 30px;
	height: 30px;
	border-radius: 0px !important;
}

.topRight .iconBtn:last-child img {
	width: 15px;
	height: 15px;
}

.topActions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

/* 버튼 공통 */
.actionBtn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	border: 1px solid transparent;
	cursor: pointer;
	transition: transform .12s ease, background .12s ease, border-color .12s
		ease;
	white-space: nowrap;
}

.actionBtn.outline {
	background: var(--bg);
	border-color: var(--accent);
	color: var(--accent);
}

.actionBtn.solid {
	background: var(--accent);
	color: white;
}

.actionBtn.ghost {
	background: #f9fafb;
	border-color: var(--line);
	color: var(--ink);
}

.actionBtn.ghost:hover {
	background: #f3f4f6;
}

.topActions .actionBtn {
	padding: 0 60px;
}

/* =========================
   탭
   ========================= */

#detail, #reviews {
	scroll-margin-top: 140px;
}

.detail-tabs {
	position: sticky;
	top: 73px;
	z-index: 50;
	background: #fff;
	padding-top: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid #e5e7eb;
}

.detail-tabs .tab {
	position: relative;
	padding: 13px 10px;
	font-weight: 400;
	font-size: 15px;
	text-decoration: none;
	color: #6b7280;
}

.detail-tabs .tab.active {
	font-weight: 700;
	color: #111827;
}

.detail-tabs .tab.active::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0px;
	height: 2px;
	border-radius: 999px;
	background: #111827;
}

/* =========================
   본문 레이아웃 (좌/우)
   ========================= */
.classDetailPage {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.detailArea {
	flex: 1;
	min-width: 0;
}

.sideArea {
	width: 320px;
	flex-shrink: 0;
}

/* 상세 블록 - 모든 블록의 너비를 일관되게 */
.detailBlock {
	margin-bottom: 12px;
	width: 100%;
	box-sizing: border-box;
}

.blockTitle {
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 16px;
	color: #222;
}

.blockText {
	font-size: 15px;
	line-height: 1.7;
	color: #555;
	white-space: pre-wrap;
	margin-left: 20px;
}

/* 해시태그 */
.tagRow {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	width: 100%;
	margin-left: 20px;
}

.tag {
	display: inline-block;
	background: #fff3e0;
	color: #DC731D;
	padding: 6px 14px;
	border-radius: 16px;
	font-size: 13px;
	font-weight: 500;
}

.tag-empty {
	background: #f3f5f7;
	color: #999;
}

/* 분야/지역 정보 */
.field-info, .region-info {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	width: 100%;
	margin-left: 20px;
}

.field-text, .region-text {
	font-weight: 700;
	color: #DC731D;
	font-size: 15px;
}

.field-empty, .region-empty {
	color: #999;
	font-style: italic;
	font-size: 14px;
}

/* 미디어(사진/동영상) 영역 */
.mediaRow {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	width: 100%;
	box-sizing: border-box;
	margin-left: 20px;
}

.mediaBox {
	aspect-ratio: 16/9;
	min-height: 200px;
	border-radius: 8px;
	overflow: hidden;
	background: #f3f5f7;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
}

.mediaVideo, .mediaImg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 후기 블록 */
.reviewHead {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	margin-bottom: 20px;
	width: 100%;
}

.reviewSummary {
	font-size: 14px;
	color: #666;
	margin-left: 20px;
}

.reviewSummary b {
	color: #DC731D;
	font-weight: 700;
}

/* 후기 슬라이더 */
.reviewSlider {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin-left: 20px;
}

.reviewCards {
	display: flex;
	gap: 16px;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 12px;
	width: 100%;
	/* 스크롤바 스타일링 */
	scrollbar-width: thin;
	scrollbar-color: #DC731D #f0f0f0;
}

.reviewCards::-webkit-scrollbar {
	height: 8px;
}

.reviewCards::-webkit-scrollbar-track {
	background: #f0f0f0;
	border-radius: 4px;
}

.reviewCards::-webkit-scrollbar-thumb {
	background: #DC731D;
	border-radius: 4px;
}

.reviewCards::-webkit-scrollbar-thumb:hover {
	background: #b85d17;
}

/* 상세 페이지의 후기 카드 - 높이 축소 */
.reviewSlider .reviewCard {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 14px;
	min-width: 280px;
	max-width: 280px;
	flex-shrink: 0;
	transition: all 0.2s;
	display: flex;
	flex-direction: column;
	gap: 10px;
	height: 150px;
	box-sizing: border-box;
}

.reviewSlider .reviewCard:hover {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transform: translateY(-2px);
}

/* 후기 상단 영역 - 프로필 + 내용 */
.reviewSlider .reviewTop {
	display: flex;
	gap: 10px;
	flex: 1;
	min-height: 0;
}

/* 왼쪽: 프로필 사진 + 이름 */
.reviewSlider .reviewAuthor {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
	flex-shrink: 0;
}

.reviewSlider .reviewAvatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	border: 2px solid #f0f0f0;
}

.reviewSlider .reviewAvatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.reviewSlider .reviewerLink {
	display: block;
	width: 100%;
	height: 100%;
}

.reviewSlider .reviewerName {
	font-size: 11px;
	font-weight: 600;
	color: #333;
	text-align: center;
	max-width: 50px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

/* 오른쪽: 별점 + 내용 */
.reviewSlider .reviewMeta {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 6px;
	min-height: 0;
	overflow: hidden;
}

.reviewSlider .reviewStars {
	font-size: 12px;
	flex-shrink: 0;
}

.reviewSlider .reviewStars .stars {
	color: #ffa500;
	font-weight: 700;
}

/* 후기 텍스트 - 2줄 제한 */
.reviewSlider .reviewText {
	font-size: 13px;
	line-height: 1.5;
	color: #555;
	/* 2줄 제한 */
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	word-wrap: break-word;
}

/* 후기 하단 영역 - 태그만 */
.reviewSlider .reviewBottom {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-shrink: 0;
}

/* 태그 컨테이너 */
.reviewSlider .reviewTagContainer {
	display: flex;
	gap: 4px;
	align-items: center;
}

.reviewSlider .reviewTag {
	display: inline-block;
	background: #fff3e0;
	border: 1px solid #ffcc80;
	color: #DC731D;
	padding: 4px 10px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
	/* 말줄임표 처리 */
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.reviewSlider .reviewTagMore {
	display: inline-block;
	background: #f5f5f5;
	color: #999;
	padding: 4px 8px;
	border-radius: 12px;
	font-size: 11px;
	font-weight: 600;
}

/* 카카오맵 스타일 */
#map {
	display: block;
	width: 100%;
	height: 350px;
	margin-top: 15px;
	border-radius: 8px;
	border: 1px solid #ddd;
	box-sizing: border-box;
}

/* 반응형 */
@media ( max-width : 1024px) {
	.classDetailPage {
		flex-direction: column;
	}
	.sideArea {
		width: 100%;
	}
	.mediaRow {
		grid-template-columns: 1fr;
	}
}

@media ( max-width : 640px) {
	.classTitle {
		font-size: 20px;
	}
	.blockTitle {
		font-size: 18px;
	}
	.reviewSlider .reviewCard {
		min-width: 240px;
		max-width: 240px;
		height: 140px;
	}
}

/* =========================
   우측 사이드 카드(고정 느낌)
   ========================= */
.sideArea {
	position: sticky;
	top: 133px; /* 헤더 높이에 맞춰 조절 */
}

.sideCard {
	background: var(--card);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 16px;
}

.sideTitle {
	font-weight: 700;
	color: var(--ink);
	margin-bottom: 12px;
	font-size: 17px;
}

.sideRow {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 0;
	border-top: 1px solid #f1f5f9;
}

.sideRow:first-of-type {
	border-top: none;
}

.sideLabel {
	color: var(--muted);
	font-weight: 600;
	font-size: 12px;
}

.sideValue {
	color: var(--ink);
	font-weight: 700;
	font-size: 14px;
}

.sideBtns {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 14px;
}

/* =========================
   수강 신청 페이지
   ========================= */
.enrollment-container {
	max-width: 1000px;
	margin: 40px auto;
	padding: 20px;
}

.class-info-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	margin-bottom: 30px;
}

.class-info-card h2 {
	font-size: 24px;
	margin-bottom: 20px;
	color: #333;
}

.info-row {
	display: flex;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #f0f0f0;
}

.info-label {
	font-weight: 600;
	color: #666;
}

.info-value {
	color: #333;
}

.calendar-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendar-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 30px;
}

.calendar-header h3 {
	font-size: 20px;
	color: #333;
}

.month-nav {
	display: flex;
	gap: 15px;
	align-items: center;
}

.month-nav button {
	background: #f8f9fa;
	border: 1px solid #dee2e6;
	border-radius: 6px;
	padding: 8px 16px;
	cursor: pointer;
	font-size: 14px;
	transition: all 0.2s;
}

.month-nav button:hover {
	background: #e9ecef;
}

.month-nav button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.current-month {
	font-weight: 600;
	font-size: 18px;
	min-width: 150px;
	text-align: center;
}

.calendar-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 8px;
	margin-bottom: 20px;
}

.calendar-day-header {
	text-align: center;
	font-weight: 600;
	padding: 12px;
	color: #666;
	font-size: 14px;
}

.calendar-day {
	aspect-ratio: 1;
	border: 1px solid #e9ecef;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.2s;
	position: relative;
	background: #fff;
}

.calendar-day:hover {
	border-color: #4CAF50;
	box-shadow: 0 2px 4px rgba(76, 175, 80, 0.2);
}

.calendar-day.other-month {
	color: #ccc;
	background: #f8f9fa;
	cursor: not-allowed;
}

.calendar-day.disabled {
	color: #ccc;
	background: #f8f9fa;
	cursor: not-allowed;
	opacity: 0.6;
}

.calendar-day.today {
	background: #e8f5e9;
	border-color: #4CAF50;
	font-weight: 600;
}

.calendar-day.selected {
	background: #4CAF50;
	color: white;
	border-color: #4CAF50;
}

.calendar-day.full {
	background: #ffebee;
	border-color: #f44336;
	color: #f44336;
	cursor: not-allowed;
}

.day-number {
	font-size: 16px;
	margin-bottom: 4px;
}

.day-status {
	font-size: 11px;
	color: #666;
}

.selected .day-status, .full .day-status {
	color: inherit;
}

.legend {
	display: flex;
	gap: 20px;
	justify-content: center;
	padding: 20px;
	border-top: 1px solid #f0f0f0;
	margin-top: 20px;
}

.legend-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
}

.legend-color {
	width: 20px;
	height: 20px;
	border-radius: 4px;
	border: 1px solid #dee2e6;
}

.legend-color.available {
	background: #fff;
}

.legend-color.today {
	background: #e8f5e9;
}

.legend-color.selected {
	background: #4CAF50;
}

.legend-color.full {
	background: #ffebee;
}

.enrollment-actions {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 30px;
}

.btn {
	padding: 14px 32px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
}

.btn-primary {
	background: #4CAF50;
	color: white;
}

.btn-primary:hover:not(:disabled) {
	background: #45a049;
}

.btn-primary:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.btn-secondary {
	background: #f8f9fa;
	color: #333;
	border: 1px solid #dee2e6;
}

.btn-secondary:hover {
	background: #e9ecef;
}

.selected-date-info {
	text-align: center;
	padding: 20px;
	background: #f8f9fa;
	border-radius: 8px;
	margin-top: 20px;
	font-size: 16px;
}

.selected-date-info strong {
	color: #4CAF50;
}

.alert {
	padding: 15px 20px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
}

.alert-info {
	background: #e3f2fd;
	color: #1976d2;
	border-left: 4px solid #1976d2;
}

.alert-warning {
	background: #fff3e0;
	color: #f57c00;
	border-left: 4px solid #f57c00;
}

/* myEnrollment.html */
.my-enrollments-container {
	max-width: 900px;
	margin: 40px auto;
	padding: 0 16px;
}

.enrollment-list {
	display: grid;
	gap: 20px;
}

.enrollment-card {
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 20px;
	align-items: center;
}

.enrollment-info h3 {
	font-size: 20px;
	margin-bottom: 12px;
	color: #333;
}

.enrollment-details {
	display: grid;
	gap: 8px;
}

.detail-row {
	display: flex;
	gap: 12px;
	font-size: 14px;
}

.detail-label {
	font-weight: 600;
	color: #666;
	min-width: 100px;
}

.detail-value {
	color: #333;
}

.status-badge {
	display: inline-block;
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 12px;
	font-weight: 600;
}

.status-badge.confirmed {
	background: #e8f5e9;
	color: #4caf50;
}

.status-badge.cancelled {
	background: #ffebee;
	color: #f44336;
}

.status-badge.completed {
	background: #e3f2fd;
	color: #1976d2;
}

.btn-small {
	padding: 8px 16px;
	border-radius: 6px;
	font-size: 14px;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

.btn-view {
	background: #4CAF50;
	color: white;
}

.btn-view:hover {
	background: #45a049;
}

.btn-cancel {
	background: #f44336;
	color: white;
}

.btn-cancel:hover {
	background: #da190b;
}

.btn-cancel:disabled {
	background: #ccc;
	cursor: not-allowed;
}

.empty-state {
	text-align: center;
	padding: 60px 20px;
	color: #999;
}

.empty-state h3 {
	font-size: 20px;
	margin-bottom: 12px;
}

.empty-state p {
	font-size: 14px;
	margin-bottom: 24px;
}

.btn-browse {
	background: #4CAF50;
	color: white;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	display: inline-block;
	font-weight: 600;
}

.btn-browse:hover {
	background: #45a049;
}

/* 수강신청 관련 반응형 추가 */
@media ( max-width : 1024px) {
	.enrollment-card {
		grid-template-columns: 1fr;
	}
}

@media ( max-width : 640px) {
	.calendar-grid {
		gap: 4px;
	}
	.calendar-day {
		font-size: 12px;
	}
	.day-number {
		font-size: 14px;
	}
	.day-status {
		font-size: 9px;
	}
}
/* ============================================================
   클래스 상세 페이지 - 후기 슬라이더 & 카카오맵 스타일
   ============================================================ */

/* 상세 블록 간격 */
.detailBlock {
	margin-bottom: 12px;
	width: 100%;
	box-sizing: border-box;
}

/* 카카오맵 스타일 */
#map {
	display: block;
	width: 100%;
	height: 350px;
	margin-top: 15px;
	border-radius: 8px;
	border: 1px solid #ddd;
	box-sizing: border-box;
}

/* 분야/지역 정보 */
.field-info, .region-info {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	width: 100%;
}

.field-empty, .region-empty {
	color: #999;
	font-style: italic;
}

/* 카카오맵 스타일 */
#map {
	display: block;
	width: 100%;
	height: 350px;
	margin-top: 15px;
	border-radius: 8px;
	border: 1px solid #ddd;
	box-sizing: border-box;
}

/* 반응형 */
@media ( max-width : 768px) {
	.mediaRow {
		grid-template-columns: 1fr;
	}
}

@media ( max-width : 640px) {
	.reviewSlider .reviewCard {
		min-width: 240px;
		max-width: 240px;
		height: 140px;
	}
}
/* 후기 작성 버튼 영역 들여쓰기 */
.reviewWriteBtn {
	margin-left: 20px;
}
/* ============================================================
   후기 상세 페이지 (reviewDetail)
   ============================================================ */

.reviewDetailWrap {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px 60px;
}

.backBtn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  margin-bottom: 28px;
  transition: background 0.2s, color 0.2s;
}
.backBtn:hover { background: #f5f5f5; color: #222; }
.backBtn .arrow { font-size: 16px; line-height: 1; }

.reviewClassTitle {
  font-size: 13px;
  color: #888;
  margin-bottom: 6px;
}
.reviewClassTitle a {
  color: #4CAF50;
  text-decoration: none;
  font-weight: 600;
}
.reviewClassTitle a:hover { text-decoration: underline; }

.reviewDetailCard {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 32px 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.reviewerProfile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.reviewerAvatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewerAvatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewerAvatar .defaultIcon { font-size: 26px; }

.reviewerInfo { flex: 1; }
.reviewerName { font-size: 16px; font-weight: 700; color: #222; margin-bottom: 4px; }
.reviewerName a { color: #222; text-decoration: none; }
.reviewerName a:hover { color: #4CAF50; }
.reviewDate { font-size: 13px; color: #aaa; }

.reviewRatingRow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.starsLarge { font-size: 22px; color: #f5c518; letter-spacing: 2px; }
.ratingNum { font-size: 18px; font-weight: 700; color: #333; }
.ratingBase { font-size: 14px; color: #aaa; }

.reviewTagRow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.reviewTagChip {
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 13px;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 20px;
}

.reviewContentTitle {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.reviewContentText {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  white-space: pre-wrap;
  word-break: break-word;
  background: #fafafa;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #f0f0f0;
  min-height: 80px;
}
.reviewContentEmpty { color: #bbb; font-style: italic; }