/* ============================================================
 * Privato — home.css
 * Homepage-only sections: hero slider, intro band + service
 * icons, doctor grid, consult CTA, reviews carousel, About
 * banner, service rows, bridge banner.
 *
 * Ported verbatim from the inline <style> block of
 * HTML/Privato/home.html. `pc-*` class names and `--pc-*`
 * token references are preserved 1:1. Loaded only when
 * `is_front_page()` is true (see inc/enqueue.php).
 * ============================================================ */

/* ===== HERO SLIDER (section 1) ===== */
.pc-hero__slide {
	aspect-ratio: 12 / 5;
}

.pc-hero__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.pc-hero__slide a {
	display: block;
	width: 100%;
	height: 100%;
}

.pc-hero__dots {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 22px 0;
	background: var(--pc-cream);
	text-align: center;
}

.pc-hero__dots a {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	line-height: 0;
	color: transparent;
}

.pc-hero__dots a::before {
	content: "";
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .14);
	transition: background .35s ease, width .35s ease, opacity .35s ease;
}

.pc-hero__dots a:hover::before { background: rgba(0, 0, 0, .32); }

.pc-hero__dots a[aria-current="true"]::before {
	background: var(--pc-mocha-dk);
	width: 24px;
	border-radius: 3px;
}

@media (min-width: 768px) {
	.pc-hero__dots { gap: 12px; padding: 26px 0; }
	.pc-hero__dots a::before { width: 7px; height: 7px; }
	.pc-hero__dots a[aria-current="true"]::before { width: 28px; }
}

/* ===== INTRO + SERVICE ICON BAND (shared cream gradient bg) =====
 * Matches the live site: one continuous warm-cream section
 * that contains the "Innovation of Beauty" eyebrow, the "First
 * Class Service" Prata tagline, the Thai H1, and the row of 6
 * circular service tiles. */
.pc-intro-band {
	background: linear-gradient(180deg, var(--pc-peach-a) 0%, var(--pc-peach-b) 60%, var(--pc-peach-b) 100%);
	padding: 36px 20px 40px;
	text-align: center;
}

@media (min-width: 768px) {
	.pc-intro-band { padding: 56px 24px 64px; }
}

.pc-intro__eyebrow {
	font-size: 14px;
	font-weight: 400;
	color: var(--pc-mocha);
	letter-spacing: .3px;
	margin-bottom: 6px;
	font-family: "Noto Sans Thai", "Sarabun", sans-serif;
}

@media (min-width: 768px) {
	.pc-intro__eyebrow {
		font-size: 18px;
		letter-spacing: .5px;
		margin-bottom: 8px;
	}
}

.pc-intro__tagline {
	font-size: 30px;
	font-weight: 400;
	color: var(--pc-black);
	line-height: 1.1;
	letter-spacing: 0;
	margin-bottom: 12px;
	font-family: "Prata", Georgia, "Times New Roman", serif;
}

@media (min-width: 768px) {
	.pc-intro__tagline { font-size: 46px; margin-bottom: 18px; }
}

@media (min-width: 1280px) {
	.pc-intro__tagline { font-size: 54px; }
}

.pc-intro__h1 {
	font-size: 18px;
	font-weight: 400;
	color: var(--pc-black);
	max-width: 960px;
	margin: 0 auto;
	line-height: 1.45;
}

@media (min-width: 768px) {
	.pc-intro__h1 { font-size: 26px; line-height: 1.4; }
}

@media (min-width: 1280px) {
	.pc-intro__h1 { font-size: 30px; }
}

/* ===== SERVICE ICON TILES — inside the intro band ===== */
.pc-services-icons__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	padding: 36px 0 0;
	max-width: 1200px;
	margin: 0 auto;
}

@media (min-width: 640px) {
	.pc-services-icons__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		padding-top: 44px;
	}
}

@media (min-width: 1024px) {
	.pc-services-icons__grid {
		grid-template-columns: repeat(6, 1fr);
		gap: 16px;
		padding-top: 56px;
	}
}

.pc-services-icons__item {
	text-align: center;
	transition: transform .25s;
}

.pc-services-icons__item:hover { transform: translateY(-4px); opacity: 1; }
.pc-services-icons__item picture { display: block; }

.pc-services-icons__item img {
	width: 100%;
	height: auto;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.pc-services-icons__sub { display: none; }

/* ===== DERMATOLOGIST GRID (light editorial) ===== */
.pc-derm {
	padding: 56px 0 44px;
	background: var(--pc-ivory);
}

.pc-derm__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	padding: 0 12px;
}

