/**
 * Event Contact Card — front-end styles.
 * No outer background; use CSS variables to match your section.
 */
.ecc-card {
	--ecc-accent: #ff2d95;
	--ecc-text: #ffffff;
	--ecc-muted: #a8a8a8;
	--ecc-divider: rgba(255, 255, 255, 0.18);
	--ecc-box-border: var(--ecc-accent);
	--ecc-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--ecc-star-size: 1.5em;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-family: var(--ecc-font);
	color: var(--ecc-text);
	background: transparent;
	line-height: 1.45;
	font-size: 1rem;
}

.ecc-card *,
.ecc-card *::before,
.ecc-card *::after {
	box-sizing: inherit;
}

.ecc-card__header {
	padding-bottom: 1rem;
	margin-bottom: 1rem;
	border-bottom: 1px solid var(--ecc-divider);
	text-align: left;
}

.ecc-card__title {
	margin: 0 0 1rem;
	font-size: 1.5em;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ecc-text);
}

.ecc-card__contact-row {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 0.5rem;
	flex-wrap: wrap;
}

.ecc-card__contact-row:last-of-type {
	margin-bottom: 0;
}

.ecc-card__contact-icon {
	flex-shrink: 0;
	width: 1.15em;
	height: 1.15em;
	color: var(--ecc-accent);
}

.ecc-card__contact-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.ecc-card__email {
	margin: 0;
	/* font-size: 0.95rem; */
	font-weight: 700;
	font-size: 1.3em;
	color: var(--ecc-accent) !important;
	text-decoration: none;
	word-break: break-all;
}

.ecc-card__email:visited,
.ecc-card__email:hover,
.ecc-card__email:focus,
.ecc-card__email:active {
	color: var(--ecc-accent);
}

.ecc-card__email:hover,
.ecc-card__email:focus {
	text-decoration: underline;
}

.ecc-card__phone {
	margin: 0;
	/* font-size: 0.95rem;
	font-size: 1.1em; */
	font-size: 1.3em;
	font-weight: 700;
	color: var(--ecc-text);
}

.ecc-card__hint {
	display: block;
	margin: 0.35rem 0 0;
	padding-left: 1.7rem;
	font-size: 1em;
	font-weight: 500;
	color: var(--ecc-muted);
	line-height: 1.35;
}

.ecc-card__services {
	margin: 0 0 1.35rem;
	padding: 1rem 1.1rem;
	border: 1px solid var(--ecc-box-border);
	border-radius: 8px;
	box-shadow: 0 0 0 1px rgba(255, 45, 149, 0.12);
	background: transparent;
}

.ecc-card__services-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.65rem;
}

.ecc-card__services-item {
	display: flex;
	align-items: flex-start;
	gap: 0.6rem;
	margin: 0;
}

.ecc-card__services-icon {
	flex-shrink: 0;
	width: 1.25rem;
	height: 1.25rem;
	margin-top: 0.1rem;
	color: var(--ecc-accent);
}

.ecc-card__services-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.ecc-card__services-icon--custom img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: top;
}

.ecc-card__services-label {
	margin: 0;
	/* font-size: 0.9rem;
	font-weight: 700; */
	color: var(--ecc-text);
	line-height: 1.35;
	font-weight: 300;
	font-size: 1.1em;
	text-transform: capitalize;
}

.ecc-card__trust {
	text-align: center;
	padding-top: 0.15rem;
}

.ecc-card__stars {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.2rem;
	margin: 0 0 0.65rem;
	padding: 0;
	list-style: none;
}

.ecc-card__stars li {
	margin-bottom: 0 !important;
}

.ecc-card__star {
	width: var(--ecc-star-size);
	height: var(--ecc-star-size);
	color: var(--ecc-accent);
	flex-shrink: 0;
}

.ecc-card__star svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.ecc-card__trust-text {
	margin: 0 0 0.65rem;
	font-size: 1.2em;
	font-weight: 700;
	color: var(--ecc-text);
	line-height: 1.4;
}

.ecc-card__footer-cats {
	margin: 0;
	font-size: 1em;
	font-weight: 500;
	color: var(--ecc-muted);
	line-height: 1.45;
}


/* Plan banner — use on dark sections; set --ecc-text / --ecc-accent / --ecc-muted on parent if needed */
.ecc-plan-banner {
	--ecc-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	box-sizing: border-box;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 1.5rem 1rem;
	text-align: center;
	font-family: var(--ecc-font);
	color: var(--ecc-text, #ffffff);
	background: var(--ecc-banner-bg, transparent);
	line-height: 1.4;
}

.ecc-plan-banner *,
.ecc-plan-banner *::before,
.ecc-plan-banner *::after {
	box-sizing: inherit;
}

.ecc-plan-banner__title {
	margin: 0 0 0.85rem;
	/* font-size: clamp(1.35rem, 4.2vw, 2.05rem); */
	font-size: 3em;
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ecc-text, #ffffff);
}

.ecc-plan-banner__title-inner {
	display: inline-block;
}

.ecc-plan-banner__highlight {
	color: var(--ecc-accent, #ff2d95);
}

.ecc-plan-banner__sub {
	margin: 0 auto;
	max-width: 36rem;
	font-size: clamp(0.88rem, 2.2vw, 1.02rem);
	font-weight: 500;
	color: var(--ecc-muted, #a8a8a8);
	line-height: 1.5;
}

@media (max-width: 767px) {
	.ecc-card {
		font-size: 1.06rem;
		line-height: 1.52;
	}

	.ecc-card__title {
		font-size: clamp(1.35rem, 6.4vw, 1.65rem);
		letter-spacing: 0.045em;
		margin-bottom: 0.9rem;
	}

	.ecc-card__contact-row {
		gap: 0.65rem;
	}

	.ecc-card__email,
	.ecc-card__phone {
		font-size: clamp(1.12rem, 5.1vw, 1.3rem);
		line-height: 1.42;
	}

	.ecc-card__hint {
		font-size: clamp(0.98rem, 4.2vw, 1.08rem);
		line-height: 1.52;
		padding-left: 2rem;
	}

	.ecc-card__services {
		padding: 1rem;
	}

	.ecc-card__services-item {
		gap: 0.7rem;
	}

	.ecc-card__services-label {
		font-size: clamp(1.02rem, 4.5vw, 1.15rem);
		line-height: 1.5;
	}

	.ecc-card__trust-text {
		font-size: clamp(1.08rem, 4.8vw, 1.2rem);
		line-height: 1.5;
	}

	.ecc-card__footer-cats {
		font-size: clamp(0.92rem, 4vw, 1rem);
		line-height: 1.55;
	}

	.ecc-plan-banner__title {
		font-size: clamp(1.65rem, 8.6vw, 2.25rem);
		line-height: 1.2;
		letter-spacing: 0.03em;
	}

	.ecc-plan-banner__sub {
		font-size: clamp(1rem, 4.3vw, 1.08rem);
		line-height: 1.55;
	}
}
