/* ==========================================================================
   Pre-footer role selector (template-parts/pre-footer-role.php)
   Loaded globally so the band renders correctly on every page that includes
   the part — not only on the Contact page.
   ========================================================================== */

.pre-footer {
	background: #F4F4F6;
	padding: 48px 0;
}
.pre-footer-inner {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
}
.pre-footer-text {
	font-size: 1.5rem;
	font-weight: 600;
	color: #000;
	line-height: 1.4;
	max-width: 600px;
}
.pre-footer-select-wrap {
	position: relative;
}
.pre-footer-select {
	appearance: none;
	-webkit-appearance: none;
	width: 420px;
	max-width: 100%;
	height: 48px;
	padding: 0 2.5rem 0 1.25rem;
	background: #fff;
	border: none;
	border-radius: 9999px;
	font-size: .9375rem;
	font-weight: 500;
	color: #1f2937;
	box-shadow: 0 1px 6px rgba(0, 0, 0, .06);
	cursor: pointer;
	transition: box-shadow .2s;
}
.pre-footer-select:hover {
	box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
}
.pre-footer-select:focus {
	outline: none;
	border: 2.5px dashed #93C5FD;
	box-shadow: none;
}
.pre-footer-arrow {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	pointer-events: none;
	transition: color .2s;
}
.pre-footer-arrow svg {
	width: .75rem;
	height: .75rem;
	color: #6b7280;
	transition: color .2s;
}
.pre-footer-select-wrap:hover .pre-footer-arrow svg {
	color: #dc2626;
}
