/* ==== guide-chauffeur-section TO-BE (2026-07 리뉴얼) ====
   기존 common.css는 무수정 — 신규 gct-* 클래스 + .tobe 오버라이드만 담는 별도 파일.
   6개 언어 콘텐츠(ko/en/jp/zh/tw/hk) 공용. HIS 타입은 .tobe 미부여로 기존 스타일 그대로.
   좌표 SOT: Figma "movv-guide-landing-info-chauffeur" 📄 GuideLanding [TO-BE] (2026-07-23 확정) */

.guide-chauffeur-section.tobe {
	background-color: #fff;
	/* 좌측 돌출 콜아웃(-216px)이 좁은 뷰포트에서 가로 스크롤을 만들지 않게 */
	overflow: hidden;
}
.guide-chauffeur-section.tobe .inner h2 {
	color: #252538;
}
.gct-wrap {
	position: relative;
	display: flex;
	gap: 45px;
	width: 795px;
	margin: 75px auto 0;
}
.gct-screen {
	width: 375px;
	flex-shrink: 0;
}
.gct-screen img {
	display: block;
	width: 100%;
}
.gct-callout {
	position: absolute;
	z-index: 10;
	box-sizing: border-box;
	background-color: #2073f7;
	color: #fff;
	border-radius: 25px;
	padding: 20px 24px;
	text-align: center;
	font-size: 14px;
	line-height: 1.6;
}
.gct-callout strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 6px;
}
.gct-callout::after {
	content: '';
	position: absolute;
	z-index: -1;
	width: 15px;
	height: 17px;
	bottom: -9px;
	background: url('../images/ic_bubble_tail_blue.svg') no-repeat center / contain;
}
.gct-callout.t-left::after {
	left: 45px;
}
.gct-callout.t-right::after {
	right: 45px;
	transform: scaleX(-1);
}
/* Figma TO-BE 확정 좌표 (화면 2개 묶음 좌상단 원점, 795×812 기준)
   — 세로는 bottom 앵커: 말풍선 높이가 텍스트 줄수·행간에 따라 변해도
     Figma와 동일하게 "바닥선" 정렬 유지 (photo·mylocation은 같은 선 169) */
.gct-callout.info { width: 209px; left: -216px; bottom: 699px; }
.gct-callout.location { width: 253px; left: 250px; bottom: 585px; }
.gct-callout.message { width: 208px; left: -141px; bottom: 246px; }
.gct-callout.photo { width: 244px; left: 287px; bottom: 169px; }
.gct-callout.mylocation { width: 328px; left: 678px; bottom: 169px; }

@media (max-width: 850px) {
	/* 기존 모바일 500vh 스티키 연출(.guide-chauffeur-section) 중화 — TO-BE는 세로 스택 */
	.guide-chauffeur-section.tobe {
		height: auto;
		padding: 80px 30px;
	}
	.guide-chauffeur-section.tobe .inner {
		position: static;
		height: auto;
		display: block;
		padding: 0;
	}
	.guide-chauffeur-section.tobe .inner h2 {
		color: #252538;
	}
	.gct-wrap {
		width: 100%;
		flex-direction: column;
		align-items: center;
		gap: 18px;
		margin-top: 30px;
	}
	.gct-callout {
		position: static;
		width: auto !important;
		max-width: 320px;
	}
	.gct-callout::after {
		left: 50% !important;
		right: auto !important;
		transform: translateX(-50%);
	}
	.gct-screen {
		width: min(300px, 100%);
	}
}
