:root {
	--ec-reviews-plum: #5b0a55;
	--ec-reviews-brown: #754026;
	--ec-reviews-cream: #fffaf2;
	--ec-reviews-line: rgba(91, 10, 85, .14);
	--ec-reviews-text: #2d252b;
}

.ec-reviews {
	width: min(100% - 32px, 1180px);
	margin: clamp(28px, 5vw, 64px) auto;
	color: var(--ec-reviews-text);
}

.ec-reviews__header {
	max-width: 760px;
	margin: 0 auto 26px;
	text-align: center;
}

.ec-reviews__eyebrow {
	margin: 0 0 8px;
	color: var(--ec-reviews-brown);
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .13em;
	text-transform: uppercase;
}

.ec-reviews__title {
	margin: 0;
	font-size: clamp(1.65rem, 3.5vw, 2.65rem);
	line-height: 1.12;
}

.ec-reviews__intro {
	margin: 12px 0 0;
	font-size: clamp(.96rem, 1.5vw, 1.08rem);
	line-height: 1.55;
	opacity: .72;
}

.ec-reviews__platforms {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.ec-reviews__platform {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-width: 0;
	padding: 17px 20px;
	border: 1px solid var(--ec-reviews-line);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(61, 30, 37, .065);
	color: var(--ec-reviews-text);
	text-decoration: none;
	transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.ec-reviews__platform:hover {
	border-color: rgba(91, 10, 85, .35);
	box-shadow: 0 16px 42px rgba(61, 30, 37, .11);
	color: var(--ec-reviews-plum);
	transform: translateY(-3px);
}

.ec-reviews__platform:focus-visible {
	outline: 3px solid rgba(91, 10, 85, .25);
	outline-offset: 3px;
}

.ec-reviews__logo-wrap {
	display: flex;
	align-items: center;
	min-width: 0;
}

.ec-reviews__logo {
	display: block;
	width: auto;
	max-width: 150px;
	height: 34px;
	object-fit: contain;
}

.ec-reviews__wordmark {
	font-size: 1.05rem;
	font-weight: 800;
	line-height: 1.15;
}

.ec-reviews__platform--tripadvisor .ec-reviews__wordmark { color: #008f73; }
.ec-reviews__platform--airbnb .ec-reviews__wordmark { color: #ff385c; }
.ec-reviews__platform--viator .ec-reviews__wordmark { color: #087e70; }

.ec-reviews__meta {
	display: grid;
	gap: 2px;
	margin-left: auto;
	text-align: right;
	white-space: nowrap;
}

.ec-reviews__meta strong {
	color: #d99a27;
	font-size: .92rem;
}

.ec-reviews__meta small {
	color: #756a70;
	font-size: .76rem;
}

.ec-reviews__action {
	display: none;
	font-size: .85rem;
	font-weight: 750;
}

.ec-reviews--cards .ec-reviews__platform {
	flex-direction: column;
	align-items: flex-start;
	min-height: 190px;
	padding: 26px;
}

.ec-reviews--cards .ec-reviews__logo {
	max-width: 180px;
	height: 42px;
}

.ec-reviews--cards .ec-reviews__meta {
	margin: auto 0 0;
	text-align: left;
}

.ec-reviews--cards .ec-reviews__action {
	display: inline;
}

/* Compact reassurance block for Event Booking workshop pages. */
.ec-reviews--workshop {
	width: 100%;
	margin: 18px 0 20px;
	padding: 15px 17px;
	border: 1px solid var(--ec-reviews-line);
	border-radius: 18px;
	background: linear-gradient(135deg, #fffaf2 0%, #fff 100%);
	box-shadow: 0 10px 28px rgba(61, 30, 37, .055);
}

.ec-reviews--workshop .ec-reviews__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	max-width: none;
	margin: 0 0 12px;
	text-align: left;
}

.ec-reviews--workshop .ec-reviews__eyebrow { display: none; }

.ec-reviews--workshop .ec-reviews__title {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	font-weight: 800;
	line-height: 1.25;
}

.ec-reviews--workshop .ec-reviews__intro {
	margin: 0;
	font-size: .82rem;
	line-height: 1.35;
	text-align: right;
}

.ec-reviews--workshop .ec-reviews__platforms {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.ec-reviews--workshop .ec-reviews__platform {
	justify-content: center;
	gap: 8px;
	min-height: 66px;
	padding: 9px 10px;
	border-radius: 13px;
	box-shadow: none;
	text-align: center;
}

.ec-reviews--workshop .ec-reviews__logo-wrap { justify-content: center; }

.ec-reviews--workshop .ec-reviews__logo {
	max-width: 105px;
	height: 25px;
}

.ec-reviews--workshop .ec-reviews__wordmark { font-size: .82rem; }

.ec-reviews--workshop .ec-reviews__meta {
	margin: 0;
	text-align: center;
}

.ec-reviews--workshop .ec-reviews__meta small,
.ec-reviews--workshop .ec-reviews__action { display: none; }

/* Discreet logo row designed for a dark footer card. */
.ec-reviews--footer {
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: clamp(28px, 3vw, 34px);
	border: 1px solid rgba(255, 255, 255, .16);
	border-radius: 28px;
	background: linear-gradient(145deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .055));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
	color: #fffaf2;
	transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.ec-reviews--footer:hover {
	border-color: rgba(216, 176, 105, .42);
	background: linear-gradient(145deg, rgba(255, 255, 255, .145), rgba(255, 255, 255, .075));
	box-shadow: 0 18px 42px rgba(18, 2, 16, .22), inset 0 1px 0 rgba(255, 255, 255, .09);
	transform: translateY(-6px);
}

.ec-reviews--footer .ec-reviews__social-title {
	margin: 0 0 20px;
	color: #fffaf2;
	font-size: clamp(1.65rem, 2.6vw, 2.2rem);
	font-weight: 800;
	line-height: 1.1;
}

.ec-reviews--footer .ec-reviews__social-links {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.ec-reviews--footer .ec-reviews__social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 48px;
	padding: 10px 16px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 999px;
	background: rgba(255, 255, 255, .055);
	color: #fffaf2;
	font-size: .78rem;
	font-weight: 750;
	text-decoration: none;
	transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.ec-reviews--footer .ec-reviews__social-links a:hover {
	border-color: rgba(255, 255, 255, .42);
	background: rgba(255, 255, 255, .12);
	color: #fff;
	transform: translateY(-1px);
}

.ec-reviews--footer .ec-reviews__youtube-icon {
	position: relative;
	display: inline-block;
	width: 17px;
	height: 12px;
	border-radius: 4px;
	background: currentColor;
}

.ec-reviews--footer .ec-reviews__youtube-icon::after {
	position: absolute;
	top: 3px;
	left: 7px;
	width: 0;
	height: 0;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 5px solid #6a365f;
	content: '';
}

.ec-reviews--footer .ec-reviews__tagline {
	margin: 22px 0 0;
	color: rgba(255, 250, 242, .72);
	font-size: .87rem;
	line-height: 1.5;
}

.ec-reviews--footer .ec-reviews__header {
	max-width: none;
	margin: 22px 0 10px;
	padding-top: 15px;
	border-top: 1px solid rgba(255, 255, 255, .13);
	text-align: left;
}

.ec-reviews--footer .ec-reviews__eyebrow,
.ec-reviews--footer .ec-reviews__intro { display: none; }

.ec-reviews--footer .ec-reviews__title {
	color: rgba(255, 250, 242, .7);
	font-size: .72rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.ec-reviews--footer .ec-reviews__platforms {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	flex-wrap: wrap;
}

.ec-reviews--footer .ec-reviews__platform {
	flex: 0 1 auto;
	min-height: 40px;
	padding: 7px 10px;
	border-color: rgba(255, 255, 255, .15);
	border-radius: 999px;
	background: rgba(255, 255, 255, .055);
	box-shadow: none;
	color: #fffaf2;
}

.ec-reviews--footer .ec-reviews__platform:hover {
	border-color: rgba(255, 255, 255, .4);
	background: rgba(255, 255, 255, .11);
	box-shadow: none;
	color: #fff;
	transform: translateY(-1px);
}

.ec-reviews--footer .ec-reviews__logo {
	max-width: 78px;
	height: 21px;
	filter: grayscale(1) brightness(0) invert(1);
	opacity: .78;
}

.ec-reviews--footer .ec-reviews__platform:hover .ec-reviews__logo { opacity: 1; }

.ec-reviews--footer .ec-reviews__wordmark {
	color: rgba(255, 250, 242, .78) !important;
	font-size: .7rem;
}

.ec-reviews--footer .ec-reviews__meta,
.ec-reviews--footer .ec-reviews__action { display: none; }

@media (max-width: 899.98px) {
	.ec-reviews__platforms {
		grid-template-columns: 1fr;
		max-width: 620px;
		margin-inline: auto;
	}
}

@media (max-width: 575.98px) {
	.ec-reviews {
		width: min(100% - 24px, 1180px);
		margin-block: 24px 42px;
	}

	.ec-reviews__header {
		margin-bottom: 20px;
		text-align: left;
	}

	.ec-reviews__platforms {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 8px;
	}

	.ec-reviews__platform,
	.ec-reviews--cards .ec-reviews__platform {
		justify-content: center;
		min-height: 88px;
		padding: 12px 8px;
		border-radius: 16px;
		text-align: center;
	}

	.ec-reviews__platforms .ec-reviews__platform {
		flex-direction: column;
	}

	.ec-reviews__logo,
	.ec-reviews--cards .ec-reviews__logo {
		max-width: 90px;
		height: 26px;
	}

	.ec-reviews__wordmark {
		font-size: .76rem;
		overflow-wrap: anywhere;
	}

	.ec-reviews__meta {
		margin: 0;
		text-align: center;
	}

	.ec-reviews__meta small,
	.ec-reviews__action {
		display: none;
	}

	.ec-reviews--workshop {
		width: 100%;
		margin: 14px 0 18px;
		padding: 13px 12px;
		border-radius: 16px;
	}

	.ec-reviews--workshop .ec-reviews__header {
		display: block;
		margin-bottom: 10px;
	}

	.ec-reviews--workshop .ec-reviews__intro {
		margin-top: 4px;
		font-size: .76rem;
		text-align: left;
	}

	.ec-reviews--workshop .ec-reviews__platforms { gap: 6px; }

	.ec-reviews--workshop .ec-reviews__platform {
		min-height: 64px;
		padding: 8px 5px;
	}

	.ec-reviews--workshop .ec-reviews__logo {
		max-width: 78px;
		height: 23px;
	}

	.ec-reviews--footer {
		width: 100%;
		margin: 0;
		padding: 25px 22px;
		border-radius: 24px;
	}

	.ec-reviews--footer .ec-reviews__social-title { margin-bottom: 17px; }

	.ec-reviews--footer .ec-reviews__social-links a {
		min-height: 44px;
		padding: 9px 13px;
	}

	.ec-reviews--footer .ec-reviews__tagline { margin-top: 18px; }

	.ec-reviews--footer .ec-reviews__header {
		margin-top: 18px;
		margin-bottom: 9px;
	}

	.ec-reviews--footer .ec-reviews__platforms {
		display: flex;
		max-width: none;
		margin: 0;
		gap: 7px;
	}

	.ec-reviews--footer .ec-reviews__platform {
		flex: 1 1 28%;
		min-width: 0;
		min-height: 42px;
		padding: 7px 5px;
	}

	.ec-reviews--footer .ec-reviews__logo {
		max-width: 68px;
		height: 20px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ec-reviews__platform { transition: none; }
	.ec-reviews--footer { transition: none; }
	.ec-reviews--footer:hover { transform: none; }
}
