/* Find an Advocate landing — Posh brand tokens */
.posh-finder {
	--posh-pink: #e0457b;
	--posh-blue: #375275;
	--posh-faint-pink: #fdf2f8;
	--posh-text: #2c2c2a;
	--posh-muted: #5f5e5a;
	--posh-pink-border: rgba(224, 69, 123, 0.18);
	font-family: 'Poppins', sans-serif;
	color: var(--posh-text);
}

.posh-finder *,
.posh-finder *::before,
.posh-finder *::after {
	box-sizing: border-box;
}

.posh-finder__wrap {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Context banner */
.posh-finder__banner {
	background: var(--posh-faint-pink);
	border: 1px solid var(--posh-pink-border);
	border-radius: 12px;
	padding: 18px 20px;
	margin: 0 auto 22px;
	max-width: 700px;
}

.posh-finder__banner-title {
	margin: 0 0 8px;
	font-size: 1.0625rem;
	font-weight: 500;
	color: var(--posh-blue);
	line-height: 1.35;
}

.posh-finder__banner-body {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.5;
	color: var(--posh-text);
}

/* Hero */
.posh-finder__hero {
	background: #fff;
	text-align: center;
	padding: 36px 20px 40px;
	max-width: 700px;
	margin: 0 auto;
}

.posh-finder__lotus {
	display: block;
	width: 28px;
	height: 28px;
	margin: 0 auto 16px;
	object-fit: contain;
}

.posh-finder__headline {
	margin: 0 0 16px;
	font-size: clamp(1.75rem, 5vw, 2.75rem);
	font-weight: 500;
	letter-spacing: -0.5px;
	line-height: 1.2;
	color: var(--posh-blue);
}

.posh-finder__subhead {
	margin: 0;
	font-size: clamp(1.0625rem, 2.5vw, 1.1875rem);
	line-height: 1.6;
	color: var(--posh-text);
}

/* Search band */
.posh-finder__search {
	background: var(--posh-faint-pink);
	padding: 28px 24px 32px;
	margin: 0 -20px;
}

.posh-finder__search-inner {
	max-width: 500px;
	margin: 0 auto;
}

.posh-finder__helper {
	margin: 0 0 1rem;
	font-size: 0.875rem;
	color: var(--posh-muted);
	line-height: 1.5;
}

.posh-finder__form {
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-bottom: 0;
}

.posh-finder__input {
	width: 100%;
	padding: 14px 16px;
	font-size: 1rem;
	font-family: inherit;
	border: 1px solid var(--posh-pink);
	border-radius: 28px;
	background: #fff;
	color: var(--posh-text);
}

.posh-finder__input:focus {
	outline: 2px solid var(--posh-pink);
	outline-offset: 2px;
}

.posh-finder__button {
	width: 100%;
	padding: 14px 20px;
	font-size: 1rem;
	font-family: inherit;
	font-weight: 500;
	border: none;
	border-radius: 28px;
	background: var(--posh-pink);
	color: #fff;
	cursor: pointer;
	transition: background 0.2s ease;
}

.posh-finder__button:hover {
	background: #c03d6c;
}

.posh-finder__error {
	color: #d63638;
	background: #fcf0f1;
	padding: 12px;
	border-radius: 8px;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}

.posh-finder__empty {
	margin: 1rem 0 0;
	font-size: 0.9375rem;
	color: var(--posh-text);
}

/* Results table */
.posh-finder__results {
	margin-top: 1.5rem;
}

.posh-results-table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
}

.posh-results-table th,
.posh-results-table td {
	padding: 12px;
	border-bottom: 1px solid var(--posh-pink-border);
	text-align: left;
	font-size: 0.9375rem;
}

.posh-results-table thead tr {
	background: #fff;
}

.posh-results-table th {
	font-weight: 500;
	color: var(--posh-blue);
}

.posh-results-table a {
	color: var(--posh-pink);
	text-decoration: none;
	font-weight: 500;
}

.posh-results-table a:hover {
	text-decoration: underline;
}

.posh-finder__timing {
	margin-top: 2rem;
	font-size: 12px;
	color: #999;
}

/* Reassurance footer */
.posh-finder__footer {
	background: #fff;
	padding: 24px 20px 32px;
	text-align: center;
	border-top: 1px solid var(--posh-pink-border);
	margin: 0 -20px;
}

.posh-finder__footer p {
	margin: 0 auto;
	max-width: 520px;
	font-size: 0.875rem;
	line-height: 1.5;
	color: var(--posh-muted);
}

@media (min-width: 768px) {
	.posh-finder__search {
		padding: 36px 32px 40px;
	}

	.posh-finder__hero {
		padding: 48px 24px 44px;
	}

	.posh-finder__lotus {
		width: 32px;
		height: 32px;
	}

	.posh-finder__form {
		flex-direction: row;
		align-items: stretch;
	}

	.posh-finder__button {
		width: auto;
		flex-shrink: 0;
		padding-left: 28px;
		padding-right: 28px;
	}

	.posh-finder__footer {
		padding: 32px 24px 40px;
	}
}

@media (max-width: 767px) {
	.posh-results-table {
		font-size: 14px;
	}

	.posh-results-table th,
	.posh-results-table td {
		padding: 8px 6px;
	}

	.posh-results-table th:nth-child(2),
	.posh-results-table td:nth-child(2),
	.posh-results-table th:nth-child(3),
	.posh-results-table td:nth-child(3) {
		display: none;
	}
}

@media (max-width: 480px) {
	.posh-results-table th:nth-child(4),
	.posh-results-table td:nth-child(4) {
		display: none;
	}

	.posh-results-table {
		font-size: 13px;
	}
}
