.telemedicine-page {
	--tm-bg: #f6fbfa;
	--tm-surface: #ffffff;
	--tm-border: rgba(16, 143, 155, 0.16);
	--tm-text: #223a46;
	--tm-muted: #52717b;
	--tm-teal: #108f9b;
	--tm-green: #00a99e;
	--tm-navy: #243b63;
	--tm-amber: #f2c779;
	--tm-shadow: 0 18px 38px rgba(34, 58, 70, 0.08);
	color: var(--tm-text);
	font-size: 16px;
	line-height: 1.65;
	margin-bottom: 48px;
}

.telemedicine-page * {
	box-sizing: border-box;
}

.telemedicine-page p,
.telemedicine-page ul,
.telemedicine-page ol,
.telemedicine-page h2,
.telemedicine-page h3,
.telemedicine-page figure {
	margin-top: 0;
}

.telemedicine-page p:last-child,
.telemedicine-page ul:last-child,
.telemedicine-page ol:last-child {
	margin-bottom: 0;
}

.telemedicine-hero,
.telemedicine-detail-hero,
.telemedicine-section,
.telemedicine-cta {
	margin-bottom: 34px;
}

.telemedicine-hero {
	background: var(--tm-bg);
	border: 1px solid var(--tm-border);
	border-radius: 8px;
	overflow: hidden;
	padding: 30px;
}

.telemedicine-hero__content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: center;
}

.telemedicine-eyebrow {
	background: rgba(16, 143, 155, 0.1);
	border-radius: 999px;
	color: var(--tm-teal);
	display: inline-flex;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 16px;
	padding: 8px 13px;
	text-transform: uppercase;
}

.telemedicine-title {
	color: var(--tm-text);
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.1;
	margin-bottom: 18px;
}

.telemedicine-lead,
.telemedicine-section__intro,
.telemedicine-panel p,
.telemedicine-info p,
.telemedicine-card__text,
.telemedicine-route p,
.telemedicine-cta p {
	color: var(--tm-muted);
	font-size: 16px;
	line-height: 1.75;
}

.telemedicine-lead {
	font-size: 18px;
	margin-bottom: 26px;
	max-width: 760px;
}

