.doctors-consult {
	padding: 30px 0 70px;
}

.doctors-consult__inner {
	display: grid;
	grid-template-columns: 110px minmax(0, 1fr) 310px;
	align-items: center;
	gap: 28px;
	padding: 32px 58px;
	border: 1px solid #d5e6f7;
	border-radius: 22px;
	background: linear-gradient(90deg, #f2f8ff 0%, #ffffff 53%, #f4f9ff 100%);
	box-shadow: 0 12px 32px rgba(9, 58, 116, 0.06);
}

.doctors-consult__icon {
	display: grid;
	width: 82px;
	height: 82px;
	border-radius: 50%;
	background: #ffffff;
	place-items: center;
	box-shadow: 0 8px 22px rgba(9, 58, 116, 0.06);
}

.doctors-consult__icon svg {
	width: 42px;
	height: 42px;
	fill: none;
	stroke: var(--doctors-blue);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 3;
}

.doctors-consult__copy h2 {
	margin: 0 0 12px;
	color: var(--doctors-blue);
	font-size: 24px;
	font-weight: 900;
	line-height: 1.25;
	text-transform: uppercase;
}

.doctors-consult__copy p {
	max-width: 510px;
	margin: 0;
	color: #263950;
	font-size: 15px;
	line-height: 1.65;
}

.doctors-consult__actions {
	display: grid;
	justify-items: center;
	gap: 10px;
}

.doctors-consult__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 54px;
	border-radius: 8px;
	background: linear-gradient(180deg, #0758d6 0%, #003fbd 100%);
	box-shadow: 0 9px 20px rgba(0, 65, 154, 0.22);
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
	text-align: center;
	text-decoration: none;
}

.doctors-consult__button::before {
	width: 22px;
	height: 22px;
	margin-right: 12px;
	background: currentColor;
	content: "";
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 2v4M16 2v4M3 10h18M5 4h14a2 2 0 0 1 2 2v16H3V6a2 2 0 0 1 2-2Z'/%3E%3Cpath d='M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01'/%3E%3C/svg%3E") center / contain no-repeat;
}

.doctors-consult__button:hover,
.doctors-consult__button:focus {
	color: #ffffff;
	text-decoration: none;
}

.doctors-consult__phone {
	position: relative;
	margin-top: 5px;
	padding-left: 33px;
	color: var(--doctors-blue);
	font-size: 22px;
	font-weight: 900;
	line-height: 1.2;
	text-decoration: none;
}

.doctors-consult__phone::before {
	position: absolute;
	top: 3px;
	left: 0;
	width: 22px;
	height: 22px;
	background: currentColor;
	content: "";
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.8 19.8 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.8 19.8 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.33 1.77.63 2.6a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.48-1.2a2 2 0 0 1 2.11-.45c.83.3 1.7.51 2.6.63A2 2 0 0 1 22 16.92Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.doctors-consult__actions span {
	color: #4f6177;
	font-size: 13px;
}

@media (max-width: 1024px) {
	.doctors-consult__inner {
		grid-template-columns: 82px minmax(0, 1fr);
		padding: 28px;
	}

	.doctors-consult__actions {
		grid-column: 1 / -1;
		justify-items: start;
		width: min(310px, 100%);
		margin-left: 110px;
	}
}

@media (max-width: 680px) {
	.doctors-consult {
		padding: calc(var(--doctors-mobile-section-space) / 2) 0 var(--doctors-mobile-section-space);
	}

	.doctors-consult__inner {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 24px 20px;
		border-radius: 16px;
		text-align: center;
	}

	.doctors-consult__icon {
		margin-inline: auto;
	}

	.doctors-consult__copy h2 {
		font-size: 20px;
	}

	.doctors-consult__copy p {
		font-size: 14px;
	}

	.doctors-consult__actions {
		justify-items: center;
		width: 100%;
		margin-left: 0;
	}
}