/* Center a lone trailing card on the 2-col mobile grid
 * (7 doctors leaves 1 orphan). */
@media (max-width: 639px) {
	.pc-derm__grid > .pc-derm__card:last-child:nth-child(odd) {
		grid-column: 1 / -1;
		max-width: calc(50% - 6px);
		margin: 0 auto;
	}
}

@media (min-width: 640px) {
	.pc-derm__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 14px;
	}
}

@media (min-width: 1024px) {
	.pc-derm__grid {
		grid-template-columns: repeat(7, 1fr);
		gap: 16px;
		padding: 0 24px;
	}
}

.pc-derm__card {
	background: var(--pc-white);
	overflow: hidden;
	border: 1px solid var(--pc-line-warm);
	border-radius: 4px;
	transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.pc-derm__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 32px rgba(75, 55, 40, .12);
	border-color: rgba(155, 121, 73, .32);
}

.pc-derm__img {
	aspect-ratio: 3/4;
	background: var(--pc-white);
	overflow: hidden;
}

.pc-derm__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.pc-derm__info {
	padding: 12px 8px 16px;
	background: var(--pc-white);
	text-align: center;
}

.pc-derm__info strong {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--pc-black);
	line-height: 1.3;
}

.pc-derm__info small {
	display: block;
	font-size: 11px;
	color: var(--pc-muted);
	margin-top: 3px;
	line-height: 1.4;
}

@media (min-width: 768px) {
	.pc-derm__info strong { font-size: 15px; }
	.pc-derm__info small { font-size: 12px; }
}

/* ===== CONSULT CTA (doctor portrait + copy, no form) =====
 * 2-col at >=900px (portrait left, copy+CTAs right), stacked
 * on mobile. The portrait source already has a cream backdrop
 * baked into the JPG, so the panel renders at the image's
 * natural aspect ratio with no CSS aspect-ratio crop —
 * prevents the forehead/hair from being clipped by
 * `object-fit: cover`. `background: var(--pc-cream)` stays as
 * a safety fallback in case the image fails to decode. */
.pc-consult {
	padding: 40px 16px;
	background: var(--pc-white);
}

.pc-consult__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	max-width: 1040px;
	margin: 0 auto;
	align-items: center;
}

@media (min-width: 900px) {
	.pc-consult { padding: 56px 24px; }
	.pc-consult__grid {
		grid-template-columns: 380px 1fr;
		gap: 48px;
	}
}

.pc-consult__photo {
	background: var(--pc-cream);
	max-width: 260px;
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 6px;
	box-shadow: 0 1px 2px rgba(75, 55, 40, .05), 0 18px 40px rgba(75, 55, 40, .10);
	aspect-ratio: 4/5;
}

@media (min-width: 900px) {
	.pc-consult__photo { max-width: 380px; aspect-ratio: auto; }
}

.pc-consult__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

@media (min-width: 900px) {
	.pc-consult__photo img { height: auto; object-fit: initial; }
}

.pc-consult__body { text-align: center; }

@media (min-width: 900px) {
	.pc-consult__body { text-align: left; }
}

.pc-consult__body h2 {
	font-size: 24px;
	font-weight: 700;
	color: var(--pc-black);
	margin-bottom: 12px;
}

@media (min-width: 768px) {
	.pc-consult__body h2 { font-size: 30px; }
}

.pc-consult__body p {
	color: var(--pc-black);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 20px;
}

@media (min-width: 768px) {
	.pc-consult__body p { font-size: 16px; }
}

.pc-consult__cta-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

@media (min-width: 900px) {
	.pc-consult__cta-row { justify-content: flex-start; }
}

.pc-consult__cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 20px;
	border-radius: 999px;
	font-size: 14px;
	font-weight: 500;
	transition: background .2s, transform .2s, opacity .2s;
}

.pc-consult__cta--primary {
	background: var(--pc-mocha-dk);
	color: var(--pc-white);
}

.pc-consult__cta--primary:hover {
	background: var(--pc-mocha-dk-hover);
	transform: translateY(-1px);
	opacity: 1;
}

.pc-consult__cta--line {
	background: #067F37;
	color: var(--pc-white);
}

.pc-consult__cta--line:hover {
	background: #056D2F;
	transform: translateY(-1px);
	opacity: 1;
}

/* ----- Premium minimal trust caption + stat hairline strip ----- */
.pc-consult__caption {
	margin: 18px 0 0;
	font-size: 13px;
	color: var(--pc-muted);
	letter-spacing: 0;
	font-weight: 500;
	line-height: 1.7;
}

