

/********************************/
/****** 여기서 폰트 정의 css 시작 ******/
/********************************/

@font-face {
    font-family: 'basic_r';
    src: url('/fonts/NotoSansKR-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'static_r';
    src: url('/fonts/DoHyeon-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'static_b';
    src: url('/fonts/BlackHanSans-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'radius_r';
    src: url('/fonts/GowunBatang-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'radius_b';
    src: url('/fonts/GowunBatang-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'radius_rr';
    src: url('/fonts/Jua-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cute_r';
    src: url('/fonts/GamjaFlower-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cute_b';
    src: url('/fonts/SingleDay-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'BSB';
    src: url('/fonts/BinggraeSamanco-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@keyframes slideFadeOutRightToLeft {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(-20px);
	}
}

@keyframes slideFadeOutLeftToRight {
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(20px);
	}
}

@keyframes slideFadeOutLeftToRightO70 {
	from {
		opacity: 0.7;
		transform: translateX(0);
	}
	to {
		opacity: 0;
		transform: translateX(20px);
	}
}

@keyframes slideFadeInRightToLeft {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideFadeInRightToLeftO70 {
	from {
		opacity: 0;
		transform: translateX(20px);
	}
	to {
		opacity: 0.7;
		transform: translateX(0);
	}
}

@keyframes slideRightToLeft {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes slideFadeInRightToLeft100 {
	from {
		opacity: 0;
		transform: translateX(100%);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideLeftToRight {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes slideDownToUp {
	from {
		transform: translateY(100%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes slideFadeInLeftToRight {
	from {
		opacity: 0;
		transform: translateX(-20px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideFadeInDownToUp20 {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideFadeInDownToUp30 {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideFadeIndDownToUp-20 {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-80px);
	}
}

@keyframes slideFadeInUpToDown-20 {
	from {
		transform: translateY(-80px);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes rotateFadeInX {
	from {
		opacity: 0;
		transform: rotateX(180deg);
	}
	to {
		opacity: 1;
		transform: rotateX(0deg);
	}
}

@keyframes FadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes FadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes ZoomIn {
	from {
		opacity: 0;
		scale: 0;
	}
	to {
		opacity: 1;
		scale: 1;
	}
}

@keyframes ZoomOut {
	from {
		opacity: 1;
		scale: 1;
	}
	to {
		opacity: 0;
		scale: 0;
	}
}

@keyframes ZoomInO70 {
	from {
		opacity: 0;
		scale: 0;
	}
	to {
		opacity: 0.7;
		scale: 1;
	}
}

@keyframes ZoomOutO70 {
	from {
		opacity: 0.7;
		scale: 1;
	}
	to {
		opacity: 0;
		scale: 0;
	}
}

.fade_out {
	opacity: 0;
	transition: opacity 0.3s ease;
}

.fade_in {
	opacity: 1;
	transition: opacity 0.3s ease;
}

/********************************/
/****** 여기서 최소화 정의 css 시작 ******/
/********************************/

.review_home_container_minimize {
	position: absolute;
	z-index: 10;
	left: 25px;
	bottom: 85px;
	width: 155px;
	height: 50px;
	background-color: #fff;
	border: 1.5px solid #cfcfcf;
	border-radius: 25px;
	display: flex;
	align-items: center;
	cursor: pointer;

	/* 여기부터 추가 */
	opacity: 0;
	transform: translateY(10px) scale(0.9);
	pointer-events: none;
	transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

.review_home_container_minimize:hover {
    background-color: #f1f5ff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transform: translateY(-3px) !important;
}

.review_home_container_minimize.show {
	opacity: 1;
	transform: translateY(0) scale(1);
	pointer-events: auto;
}

.review_home_container_minimize.hide {
	opacity: 0;
	transform: translateY(10px) scale(0.9);
	pointer-events: none;
}

.review_home_container_minimize_icon {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: #f2f2f2;
	transform-origin: center;
	backface-visibility: hidden;
	margin-left: 8px;
}

.review_home_container_minimize_text {
	display: flex;
	flex-direction: column;
	margin-left: 12px;
}

.review_home_container_minimize_label {
	font-size: 12px;
    color: #333;
    line-height: 1;
}

.review_home_container_minimize_name {
	font-weight: bold;
    color: #222;
    font-size: 14px;
    line-height: 1.4;
    margin-top: 3px;
}

/********************************/
/****** 여기서 리뷰홈 기본 컨테이너 정의 css 시작 ******/
/********************************/

.review_home_container_overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999;

	opacity: 0;
	transition: all 0.5s ease;
}

.review_home_container_overlay.show {
	animation: FadeIn 0.5s ease-out forwards;
}

.review_home_container_overlay.hide {
	animation: FadeOut 0.3s ease-out forwards;
}

.review_home_container_overlay_close {
	position: absolute;
	left: calc(50% + 550px);
	bottom: calc(50% + 392px);
	/* background: #000000; */
	opacity: 0.5;
	border-radius: 10px;
	width: 47px;
	height: 47px;
	align-items: center;
	justify-content: center;
	display: flex;
	cursor: pointer;
	opacity: 0;
	transition: all 0.5s ease;
}

.review_home_container_overlay_close.show {
	animation: ZoomInO70 0.5s ease-out forwards;
}

.review_home_container_overlay_close.hide {
	animation: ZoomOutO70 0.3s ease-out forwards;
}

.review_home_container_overlay_close_icon {
	width: 60px;
	height: 60px;
}

.review_home_container_overlay_minimize {
	position: absolute;
	left: calc(50% + 550px);
	bottom: calc(50% + 345px);
	opacity: 0.5;
	border-radius: 10px;
	width: 47px;
	height: 47px;
	align-items: center;
	justify-content: center;
	display: flex;
	cursor: pointer;
	opacity: 0;
	transition: all 0.5s ease;
}

.review_home_container_overlay_minimize.show {
	animation: ZoomInO70 0.5s ease-out forwards;
}

.review_home_container_overlay_minimize.hide {
	animation: ZoomOutO70 0.3s ease-out forwards;
}

.review_home_container_overlay_minimize_icon {
	width: 60px;
	height: 60px;
}

.review_home_container {
	width: 1080px;
    height: 870px;
	background: #f9fbfb;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	
	scale: 0;
	opacity: 0;
	transition: all 0.5s ease;

    overflow: hidden;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

/* 📌 스크롤 레일 완전 오버레이 처리 */
#review_home_container > .ps__rail-y {
    position: absolute;         /* 핵심 */
    top: 0;
    right: 0;
    bottom: 0;
    width: calc(10px * var(--size));
    background: transparent;    /* 공간 배경색 없앰 */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 10;                /* 충분히 위로 */
    pointer-events: none;       /* 클릭 막기 (필요 시 제거) */
}

#review_home_container.scrolling > .ps__rail-y {
    opacity: 1 !important;
    pointer-events: auto;       /* 스크롤 중일 때만 클릭 가능 */
}

/* 손잡이 (바) */
#review_home_container > .ps__rail-y .ps__thumb-y {
	background-color: #e1e1e19e;
    border-radius: 10px;
    border: none;
    right: 2px;
}

/* 누를 때 부드러운 확대 */
#review_home_container > .ps__thumb-y:active {
    transform: scaleX(1) scaleY(1.1);
    transition: transform 0.1s ease;
}

.review_home_container.show {
	animation: ZoomIn 0.5s ease-out forwards;
}

.review_home_container.hide {
	animation: ZoomOut 0.3s ease-out forwards;
}

.review_home_loading-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #2571fe;
	z-index: 2;
}

.review_home_loading-spinner {
	border: 4px solid #f3f3f3; /* 회색 테두리 */
	border-top: 4px solid #2571fe; /* 파란색 테두리 (회전 효과를 줄 부분) */
	border-radius: 50%; /* 원 모양 */
	width: 50px;
	height: 50px;
	animation: spin 1s linear infinite; /* 회전 애니메이션 */
	margin: 0 auto; /* 가로 중앙 정렬 */
}

.review_home_loading-text {
	font-size: 15px;
	color: #2571fe;
	display: block;
	margin-top: 13px; /* 스피너와의 간격 */
	font-weight: 500;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

/********************************/
/****** 여기서 리뷰홈 배너 css 시작 ******/
/********************************/

/* 배너 영역을 물결 잘리는 영역으로 */
.review_home_container_banner {
	position: relative;
	width: 100%;
    max-height: 350px;
    border-radius: 20px 20px 0 0;
}

/* 배너 이미지 꽉 채우기 */
.review_home_container_content_banner_img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top right;
	display: flex;

    opacity: 0;
    transition: opacity 0.5s ease;
}

.review_home_container_content_banner_img.show {
	animation: FadeIn 0.5s ease-out forwards;
}

.review_home_container_content_banner_img.hide {
	animation: FadeOut 0.5s ease-out forwards;
}

/* 물결 SVG */
.review_home_container_banner_wave {
	position: absolute;
	left: -160px;
	bottom: -49px;
	width: 114%;
	height: 311px;
	pointer-events: none;
	transform-origin: bottom center;        /* 🔥 바닥선 고정 */
	transform: scaleY(0.2) scaleX(1.17);   /* 처음엔 납작하게 */
}

/* 배너가 show될 때 wave 연출 */
.review_home_container_banner_wave {
	animation:
		review_home_wave_grow 0.95s cubic-bezier(0.16, 1, 0.3, 1) forwards,
		review_home_wave_float 5s 1s ease-in-out infinite alternate;
}

/* 1) 등장: 아래에서 곡선이 자라나는 느낌 */
@keyframes review_home_wave_grow {
	0% {
		opacity: 0;
		transform: scaleY(0.2) scaleX(1.17);
	}
	60% {
		opacity: 1;
		transform: scaleY(1) scaleX(1.17);  /* 살짝 오버슈트 */
	}
	100% {
		opacity: 1;
		transform: scaleY(1) scaleX(1.17);
	}
}

/* 2) 이후: 아주 살짝 위아래로 떠다니는 느낌 (이미지랑 콜라보) */
@keyframes review_home_wave_float {
	0% {
		transform: translateY(0)   scaleY(1)   scaleX(1.17);
	}
	50% {
		transform: translateY(-4px) scaleY(1.025) scaleX(1.17);
	}
	100% {
		transform: translateY(0)   scaleY(1)   scaleX(1.17);
	}
}

/********************************/
/****** 여기서 리뷰홈 탑 css 시작 ******/
/********************************/

.review_home_container_top {
	display: flex;
	z-index: 2;
}

.review_home_container_top_left {
    flex: 0 0 50%;
    position: relative;
    top: -35px;
    min-height: 243px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review_home_container_top_left_profile {
	display: flex;
	gap: 20px;
}

.review_home_container_top_left_profile_picture {
	width: 100px;             /* 필요하면 조절 */
	height: 100px;
	border-radius: 50%;
	padding: 5px;            /* 외곽선과 이미지 간격 */
	background-color: transparent;
	border: 1px solid #d3d3d3;   /* 점선 원 (사진처럼 연녹색 계열) */
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.review_home_container_top_left_profile_picture_img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 50%;      /* 둥글게 */
}

.review_home_container_top_left_profile_title {
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	justify-content: center;
	gap: 7px;
}

.review_home_container_top_left_profile_title_name {
	font-size: 17px;
	font-weight: 500;
}

.review_home_container_top_left_profile_title_name_text {

}

.review_home_container_top_left_profile_title_phone {
	font-size: 14.5px;
	font-weight: 500;
	color: #42a0d9;
}

.review_home_container_top_left_profile_title_phone_text {

}

.review_home_container_top_left_profile_picture,
.review_home_container_top_left_profile_title_name,
.review_home_container_top_left_profile_title_phone {
	opacity: 0;
	transform: translateX(0); /* 초기 상태로 리셋 */
	animation-fill-mode: forwards;
}

/* 왼쪽 → 오른쪽 */
.review_home_container_top_left_profile_picture.show,
.review_home_container_top_left_profile_title_name.show,
.review_home_container_top_left_profile_title_phone.show {
	animation: slideFadeInLeftToRight 0.5s ease-out forwards;
}

.review_home_container_top_left_introduce {
	width: 410px;
	line-height: 1.5;
	word-break: keep-all;

    opacity: 0;
    transition: opacity 0.5s ease;
}

.review_home_container_top_left_introduce.show {
    animation: slideFadeInDownToUp20 0.8s ease-out forwards;
}

.review_home_container_top_left_introduce_null {
	font-size: 12.5px;
    color: #c7c7c7;
}

.review_home_container_top_left_introduce_text_wrapper {
	overflow: hidden;
	transition: max-height 0.2s ease;
}

.review_home_container_top_left_introduce_text_wrapper.collapsed {
	max-height: 88px; /* 22px × 4줄 */
}

.review_home_container_top_left_introduce_text {
    font-size: 14.5px;
    color: #333;
    line-height: 22px;
    letter-spacing: -0.2px;
}

.review_home_container_top_left_introduce_more {
    font-size: 13px;
    font-weight: 600;
    color: #3171f6;
    text-align: left;
    margin-top: 12px;
    cursor: pointer;
    user-select: none;
}
.review_home_container_top_left_introduce_more_img {
	width: 12px;
	height: 12px;
}

/* 오른쪽 전체 래퍼 */
.review_home_container_top_right {
	width: 100%;
	display: flex;
	padding: 0px 12px 40px 12px;
	align-items: center;
	justify-content: space-between;
	align-content: center;
	flex-direction: row;
}

/* 각 항목 래퍼 (세로 정렬) */
.review_home_container_top_right_contents {
	display: flex;
	flex-direction: column;
	align-items: center;
}

/* 타이틀 텍스트 */
.review_home_container_top_right_contents_title {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 10px;

	opacity: 0;
	transform: rotateX(180deg);
	transform-origin: center;
	backface-visibility: hidden;
	animation-fill-mode: forwards;
}

.review_home_container_top_right_contents_title.show {
	animation: rotateFadeInX 0.8s ease-out forwards;
}

/* 공통 원 스타일 */
.review_home_container_top_right_contents_circle {
	width: 87px;
	height: 85px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 25px;
	font-weight: 700;
	box-shadow: 2px 3px 4px rgb(0 0 0 / 15%);
	position: relative;
    white-space: nowrap; 
    font-family: 'static_b', sans-serif !important;

	opacity: 0;
	transform: translateX(0); /* 초기 상태로 리셋 */
	animation-fill-mode: forwards;
}

.review_home_container_top_right_contents_circle.show {
	animation: slideFadeInLeftToRight 0.5s ease-out forwards;
}

/* 숫자 뒤에 + 붙이기 */
.review_home_container_top_right_contents_circle::after {
	content: "+";
	margin-left: 2px;
	font-size: 15px;
	font-weight: 600;
}

/* 1: 리뷰수 – 빨강 */
.review_home_container_top_right_contents:nth-child(1) .review_home_container_top_right_contents_circle {
	background: #ff6350;
}
.review_home_container_top_right_contents:nth-child(1) .review_home_container_top_right_contents_title {
	color: #ff6350;
}

/* 2: 조회수 – 초록 */
.review_home_container_top_right_contents:nth-child(2) .review_home_container_top_right_contents_circle {
	background: #27b18a;
}
.review_home_container_top_right_contents:nth-child(2) .review_home_container_top_right_contents_title {
	color: #27b18a;
}

/* 3: 광고매물 – 파랑 */
.review_home_container_top_right_contents:nth-child(3) .review_home_container_top_right_contents_circle {
	background: #4f91ff;
}
.review_home_container_top_right_contents:nth-child(3) .review_home_container_top_right_contents_title {
	color: #4f91ff;
}

/* 4: 거래완료 – 노랑 */
.review_home_container_top_right_contents:nth-child(4) .review_home_container_top_right_contents_circle {
	background: #f6c64a;
}
.review_home_container_top_right_contents:nth-child(4) .review_home_container_top_right_contents_title {
	color: #f6c64a;
}

/********************************/
/****** 여기서 리뷰홈 점수 차트 css 시작 ******/
/********************************/	

.review_home_container_content {
	display: flex;
	flex-direction: column;
	padding: 0px 50px 37px 50px;
}

.review_home_container_bottom {
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.review_home_container_bottom_score_chart {
	flex: 0 0 30%;
}

/* ===== 점수 차트 영역 ===== */

.review_home_container_bottom_score_chart_container {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* 상단: 평균점수 + 별 */
.review_home_container_bottom_score_chart_top {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 2px;
}

.review_home_container_bottom_score_chart_average {
	font-size: 42px;      /* 숫자 크게 */
	font-weight: 700;
	color: #333333;
	width: 68px;

    opacity: 0;
}

.review_home_container_bottom_score_chart_average.show {
	animation: FadeIn 1s ease-out forwards;
}

/* 별 영역 */
.review_home_container_bottom_score_chart_stars {
	position: relative;
	display: inline-block;
	width: 205px;
	height: 43px;         /* 별 세로 크기 */
}

.review_home_container_bottom_score_chart_star_base,
.review_home_container_bottom_score_chart_star_fill {
	/*font-family: 'BSB', sans-serif !important;*/
	position: absolute;
	top: 0;
	left: 0;
	white-space: nowrap;
	font-size: 35px;      /* ★ 별 크기 확 키움 */
	line-height: 1;
	letter-spacing: 0.2em;
}

.review_home_container_bottom_score_chart_star_base {
	color: #e0e0e0;       /* 회색 별 */
	z-index: 1;

	opacity: 0;
	transform: rotateX(180deg);
	transform-origin: center;
	backface-visibility: hidden;
	animation-fill-mode: forwards;
}

.review_home_container_bottom_score_chart_star_base.show {
	animation: rotateFadeInX 0.8s ease-out forwards;
}

.review_home_container_bottom_score_chart_star_fill {
	color: #ffd83a;       /* 노란 별 */
	overflow: hidden;
	z-index: 2;

	opacity: 0;
	transform: rotateX(180deg);
	transform-origin: center;
	backface-visibility: hidden;
	animation-fill-mode: forwards;
}

.review_home_container_bottom_score_chart_star_fill.show {
	animation: rotateFadeInX 0.8s ease-out forwards;
}

/* 하단 전체 래퍼: 축 + 막대  */
.review_home_container_bottom_score_chart_bottom {
	display: flex;
	margin-top: 12px;
}

/* 왼쪽 세로 축 (4단계) */
.review_home_container_bottom_score_chart_axis {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
	font-size: 10px;
	color: #999999;
	margin-right: 6px;
	height: 130px;        /* 막대 영역과 동일 높이 */
	padding-top: 4px;
	padding-bottom: 2px;
}

.review_home_container_bottom_score_chart_axis_item {
	line-height: 1;
}

/* 막대 + 가로선 영역 전체 */
.review_home_container_bottom_score_chart_bars_wrapper {
	position: relative;
	flex: 1;
	height: 130px;        /* 축과 정확히 동일 */
	display: flex;
	align-items: flex-end;
	padding-bottom: 4px;
	border-bottom: 2px solid #e64545; /* 맨 아래 진한 0선 */

	/* 위 3개 가로선: top / 2/3 / 1/3 위치에 정확히 그림 */
	background-image:
		linear-gradient(to right, #f5a4a4 0, #f5a4a4 100%),  /* 최상단 */
		linear-gradient(to right, #f5a4a4 0, #f5a4a4 100%),  /* 중간 */
		linear-gradient(to right, #f5a4a4 0, #f5a4a4 100%);  /* 하단(0 바로 위) */
	background-repeat: no-repeat;
	background-size: 100% 1px;
	background-position:
		0 12%,          /* 최상단 라인 → 축의 최상단 값과 정렬 */
		0 40%,     /* 2/3 지점 */
		0 70%;     /* 1/3 지점 */
}

/* 실제 막대들이 들어갈 영역 */
.review_home_container_bottom_score_chart_bars {
    position: absolute;
    bottom: -20px;
    display: flex;
    flex: 1;
    justify-content: space-between;
    align-items: flex-end;
    height: 157px;
    width: 100%;
    padding: 0px 15px;
}

/* 각 점수(5점, 4점...) 하나 */
.review_home_container_bottom_score_chart_bar_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 11px;
	color: #666666;
	height: 100%;
}

/* 숫자 "152건" 같은 부분 */
.review_home_container_bottom_score_chart_bar_count {
	margin-bottom: 4px;
	color: #555555;
}

/* 막대 배경 (옅은 기둥) */
.review_home_container_bottom_score_chart_bar_outer {
	position: relative;
	width: 26px;
	height: 100%;                                /* 막대 전체 높이 = 회색 기둥 높이 */
	border-top-right-radius: 5px;
	border-top-left-radius: 5px;
    /* 🔻 기존보다 훨씬 눈에 보이게 회색 기둥 */
	overflow: hidden;
	background-color: rgb(149 149 149 / 6%);
	display: flex;
	align-items: flex-end;                      /* 아래에서부터 빨간 막대 채우기 */
}

/* 실제 빨간 막대 */
.review_home_container_bottom_score_chart_bar_inner {
	width: 100%;
	background-color: #e64545;
	border-radius: 4px 4px 0 0;

	transform: translateY(100%);
	transition: all 1.5s ease;
}

.review_home_container_bottom_score_chart_bar_inner.show {
	animation: slideDownToUp 1.5s ease-out forwards;
}

/* "5점" 이런 라벨 */
.review_home_container_bottom_score_chart_bar_label {
	margin-top: 5px;
	font-weight: 500;
}

/********************************/
/****** 여기서 리뷰홈 태그 차트 css 시작 ******/
/********************************/			

.review_home_container_bottom_tag_chart {
	display: flex;
	flex-direction: column;
	flex: 0 0 30%;
	gap: 15px;
}

.review_home_container_bottom_tag_chart_title {
	display: flex;
	flex-direction: row;
	/* align-content: center; */
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	font-size: 17px;
	font-weight: 500;
}

.review_home_container_bottom_tag_chart_title_icon {
	width: 28px;
	height: 28px;

	opacity: 0;
	transition: opacity 0.5s ease;
}

.review_home_container_bottom_tag_chart_title_span {
	opacity: 0;
	transition: opacity 0.5s ease;
    font-family: 'basic_r', sans-serif;
}

.review_home_container_bottom_tag_chart_title_icon.show,
.review_home_container_bottom_tag_chart_title_span.show {
	animation: slideFadeInLeftToRight 0.5s ease-out forwards;
}

.review_home_container_bottom_tag_chart_container {
	display: flex;
	height: 100%;
	flex-direction: column;
	gap: 6px;
}

/* 각 태그 막대 전체 래퍼 */
.review_home_container_bottom_tag_chart_row_wrapper {
	position: relative;
	height: 36px;
	border-radius: 8px;
	overflow: hidden;
	font-size: 13px;
	background-color: #f7f7f7;

	opacity: 0;
	transform: rotateX(180deg);
	transform-origin: center;
	backface-visibility: hidden;
	animation-fill-mode: forwards;
}

.review_home_container_bottom_tag_chart_row_wrapper.show {
	animation: rotateFadeInX 0.8s ease-out forwards;
}

/* 실제 컬러 막대 (백그라운드) */
.review_home_container_bottom_tag_chart_row_bar {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	border-radius: 8px;
	opacity: 0.9;

	transform: translateX(-100%);
	transition: all 1.5s ease;
}

.review_home_container_bottom_tag_chart_row_bar.show {
	animation: slideLeftToRight 1.5s ease-out forwards;
}

/* 내용 레이어 (텍스트/아이콘/숫자) */
.review_home_container_bottom_tag_chart_row_content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 12px;
	height: 100%;
	color: #333;
}

.review_home_container_bottom_tag_chart_row_left {
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 80%;
}

.review_home_container_bottom_tag_chart_row_icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.review_home_container_bottom_tag_chart_row_text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.review_home_container_bottom_tag_chart_row_right {
	font-weight: 600;
	color: #c54848;
	flex-shrink: 0;
	margin-left: 8px;
}

/* 태그가 하나도 없을 때 */
.review_home_container_bottom_tag_chart_container_none {
	display: flex;
    height: 100%;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #cfcfcf;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;

	opacity: 0;
	transition: opacity 0.5s ease;
}

.review_home_container_bottom_tag_chart_container_none.show {
	animation: slideFadeInLeftToRight 0.5s ease-out forwards;
}

.review_home_container_bottom_tag_chart_container_none_icon {
	width: 65px;
	opacity: 0.95;
}

/********************************/
/****** 여기서 리뷰홈 갤러리 css 시작 ******/
/********************************/

.review_home_container_bottom_gallery {
	display: flex;
    flex-direction: column;
	flex: 0 0 30%;
	gap: 15px;
}

.review_home_container_bottom_gallery_top {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.review_home_container_bottom_gallery_top_title {
	display: flex;
	flex-direction: row;
	/* align-content: center; */
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	font-size: 17px;
	font-weight: 500;
}

.review_home_container_bottom_gallery_top_title_icon {
	width: 28px;
	height: 28px;

	opacity: 0;
	transition: opacity 0.5s ease;
}

.review_home_container_bottom_gallery_top_title_span {
	opacity: 0;
	transition: opacity 0.5s ease;
    font-family: 'basic_r', sans-serif;
}

.review_home_container_bottom_gallery_top_title_icon.show,
.review_home_container_bottom_gallery_top_title_span.show {
	animation: slideFadeInLeftToRight 0.5s ease-out forwards;
}

.review_home_container_bottom_gallery_top_controller {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 6px;
}

.review_home_container_bottom_gallery_top_controllers {
	border: solid 1px #ededed;
	border-radius: 8px;
	padding: 4px 8px;
	cursor: pointer;

	opacity: 0;
	transform: translateX(0); /* 초기 상태로 리셋 */
	animation-fill-mode: forwards;
}

/* 왼쪽 → 오른쪽 */
.review_home_container_bottom_gallery_top_controllers.con1.show {
	animation: slideFadeInLeftToRight 0.3s ease-out forwards;
}

/* 오른쪽 → 왼쪽 */
.review_home_container_bottom_gallery_top_controllers.con2.show {
	animation: slideFadeInRightToLeft 0.3s ease-out forwards;
}

.review_home_container_bottom_gallery_top_controllers:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transform: translateY(-1px);
}

.review_home_container_bottom_gallery_top_controllers_prev_icon {
	width: 8px;
}

.review_home_container_bottom_gallery_top_controllers_next_icon {
	width: 8px;
}

.review_home_container_bottom_gallery_bottom {
	height: 100%;
}

.review_home_container_bottom_gallery_content {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	font-size: 13px;
	background-color: #f7f7f7;
	padding: 8px;

	opacity: 0;
	transition: opacity 0.5s ease;
}

.review_home_container_bottom_gallery_content.show {
	animation: slideFadeInLeftToRight 0.5s ease-out forwards;
}

.review_home_container_bottom_gallery_contents {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	position: relative;
	border-radius: 8px;
	overflow: hidden;
	font-size: 13px;
	background-color: #ffffff;
}

.review_home_container_bottom_gallery_contents_null {
	font-size: 12.5px;
	color: #c7c7c7;
}

/********************************/
/****** 여기서 리뷰홈 카테고리 css 시작 ******/
/********************************/

.review_home_container_category {
    width: 100%;    
	margin-top: 65px;
}

/* 탭 영역 */
.review_home_container_category_tabs {
	position: relative;
	display: flex;
	align-items: center;
	gap: 32px;
	padding: 0 24px;
	height: 48px;
	font-size: 15px;
	color: #555;
}

/* 각 탭 */
.review_home_container_category_tab {
	position: relative;
	cursor: pointer;
	padding: 0 2px 10px 2px;
	white-space: nowrap;

	opacity: 0;
	transform: translateX(0); /* 초기 상태로 리셋 */
	animation-fill-mode: forwards;
}

.review_home_container_category_tab.show {
	animation: slideFadeInLeftToRight 0.5s ease-out forwards;
}

.review_home_container_category_tab_active {
	font-weight: 600;
	color: #222;
}

/* 검은 밑줄 */
.review_home_container_category_tab_underline {
	position: absolute;
	bottom: 0;
	height: 3px;
	background-color: #222;
	border-radius: 999px;
	width: 0;
	left: 0;
	transition:
		left 0.25s ease,
		width 0.25s ease,
		all 0.5s ease; 

	opacity: 0;
	transform: translateX(100%);
	/*transition: all 1.5s ease;*/
}

.review_home_container_category_tab_underline.show {
	animation: slideFadeInRightToLeft100 0.5s ease-out forwards;
}

/* 콘텐츠 영역 전체 (흰 박스) */
.review_home_container_category_content_wrapper {
	position: relative;
	margin-top: 22px;
	padding: 0 24px 24px 24px;
	box-sizing: border-box;

	/* 높이 애니메이션 */
	height: 740px;
	transition: 
		height 0.25s ease,
		all 1.0s ease; 

	opacity: 0;
	transform: translateX(-100%);
	/*transition: all 1.5s ease;*/
}

.review_home_container_category_content_wrapper.show {
	animation: slideFadeInLeftToRight 0.5s ease-out forwards;
}

/* 실제 흰 박스 */
.review_home_container_category_content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 20px 30px 20px;
	height: 730px; /* 기본 보여줄 최소 공간, 필요하면 조절 */
	background-color: #fff;
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	box-sizing: border-box;
	opacity: 0;
	
	overflow-x: hidden;
	overflow-y: hidden;

	transform: translateX(100%);
	pointer-events: none;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

/* 활성화된 상태(기본은 소개 탭) */
.review_home_container_category_content_active {
	opacity: 1;
	transform: translateX(0);
	pointer-events: auto;
}

/* 오른쪽으로 이동(소개 → 리뷰, 리뷰 → 광고중인 매물 등) */
.review_home_container_category_content_enter_from_right {
	transform: translateX(100%);
}
.review_home_container_category_content_leave_to_left {
	transform: translateX(-100%);
	opacity: 0;
}

/* 왼쪽으로 이동(광고중인 매물 → 리뷰, 리뷰 → 소개 등) */
.review_home_container_category_content_enter_from_left {
	transform: translateX(-100%);
}
.review_home_container_category_content_leave_to_right {
	transform: translateX(100%);
	opacity: 0;
}

/********************************/
/****** 여기서 리뷰홈 소개글 정의 css 시작 ******/
/********************************/

.review_home_container_category_content_intro_none {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #cfcfcf;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
}

.review_home_container_category_content_intro_none_icon {
	width: 75px;
    opacity: 0.75;
}

/*====================================*/
/****** 소개글 관련 css 시작 ******/
/*====================================*/

/* WYSIWYG 루트 */
.toastui-editor-contents.review_intro_align_root {
  display: flex;
  flex-direction: column;
}

/* 좌/중/우 */
.toastui-editor-contents.review_intro_align_left  { align-items: flex-start; text-align: left; }
.toastui-editor-contents.review_intro_align_center{ align-items: center;     text-align: center; }
.toastui-editor-contents.review_intro_align_right { align-items: flex-end;   text-align: right; }

/* ✅ 중요: 블록들이 100% 폭이라 align-items가 안 먹는 경우가 있음 → 폭을 내용에 맞게 */
.toastui-editor-contents.review_intro_align_root > * {
  width: fit-content;
  max-width: 100%;
}

/* 블록 안에서 줄바꿈/긴 문장 깨짐 방지 */
.toastui-editor-contents.review_intro_align_root > * {
  word-break: break-word;
  overflow-wrap: anywhere;
}

.toastui-editor-contents p {
    margin: 5px 0 !important;
}

.review_intro_editor_video_upload_box {
	width: 100%;
	display: flex;
	justify-content: center;
	margin: 10px 0;
}

.review_intro_editor_video_upload_box video {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
}

.review_intro_editor_video_box {
	display: block;
	height: 315px;
}

/********************************/
/****** 여기서 리뷰홈 리뷰들 필터 정의 css 시작 ******/
/********************************/
/* 리뷰 / 매물 필터 래퍼 : 우측 정렬 */
.review_home_container_category_content_review_filter {
	position: absolute;
	right: -30px;
	bottom: -15px;
	display: flex;
	justify-content: flex-end;
	padding: 0 35px 8px; /* 리스트 패딩이 20px 35px 이라 맞춰줌 */
}

/* 필터 버튼 자체 */
.review_home_container_category_content_review_filter_button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px 7px 12px;
	border-radius: 999px;
	border: none;
	background: #111111;
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;

	opacity: 0;
	transform: translateX(0); /* 초기 상태로 리셋 */
	animation-fill-mode: forwards;
}

.review_home_container_category_content_review_filter_button.show {
	animation: slideFadeInRightToLeft 0.3s ease-out forwards;
}

/* 살짝 호버 효과 */
.review_home_container_category_content_review_filter_button:hover {
	background: #000000;
}

/* 아이콘 동그라미 영역 */
.review_home_container_category_content_review_filter_button_icon {
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* 텍스트 */
.review_home_container_category_content_review_filter_button_text {
	font-size: 12px;
}

.review_home_container_category_content_review_filter_dropdown_absolute {
	position: absolute;
    right: 0px;
    bottom: -137px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 14px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	z-index: 12;
	min-width: calc(160px * var(--size));
	animation: dropdownSlide 0.2s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes dropdownSlide {
	from {
		opacity: 0;
		transform: translateY(-8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.review_home_container_category_content_review_filter_dropdown_column {
	display: flex;
	flex-direction: column;
	padding: 8px 0;
}

.review_home_container_category_content_review_filter_dropdown_column:last-child {
	margin-right: 0;
}

.review_home_container_category_content_review_filter_dropdown_item {
	padding: 10px 16px;
	font-size: calc(12px * var(--size));
	color: #222;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.review_home_container_category_content_review_filter_dropdown_item:hover {
	background-color: rgba(0, 0, 0, 0.06);
	color: #111;
	font-weight: 500;
	border-left: 3px solid #111;
}

.review_home_container_category_content_review_filter_dropdown_item.selected {
	color: #000;
	font-weight: 600;
	position: relative;
}

/* 선택된 항목 왼쪽에 강조선 */
.review_home_container_category_content_review_filter_dropdown_item.selected::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: #111;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

/* 비활성화 스타일 */
.review_home_container_category_content_review_filter_dropdown_item.disabled {
	color: #aaa;
	cursor: default;
	pointer-events: none;
	background-color: transparent;
	font-weight: normal;
}

/* hover 시에도 아무 반응 없음 (선택자 우선순위로 재차 방지) */
.review_home_container_category_content_review_filter_dropdown_item.disabled:hover {
	background-color: transparent;
	border-left: none;
}

/********************************/
/****** 여기서 리뷰홈 리뷰들 정의 css 시작 ******/
/********************************/

.review_home_container_category_content_review_none {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #cfcfcf;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
}

.review_home_container_category_content_review_none_icon {
	width: 75px;
    opacity: 0.75;
}

/* 리뷰 리스트 전체 영역 */
.review_home_container_category_content_review_list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* 리뷰 카드 */
.review_home_container_review_item {
	background: #ffffff;
	border-radius: 16px;
	border: 1px #f1f1f1 solid;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	padding: 20px 24px 22px;

	opacity: 0;
	transition: opacity 0.4s ease;
}

.review_home_container_review_item.show {	
	animation: slideFadeInDownToUp30 0.4s ease-out forwards;
}

/* 상단 프로필 + 더보기 */
.review_home_container_review_item_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.review_home_container_review_item_profile {
	display: flex;
	align-items: center;
	gap: 10px;
}

.review_home_container_review_item_profile_icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.review_home_container_review_item_profile_icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review_home_container_review_item_profile_info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.review_home_container_review_item_profile_name {
	font-size: 14px;
	font-weight: 600;
	color: #222222;
}

.review_home_container_review_item_profile_date {
	font-size: 12px;
	color: #999999;
}

/* 평점 라인 */
.review_home_container_review_item_rating_row {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 4px 0 10px;
}

.review_home_container_review_item_rating_stars {
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 17px;
}

.review_home_container_review_item_rating_star {
	font-family: 'BSB', sans-serif !important;
	color: #ffb400;
}

.review_home_container_review_item_rating_score {
	font-size: 20px;
	font-weight: 700;
	color: #222222;
}

/* 별점 / 리뷰 수 라인 */
.review_home_container_review_item_rating_row_stats {
	display: flex;
    gap: 5px;
    align-items: center;
    font-size: 11px;
    color: #999999;
    margin-left: 5px;
}

.review_home_container_review_item_rating_row_stats_average_score {

}

.review_home_container_review_item_rating_row_stats_average_score_span {
	font-weight: 600;
}

.review_home_container_review_item_rating_row_stats_counts {

}

.review_home_container_review_item_rating_row_stats_counts_span {
	font-weight: 600;
}

/* 태그(응답이 빨라요 등) */
.review_home_container_review_item_tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}

.review_home_container_review_item_tag {
	display: inline-flex;
	align-items: center;
	padding: 5px 10px 5px 7px;
	border-radius: 999px;
	background: #f5f7fb;
	font-size: 12px;
	color: #555555;
}

.review_home_container_review_item_tag_icon {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 4px;
}

.review_home_container_review_item_tag_icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review_home_container_review_item_tag_text {
	white-space: nowrap;
}

/* 본문 */
.review_home_container_review_item_body {
	font-size: 13px;
	line-height: 1.6;
	color: #444444;
	margin-top: 4px;
    word-break: break-all;
}

/* 본문 더보기 줄이기 */
.review_home_container_review_item_body_text_wrapper {
	overflow: hidden;
	transition: max-height 0.2s ease;
}

.review_home_container_review_item_body {
	display: block;
}

.review_home_container_review_item_body_more {
    display: inline-flex;
    width: 100%;
    align-items: center;
    font-size: 11px;
    font-weight: 500;
    color: #999999;
    margin-top: 12px;
    cursor: pointer;
    gap: 4px;
    user-select: none;
    justify-content: flex-end;
}
.review_home_container_review_item_body_more_img {
	width: 12px;
	height: 12px;
}

/* 답글 박스 */
.review_home_container_review_item_reply {
	margin-top: 14px;
	padding: 14px 16px;
	background: #f7f7f8;
	border-radius: 12px;
}

.review_home_container_review_item_reply_top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
}

.review_home_container_review_item_reply_profile {
	display: flex;
	align-items: center;
	gap: 8px;
}

.review_home_container_review_item_reply_profile_picture {
	position: relative;
	bottom: 2px;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	overflow: hidden;
	background: #e4e4e7;
	display: flex;
	align-items: center;
	justify-content: center;
}

.review_home_container_review_item_reply_profile_picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.review_home_container_review_item_reply_profile_info {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.review_home_container_review_item_reply_name {
	font-size: 13px;
	font-weight: 600;
	color: #222222;
}

.review_home_container_review_item_reply_class {
	position: relative;
    font-size: 10.5px;
    font-weight: 400;
    color: #9b9b9b;
    margin-left: 6px;
    bottom: 2.3px;
}

.review_home_container_review_item_reply_date {
	font-size: 11px;
	color: #9b9b9b;
}

.review_home_container_review_item_reply_body {
	font-size: 13px;
	line-height: 1.6;
	color: #444444;
    word-break: break-all;
}

/********************************/
/****** 리뷰홈 리뷰들 햄버거 관련 정의 css 시작 ******/
/********************************/

/* 드롭다운 컨테이너 (위치 기준점) */
.review_home_container_review_item_more {
    position: relative;
    display: inline-block;
}

/* 햄버거 버튼 */
.review_home_container_review_item_more_btn {
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #999;
    padding: 0 5px;
}

/* 드롭다운 패널 */
.review_home_container_review_item_more_dropdown {
    display: none;
    position: absolute;
    top: 25px;
    right: 0px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 100;
    min-width: 120px;
    animation: reviewDropdownSlide 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* 활성화 시 표시 */
.review_home_container_review_item_more_dropdown.active {
    display: block;
}

/* 애니메이션 */
@keyframes reviewDropdownSlide {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 드롭다운 내부 컬럼 */
.review_home_container_review_item_more_dropdown_column {
    display: flex;
    flex-direction: column;
    padding: 4px 0;
}

/* 드롭다운 아이템 */
.review_home_container_review_item_more_dropdown_item {
    padding: 10px 16px;
    font-size: 11px;
	color: #222;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s ease, color 0.15s ease;
}

.review_home_container_review_item_more_dropdown_item:hover {
	background-color: rgba(0, 0, 0, 0.06);
	color: #111;
	font-weight: 500;
	border-left: 3px solid #111;
}

/********************************/
/****** 리뷰홈 매물 필터 정의 css 시작 ******/
/********************************/
/* 매물 필터 래퍼 : 우측 정렬 */
.review_home_container_category_content_sale_filter {
	position: absolute;
	right: -30px;
	bottom: -15px;
	display: flex;
	justify-content: flex-end;
	padding: 0 35px 8px;
}

/* 필터 버튼 자체 */
.review_home_container_category_content_sale_filter_button {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px 7px 12px;
	border-radius: 999px;
	border: none;
	background: #111111;
	color: #ffffff;
	font-size: 12px;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;

	opacity: 0;
	transform: translateX(0); /* 초기 상태로 리셋 */
	animation-fill-mode: forwards;
}

.review_home_container_category_content_sale_filter_button.show {
	animation: slideFadeInRightToLeft 0.3s ease-out forwards;
}

/* 호버 */
.review_home_container_category_content_sale_filter_button:hover {
	background: #000000;
}

/* 아이콘 */
.review_home_container_category_content_sale_filter_button_icon {
	width: 16px;
	height: 16px;
	align-items: center;
	justify-content: center;
	position: relative;
}

/* 텍스트 */
.review_home_container_category_content_sale_filter_button_text {
	font-size: 12px;
}

/* 드롭다운 */
.review_home_container_category_content_sale_filter_dropdown_absolute {
	position: absolute;
	right: 0px;
	bottom: -170px;
	background: rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	border-radius: 14px;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
	overflow: hidden;
	z-index: 12;
	min-width: calc(160px * var(--size));
	animation: dropdownSlide 0.2s ease;
	border: 1px solid rgba(0, 0, 0, 0.05);
}

.review_home_container_category_content_sale_filter_dropdown_column {
	display: flex;
	flex-direction: column;
	padding: 8px 0;
}

.review_home_container_category_content_sale_filter_dropdown_item {
	padding: 10px 16px;
	font-size: calc(12px * var(--size));
	color: #222;
	cursor: pointer;
	transition: background 0.15s ease, color 0.15s ease;
}

.review_home_container_category_content_sale_filter_dropdown_item:hover {
	background-color: rgba(0, 0, 0, 0.06);
	color: #111;
	font-weight: 500;
	border-left: 3px solid #111;
}

.review_home_container_category_content_sale_filter_dropdown_item.selected {
	color: #000;
	font-weight: 600;
	position: relative;
}

/* 선택된 항목 왼쪽에 강조선 */
.review_home_container_category_content_sale_filter_dropdown_item.selected::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 3px;
	background-color: #111;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}

/* 비활성화 스타일 */
.review_home_container_category_content_sale_filter_dropdown_item.disabled {
	color: #aaa;
	cursor: default;
	pointer-events: none;
	background-color: transparent;
	font-weight: normal;
}

.review_home_container_category_content_sale_filter_dropdown_item.disabled:hover {
	background-color: transparent;
	border-left: none;
}

/********************************/
/****** 여기서 리뷰홈 매물들 정의 css 시작 ******/
/********************************/

/* 광고중인 매물 리스트 전체 래퍼 */
.review_home_container_category_content_sale {
	padding: 24px 0 40px;
}

.review_home_container_category_content_sale_none {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #cfcfcf;
    padding: 5px 0;
    flex-direction: column;
    justify-content: center;
}

.review_home_container_category_content_sale_none_icon {
	width: 75px;
    opacity: 0.75;
}

.review_home_container_category_content_sale_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 25px;
	grid-row-gap: 39px;
	padding: 20px 35px 10px;
}

/* 매물 카드 */
.review_home_container_category_content_sale_item {
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	cursor: pointer;
	z-index: 2;

	opacity: 0;
	transition: transform 0.12s ease-out, box-shadow 0.12s ease-out, opacity 0.4s ease;
}

.review_home_container_category_content_sale_item.show {	
	animation: slideFadeInDownToUp30 0.4s ease-out forwards;
}

.review_home_container_category_content_sale_item:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* 썸네일 영역 (위쪽) */
.review_home_container_category_content_sale_item_thumb_wrapper {
	position: relative;
	width: 100%;
	padding-top: 66.6667%; /* 3:2 비율 */
	overflow: hidden;
}

.review_home_container_category_content_sale_item_thumb {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 좋아요 아이콘 */
.review_home_container_category_content_sale_item_like {
	position: absolute;
	right: 12px;
	top: 10px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	background-image: url(/images/estate_detail_check_off.png);
	background-size: cover;
	z-index: 2;
}

.review_home_container_category_content_sale_item_like.checked {
	background-image: url(/images/estate_detail_check_on.png);
}


.review_home_container_category_content_sale_item_play {
	position: absolute;
	right: 6px;
	bottom: 6px;
	width: calc(24px * var(--size));
	height: calc(24px * var(--size));
}


/* 카드 하단 텍스트 영역 */
.review_home_container_category_content_sale_item_body {
	padding: 15px 12px 20px;
}

.review_home_container_category_content_sale_item_price {
	font-size: 14px;
	font-weight: 700;
	color: #222222;
	margin-bottom: 9px;
}

.review_home_container_category_content_sale_item_addr {
	font-size: 12px;
	color: #666666;
	margin-bottom: 4px;
}

.review_home_container_category_content_sale_item_info {
	font-size: 11px;
	color: #909090;
}

