.rh-header {
	display: flex;
	align-items: center;
	padding-top: 20px;
	padding-bottom: 20px;
	background: transparent;
}

.rh-header__container {
	height: 100%;
	display: flex;
	align-items: center;
}

.rh-header__inner {
	width: 100%;
	max-height: 54px;
	min-height: 54px;
	gap: 16px;
	font-family: var(--rh-font-family);
	display: flex;
	align-items: center;
}

.rh-header__logo {
	margin-right: 8px;
}

.rh-header__nav {
	display: flex;
	align-items: center;
	gap: 25px;
	margin-left: auto;
}

.rh-header__nav > a:not(.rh-header__phone) {
	color: var(--rh-white);
	font-size: 16px;
	line-height: 1.4;
	text-decoration: none;
	opacity: 0.92;
	transition: opacity 0.2s ease;
	white-space: nowrap;
}

.rh-header__nav > a:not(.rh-header__phone):hover {
	opacity: 1;
}

.rh-header__phone {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0;
	max-height: 54px;
	width: min(200px, 100%);
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--rh-white);
	text-decoration: none;
	white-space: nowrap;
}

.rh-header__phone-number {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.15;
	color: var(--rh-white);
}

.rh-header__phone-caption {
	font-size: 12px;
	line-height: 1.1;
	color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1100px) {
	.rh-header__nav {
		display: none;
	}
}

@media (max-width: 640px) {
	.rh-header__phone {
		padding: 8px 12px;
	}
}