.pc-consult__caption span.item {
	display: inline-block;
	white-space: nowrap;
}

.pc-consult__caption .sep {
	display: inline-block;
	margin: 0 10px;
	color: var(--pc-mocha);
	opacity: .55;
}

@media (min-width: 768px) {
	.pc-consult__caption {
		font-size: 12px;
		letter-spacing: 1.5px;
		text-transform: uppercase;
	}
}

.pc-consult__hairline {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 36px 0 0;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 900px) {
	.pc-consult__hairline { margin-left: 0; margin-right: 0; }
}

.pc-consult__hairline::before,
.pc-consult__hairline::after {
	content: "";
	flex: 1;
	height: 1px;
	background: var(--pc-mocha);
	opacity: .35;
}

.pc-consult__hairline span {
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 14px;
	letter-spacing: 3px;
	color: var(--pc-mocha-dk);
	text-transform: uppercase;
	font-style: italic;
}

.pc-consult__stats {
	display: flex;
	align-items: stretch;
	gap: 0;
	margin: 24px 0 0;
	max-width: 480px;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 900px) {
	.pc-consult__stats { margin-left: 0; margin-right: 0; }
}

.pc-consult__stat {
	flex: 1;
	text-align: center;
	padding: 6px 10px;
	border-left: 1px solid var(--pc-line);
}

.pc-consult__stat:first-child { border-left: 0; }

.pc-consult__stat-num {
	display: block;
	font-family: "Cormorant Garamond", Georgia, serif;
	font-size: 32px;
	line-height: 1;
	color: var(--pc-mocha-dk);
	font-weight: 500;
	letter-spacing: .5px;
	white-space: nowrap;
}

.pc-consult__stat-num sup {
	font-size: .55em;
	font-weight: 400;
	top: -.6em;
}

@media (min-width: 768px) {
	.pc-consult__stat-num { font-size: 38px; }
}

.pc-consult__stat-label {
	display: block;
	margin: 8px 0 0;
	font-size: 10px;
	letter-spacing: .8px;
	text-transform: uppercase;
	color: var(--pc-muted);
	font-weight: 500;
	white-space: nowrap;
}

@media (min-width: 768px) {
	.pc-consult__stat-label {
		font-size: 11px;
		letter-spacing: 1.2px;
	}
}

/* ===== REVIEWS (luxury testimonial slider — portrait + program quote panel) =====
 * One card visible at a time, scroll-snap. Each card is a
 * 2-col split at >= 768px: square portrait left, cream-gradient
 * "program" panel right (PROGRAM eyebrow, large blue program
 * name, Thai quote, customer name). */
.pc-reviews {
	padding: 40px 0 0;
	background: var(--pc-cream-warm);
	position: relative;
	overflow: hidden;
}

@media (min-width: 768px) {
	.pc-reviews { padding: 56px 0 0; }
}

.pc-reviews__stage {
	position: relative;
	max-width: 1200px;
	margin: 0 auto;
}

.pc-reviews__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: rgba(255, 255, 255, .8);
	color: #555;
	font-size: 24px;
	line-height: 1;
	font-family: inherit;
	align-items: center;
	justify-content: center;
	display: none;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
	transition: background .2s, opacity .2s, transform .2s;
}

@media (min-width: 900px) {
	.pc-reviews__nav { display: flex; }
}

.pc-reviews__nav:hover {
	background: var(--pc-white);
	opacity: 1;
	transform: translateY(-50%) scale(1.04);
}

.pc-reviews__nav--prev { left: 12px; }
.pc-reviews__nav--next { right: 12px; }

@media (min-width: 1200px) {
	.pc-reviews__nav--prev { left: 28px; }
	.pc-reviews__nav--next { right: 28px; }
}

.pc-reviews__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.pc-reviews__track::-webkit-scrollbar { display: none; }

.pc-review-card {
	flex: 0 0 100%;
	scroll-snap-align: start;
	box-sizing: border-box;
}

.pc-review-card__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	padding: 0 16px;
}

@media (min-width: 768px) {
	.pc-review-card__inner {
		grid-template-columns: 1fr 1.15fr;
		padding: 0 56px;
	}
}

.pc-review-card__img {
	aspect-ratio: 1/1;
	position: relative;
	overflow: hidden;
	background: var(--pc-white);
	border-radius: 14px 14px 0 0;
}

@media (min-width: 768px) {
	.pc-review-card__img { border-radius: 14px 0 0 14px; }
}