.telemedicine-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.telemedicine-button {
	align-items: center;
	border-radius: 20px;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	justify-content: center;
	line-height: 1.2;
	min-height: 42px;
	padding: 11px 22px;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.telemedicine-button:hover,
.telemedicine-button:focus {
	text-decoration: none;
	transform: translateY(-1px);
}

.telemedicine-button--primary {
	background: var(--tm-teal);
	color: #ffffff !important;
}

.telemedicine-button--primary:hover,
.telemedicine-button--primary:focus {
	background: var(--tm-green);
	color: #ffffff !important;
}

.telemedicine-button--secondary {
	background: #ffffff;
	border: 1px solid var(--tm-border);
	color: var(--tm-teal) !important;
}

.telemedicine-button--secondary:hover,
.telemedicine-button--secondary:focus {
	border-color: var(--tm-teal);
	color: var(--tm-navy) !important;
}

.telemedicine-button--wide {
	width: 100%;
}

.telemedicine-hero__media {
	background: #dfe9ec;
	border-radius: 8px;
	box-shadow: var(--tm-shadow);
	height: 100%;
	min-height: 310px;
	overflow: hidden;
	position: relative;
}

.telemedicine-hero__media img {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.telemedicine-status {
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(255, 255, 255, 0.65);
	border-radius: 8px;
	bottom: 18px;
	box-shadow: 0 14px 30px rgba(34, 58, 70, 0.16);
	left: 18px;
	padding: 14px 18px;
	position: absolute;
}

.telemedicine-status__label,
.telemedicine-status__value {
	display: block;
}

.telemedicine-status__label {
	color: var(--tm-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0;
	text-transform: uppercase;
}

.telemedicine-status__value {
	color: var(--tm-navy);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
}

.telemedicine-section__head {
	margin-bottom: 22px;
	max-width: 780px;
}

.telemedicine-heading {
	color: var(--tm-text);
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.22;
	margin-bottom: 12px;
}

.telemedicine-section--soft {
	background: #f7fbfc;
	border-radius: 8px;
	padding: 28px;
}

.telemedicine-card,
.telemedicine-panel,
.telemedicine-route,
.telemedicine-info,
.telemedicine-cta {
	background: var(--tm-surface);
	border: 1px solid var(--tm-border);
	border-radius: 8px;
	box-shadow: var(--tm-shadow);
}

.telemedicine-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	height: 100%;
	padding: 24px;
	position: relative;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.telemedicine-card--link:hover,
.telemedicine-card--link:focus {
	border-color: rgba(16, 143, 155, 0.42);
	box-shadow: 0 22px 48px rgba(34, 58, 70, 0.12);
	text-decoration: none;
	transform: translateY(-2px);
}

.telemedicine-card-list {
	display: grid;
	gap: 14px;
}

.telemedicine-card--compact {
	box-shadow: none;
	gap: 9px;
	height: auto;
	padding: 18px;
}

.telemedicine-card--compact .telemedicine-card__title {
	font-size: 18px;
}

.telemedicine-card--compact .telemedicine-card__text {
	font-size: 15px;
	line-height: 1.6;
}

.telemedicine-card__icon {
	align-items: center;
	background: #edf8f7;
	border: 1px solid rgba(16, 143, 155, 0.16);
	border-radius: 8px;
	color: var(--tm-teal);
	display: inline-flex;
	font-size: 22px;
	height: 50px;
	justify-content: center;
	width: 50px;
}

.telemedicine-card__title {
	color: var(--tm-text);
	display: block;
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
}

.telemedicine-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: auto;
}

.telemedicine-tag {
	background: #f7fbfc;
	border: 1px solid #d8ecef;
	border-radius: 999px;
	color: var(--tm-muted);
	display: inline-flex;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.2;
	padding: 7px 10px;
}

.telemedicine-card__more {
	color: var(--tm-teal);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
}

.telemedicine-panel,
.telemedicine-info {
	height: 100%;
	padding: 24px;
}

.telemedicine-panel--hero {
	background: #f7fbfc;
}

.telemedicine-panel--side {
	background: #ffffff;
}

.telemedicine-route {
	padding: 24px;
}

.telemedicine-route__item {
	border-bottom: 1px solid #dcecef;
	display: grid;
	gap: 18px;
	grid-template-columns: 48px 1fr;
	padding-bottom: 20px;
}

.telemedicine-route__item + .telemedicine-route__item {
	padding-top: 20px;
}

.telemedicine-route__item:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.telemedicine-route__index {
	align-items: center;
	background: var(--tm-navy);
	border-radius: 8px;
	color: #ffffff;
	display: inline-flex;
	font-size: 15px;
	font-weight: 700;
	height: 48px;
	justify-content: center;
	width: 48px;
}

.telemedicine-route h3,
.telemedicine-info h2,
.telemedicine-cta h2 {
	color: var(--tm-text);
	font-size: 22px;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 10px;
}

.telemedicine-info--accent {
	background: #fff8ea;
	border-color: rgba(242, 199, 121, 0.54);
}

.telemedicine-contact-card {
	background: linear-gradient(135deg, #fff8ea 0%, #ffffff 100%);
	overflow: hidden;
	position: relative;
}

.telemedicine-contact-card::after {
	background: radial-gradient(circle, rgba(16, 143, 155, 0.14) 0%, rgba(16, 143, 155, 0) 68%);
	content: "";
	height: 170px;
	pointer-events: none;
	position: absolute;
	right: -72px;
	top: -78px;
	width: 170px;
}

.telemedicine-contact-card__header {
	align-items: center;
	display: grid;
	gap: 18px;
	grid-template-columns: 74px 1fr;
	margin-bottom: 22px;
	position: relative;
	z-index: 1;
}

.telemedicine-contact-card__avatar {
	align-items: center;
	background: var(--tm-teal);
	border: 6px solid #e7f7f5;
	border-radius: 50%;
	box-shadow: 0 14px 28px rgba(16, 143, 155, 0.22);
	color: #ffffff;
	display: inline-flex;
	font-size: 32px;
	height: 74px;
	justify-content: center;
	width: 74px;
}

.telemedicine-contact-card__label,
.telemedicine-contact-card__role,
.telemedicine-contact-card__link-label {
	color: var(--tm-muted);
	display: block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.3;
	margin-bottom: 4px;
	text-transform: uppercase;
}

.telemedicine-contact-card__person h2 {
	margin-bottom: 6px;
}

.telemedicine-contact-card__role {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 0;
	text-transform: none;
}

.telemedicine-contact-card__links {
	display: grid;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.telemedicine-contact-card__link {
	align-items: center;
	background: rgba(255, 255, 255, 0.76);
	border: 1px solid rgba(16, 143, 155, 0.14);
	border-radius: 8px;
	display: grid;
	gap: 12px;
	grid-template-columns: 42px 1fr;
	padding: 12px 14px;
	text-decoration: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.telemedicine-contact-card__link:hover,
.telemedicine-contact-card__link:focus {
	border-color: rgba(16, 143, 155, 0.38);
	box-shadow: 0 12px 24px rgba(34, 58, 70, 0.08);
	text-decoration: none;
	transform: translateY(-1px);
}

.telemedicine-contact-card__icon {
	align-items: center;
	background: #edf8f7;
	border-radius: 8px;
	color: var(--tm-teal);
	display: inline-flex;
	font-size: 18px;
	height: 42px;
	justify-content: center;
	width: 42px;
}

.telemedicine-contact-card__link strong {
	color: var(--tm-teal);
	display: block;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.25;
	overflow-wrap: anywhere;
}

.telemedicine-list {
	color: var(--tm-muted);
	margin-bottom: 0;
	padding-left: 20px;
}

.telemedicine-list li {
	margin-bottom: 8px;
}

.telemedicine-list li:last-child {
	margin-bottom: 0;
}

.telemedicine-list--clean {
	list-style: none;
	padding-left: 0;
}

.telemedicine-list--clean li {
	border-bottom: 1px solid #dcecef;
	color: var(--tm-text);
	font-weight: 600;
	padding: 0 0 12px;
}

.telemedicine-list--clean li + li {
	padding-top: 12px;
}

.telemedicine-list--clean li:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.telemedicine-cta {
	background: #f7fbfc;
	padding: 28px;
}

.telemedicine-page--detail .telemedicine-detail-hero {
	margin-bottom: 34px;
}

@media (max-width: 991px) {
	.telemedicine-hero,
	.telemedicine-section--soft,
	.telemedicine-cta {
		padding: 24px;
	}

	.telemedicine-title {
		font-size: 34px;
	}

	.telemedicine-hero__media {
		min-height: 260px;
	}
}

@media (max-width: 575px) {
	.telemedicine-page {
		font-size: 15px;
	}

	.telemedicine-hero,
	.telemedicine-section--soft,
	.telemedicine-cta,
	.telemedicine-card,
	.telemedicine-panel,
	.telemedicine-route,
	.telemedicine-info {
		padding: 18px;
	}

	.telemedicine-title {
		font-size: 28px;
	}

	.telemedicine-heading {
		font-size: 24px;
	}

	.telemedicine-lead {
		font-size: 16px;
	}

	.telemedicine-actions,
	.telemedicine-button {
		width: 100%;
	}

	.telemedicine-route__item {
		grid-template-columns: 42px 1fr;
	}

	.telemedicine-route__index {
		height: 42px;
		width: 42px;
	}

	.telemedicine-status {
		bottom: 12px;
		left: 12px;
		right: 12px;
	}

	.telemedicine-contact-card__header {
		gap: 14px;
		grid-template-columns: 60px 1fr;
	}

	.telemedicine-contact-card__avatar {
		border-width: 5px;
		font-size: 26px;
		height: 60px;
		width: 60px;
	}

	.telemedicine-contact-card__link {
		grid-template-columns: 38px 1fr;
		padding: 11px 12px;
	}

	.telemedicine-contact-card__icon {
		font-size: 16px;
		height: 38px;
		width: 38px;
	}

	.telemedicine-contact-card__link strong {
		font-size: 16px;
	}
}
