.header-cta {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	flex-wrap: wrap;
	margin-left: 0.75rem;
}

.header-cta__phone {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-weight: 600;
	font-size: 1rem;
	line-height: 1;
	color: var(--wp--preset--color--foreground, currentColor);
	text-decoration: none;
	white-space: nowrap;
	transition: opacity 0.15s ease-in-out;
}

.header-cta__phone:hover,
.header-cta__phone:focus-visible {
	opacity: 0.75;
	text-decoration: none;
}

.header-cta__phone-icon,
.header-cta__email-icon {
	flex-shrink: 0;
	display: block;
	width: 18px;
	height: 18px;
}

.header-cta__email {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.55rem 1rem;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	color: var(
		--wp--preset--color--primary,
		var(--wp--preset--color--foreground, #111)
	);
	background-color: transparent;
	border: 1.5px solid currentColor;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease-in-out,
		color 0.15s ease-in-out,
		transform 0.15s ease-in-out;
}

.header-cta__email:hover,
.header-cta__email:focus-visible {
	background-color: var(
		--wp--preset--color--primary,
		var(--wp--preset--color--foreground, #111)
	);
	color: var(--wp--preset--color--background, #fff);
	text-decoration: none;
	transform: translateY(-1px);
}

.header-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.15rem;
	border-radius: 9999px;
	font-weight: 600;
	font-size: 0.95rem;
	line-height: 1;
	text-decoration: none;
	background-color: var(
		--wp--preset--color--primary,
		var(--wp--preset--color--foreground, #111)
	);
	color: var(
		--wp--preset--color--background,
		#fff
	);
	border: 1px solid transparent;
	transition: opacity 0.15s ease-in-out, transform 0.15s ease-in-out;
}

.header-cta__button:hover,
.header-cta__button:focus-visible {
	opacity: 0.9;
	transform: translateY(-1px);
	color: var(--wp--preset--color--background, #fff);
	text-decoration: none;
}

@media (max-width: 600px) {
	.header-cta {
		gap: 0.5rem;
		margin-left: 0.25rem;
	}

	.header-cta__phone-text,
	.header-cta__email-text {
		display: none;
	}

	.header-cta__phone {
		padding: 0.45rem;
		border-radius: 9999px;
		background-color: rgba(0, 0, 0, 0.06);
		gap: 0;
	}

	.header-cta__email {
		width: 2.4rem;
		height: 2.4rem;
		padding: 0;
		gap: 0;
	}

	.header-cta__button {
		padding: 0.55rem 0.9rem;
		font-size: 0.9rem;
	}
}