.pc-review-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pc-review-card__body {
	background: linear-gradient(135deg, var(--pc-ivory) 0%, var(--pc-cream) 50%, var(--pc-ivory) 100%);
	padding: 32px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 0 0 14px 14px;
	box-shadow: 0 4px 18px rgba(155, 121, 73, .08);
}

@media (min-width: 768px) {
	.pc-review-card__body {
		padding: 48px 40px;
		border-radius: 0 14px 14px 0;
	}
}

@media (min-width: 1024px) {
	.pc-review-card__body { padding: 56px 56px; }
}

.pc-review-card__eyebrow {
	font-size: 12px;
	letter-spacing: 4px;
	color: #444;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.pc-review-card__eyebrow {
		font-size: 14px;
		margin-bottom: 14px;
	}
}

.pc-review-card__program {
	font-family: "Prata", Georgia, "Times New Roman", serif;
	font-size: 32px;
	font-weight: 400;
	color: var(--pc-blue);
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1.05;
	margin: 0 0 18px;
}

@media (min-width: 768px) {
	.pc-review-card__program {
		font-size: 46px;
		margin-bottom: 22px;
	}
}

@media (min-width: 1024px) {
	.pc-review-card__program { font-size: 56px; }
}

.pc-review-card__quote {
	font-size: 14px;
	line-height: 1.85;
	color: #222;
	margin: 0 0 20px;
}

@media (min-width: 768px) {
	.pc-review-card__quote {
		font-size: 15px;
		margin-bottom: 26px;
	}
}

.pc-review-card__name {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: var(--pc-black);
	margin: 0;
	font-style: normal;
}

@media (min-width: 768px) {
	.pc-review-card__name { font-size: 15px; }
}

.pc-reviews__dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 26px 16px;
	width: 100%;
	background: #F6E6C9;
}

.pc-reviews__dots a {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: transparent;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 0;
	line-height: 0;
	color: transparent;
}

.pc-reviews__dots a::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(0, 0, 0, .18);
	transition: background .35s ease, width .35s ease;
}

.pc-reviews__dots a:hover::before { background: rgba(0, 0, 0, .35); }

.pc-reviews__dots a[aria-current="true"]::before {
	background: var(--pc-mocha-dk);
	width: 26px;
	border-radius: 4px;
}

/* ===== ABOUT ("Innovation of Beauty" — cream
 * privato-innovation-banner.jpg banner, woman baked in) =====
 * Desktop section locks to privato-innovation-banner's native
 * 1920:540 aspect so object-fit:cover renders the image at its
 * real pixel size (woman stays small on the right edge). A
 * min-height floor prevents narrow desktops from clipping the
 * Thai paragraph. */
.pc-about {
	position: relative;
	background: #f6e6c9;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 28px 16px 36px;
	min-height: 340px;
	text-align: center;
}

/* Desktop: taller banner so the text has clear breathing room
 * above the H2 and below the paragraph (per design reference
 * — two "Space" zones). Grid 70% / 30% keeps the text column
 * inside the left cream zone so the woman baked into
 * privato-innovation-banner.jpg's right edge never collides
 * with the copy. */
@media (min-width: 768px) {
	.pc-about {
		padding: 36px 0;
		min-height: 500px;
		display: grid;
		grid-template-columns: 70% 30%;
		align-items: center;
	}
}

@media (min-width: 1280px) {
	.pc-about { min-height: 560px; padding: 48px 0; }
}

.pc-about__bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

.pc-about__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	display: block;
}

/* Nudge the BG crop left on desktop so the woman sits a touch
 * further inside the section (reveals a bit more of her) while
 * still clearing the text. */
@media (min-width: 768px) {
	.pc-about__bg img { object-position: 62% center; }
}

/* Mobile-only cream veil — crop lands near the woman, so lift
 * text contrast. */
.pc-about__bg::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(246, 230, 201, 0) 0%, rgba(246, 230, 201, .3) 100%);
	pointer-events: none;
}

@media (min-width: 768px) {
	.pc-about__bg::after { display: none; }
}

.pc-about__inner {
	position: relative;
	z-index: 2;
	max-width: 980px;
	margin: 0 auto;
	padding: 0 4px;
	text-align: center;
}

@media (min-width: 768px) {
	.pc-about__inner {
		grid-column: 1;
		max-width: 900px;
		margin: 0 auto;
		padding: 0 24px;
	}
}

.pc-about h2 {
	font-family: "Prata", Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 400;
	color: #1a1a1a;
	margin: 0 0 14px;
	letter-spacing: .3px;
	line-height: 1.25;
}

@media (min-width: 768px) {
	.pc-about h2 { font-size: 38px; margin-bottom: 20px; }
}

@media (min-width: 1280px) {
	.pc-about h2 { font-size: 46px; margin-bottom: 24px; }
}

.pc-about p {
	color: #1a1a1a;
	font-size: 15px;
	line-height: 1.9;
	margin: 0 auto;
	text-align: center;
}

@media (min-width: 768px) {
	.pc-about p { font-size: 15px; line-height: 1.95; }
}

@media (min-width: 1280px) {
	.pc-about p { font-size: 16px; }
}

/* ===== SERVICE BLOCKS — alternating image/text rows
 * (matches privatoclinic.com) ===== */
.pc-services {
	padding: 48px 0 32px;
	background: var(--pc-page);
}

.pc-services__head {
	text-align: center;
	max-width: 820px;
	margin: 0 auto 32px;
	padding: 0 20px;
}

.pc-services__head h2 {
	font-size: 22px;
	font-weight: 700;
	color: var(--pc-black);
	line-height: 1.5;
}

@media (min-width: 768px) {
	.pc-services { padding: 72px 0 56px; }
	.pc-services__head h2 { font-size: 26px; }
	.pc-services__head { margin-bottom: 48px; }
}

.pc-services__list {
	max-width: var(--pc-max);
	margin: 0 auto;
	padding: 0 20px;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

@media (min-width: 768px) {
	.pc-services__list { gap: 56px; padding: 0 40px; }
}

.pc-services__row {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}

@media (min-width: 768px) {
	.pc-services__row { flex-direction: row; gap: 48px; }
	.pc-services__row:nth-child(even) { flex-direction: row-reverse; }
}

.pc-services__img {
	width: 100%;
	max-width: 520px;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.pc-services__img { flex: 0 0 42%; max-width: none; }
}

.pc-services__img img {
	width: 100%;
	height: auto;
	aspect-ratio: 3/2;
	object-fit: cover;
	display: block;
	border-radius: 4px;
	box-shadow: 0 1px 2px rgba(75, 55, 40, .06), 0 12px 32px rgba(75, 55, 40, .14);
}

.pc-services__info {
	flex: 1;
	min-width: 0;
}

.pc-services__info h3 {
	font-family: "Prata", Georgia, "Times New Roman", serif;
	color: var(--pc-black);
	font-weight: 400;
	font-size: 28px;
	margin-bottom: 12px;
	letter-spacing: .3px;
	line-height: 1.2;
}

.pc-services__info p {
	color: var(--pc-black);
	font-size: 15px;
	line-height: 1.8;
}

@media (min-width: 768px) {
	.pc-services__info h3 { font-size: 36px; margin-bottom: 14px; }
	.pc-services__info p { font-size: 16px; }
}

/* ===== BRAND BRIDGE (mirrors live privatoclinic.com 973db84
 * slideshow) ===== */
.pc-bridge {
	position: relative;
	overflow: hidden;
	min-height: 550px;
	background: #f6e7d6;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 16px;
}

/* Native <img> for the BG — lazy-loaded, kept off the LCP
 * critical path. aspect-ratio attr (1920x540) prevents CLS
 * while loading. */
.pc-bridge__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 50%;
	z-index: 0;
	pointer-events: none;
}

.pc-bridge__inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
}

.pc-bridge__panel {
	width: 100%;
	max-width: 860px;
	color: var(--pc-black);
	text-align: center;
	font-family: "Noto Sans Thai", inherit;
}

.pc-bridge__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--pc-black);
	margin: 0 0 18px;
}

.pc-bridge__panel p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--pc-black);
	margin: 0 0 16px;
}

.pc-bridge__panel p:last-child { margin-bottom: 0; }

/* Mobile: stack readable panel over BG */
@media (max-width: 767px) {
	.pc-bridge { min-height: auto; padding: 36px 18px; }
	.pc-bridge__bg { object-position: 30% center; }
	.pc-bridge__inner { justify-content: center; }
	.pc-bridge__panel {
		background: rgba(255, 247, 238, .88);
		padding: 20px 16px;
		border-radius: 6px;
	}
}

@media (min-width: 768px) {
	.pc-bridge__title { font-size: 22px; margin-bottom: 22px; }
	.pc-bridge__panel p { font-size: 15px; line-height: 1.65; }
}

@media (min-width: 1024px) {
	.pc-bridge { min-height: 550px; }
	.pc-bridge__title {
		font-size: 28px;
		line-height: 1.5;
		margin-bottom: 24px;
	}
	.pc-bridge__panel p { font-size: 16px; line-height: 1.6; }
}
