:root {
	--app-bg: #ffffff;
	--app-bg-strong: #ffffff;
	--surface: #ffffff;
	--surface-alt: #fbfcfb;
	--surface-dark: #14281d;
	--line: rgba(21, 56, 37, 0.08);
	--text: #15281d;
	--muted: #617468;
	--muted-strong: #415347;
	--brand: #1f9a61;
	--brand-deep: #187a4d;
	--brand-soft: rgba(31, 154, 97, 0.1);
	--brand-glow: rgba(31, 154, 97, 0.16);
	--shadow-soft: 0 20px 44px rgba(18, 33, 24, 0.09), 0 4px 10px rgba(18, 33, 24, 0.04);
	--shadow-card: 0 14px 28px rgba(18, 33, 24, 0.08), 0 3px 8px rgba(18, 33, 24, 0.04);
	--shadow-float: 0 24px 56px rgba(16, 38, 26, 0.12), 0 6px 14px rgba(16, 38, 26, 0.05);
	--radius-xl: 32px;
	--radius-lg: 28px;
	--radius-md: 22px;
	--radius-sm: 18px;
	--radius-xs: 14px;
	--space-1: 8px;
	--space-2: 12px;
	--space-3: 16px;
	--space-4: 20px;
	--space-5: 24px;
	--space-6: 28px;
	--space-7: 32px;
	--page-gutter: 14px;
	--section-gap: clamp(24px, 3vw, 34px);
	--font-ui: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	min-height: 100vh;
	background: #ffffff;
	color: var(--text);
	font-family: var(--font-ui);
	line-height: 1.62;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	overflow-x: clip;
}

body.admin-bar .app-header {
	top: 32px;
}

img {
	display: block;
	max-width: 100%;
	height: auto;
}

a {
	color: inherit;
	text-decoration: none;
}

button,
input,
textarea,
select {
	font: inherit;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.drawer-layer[hidden],
.search-sheet[hidden] {
	display: none !important;
}

.site-app {
	position: relative;
	min-height: 100vh;
	padding-bottom: 92px;
	overflow-x: clip;
	background: #ffffff;
}

.app-header {
	position: sticky;
	top: 0;
	z-index: 40;
	padding: 0;
	background: #ffffff;
}

.app-header__inner {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr) 44px;
	align-items: center;
	gap: 10px;
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 12px 18px;
	border: 1px solid rgba(235, 242, 236, 0.95);
	border-right: 0;
	border-left: 0;
	border-radius: 0;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: none;
	backdrop-filter: blur(20px);
	min-width: 0;
}

@media (min-width: 1024px) {
	.app-header {
		border-bottom: 1px solid rgba(235, 242, 236, 0.95);
		background: rgba(255, 255, 255, 0.98);
		box-shadow: none;
		backdrop-filter: blur(20px);
	}

	.app-header__inner {
		max-width: 1150px;
		margin: 0 auto;
		border: 0;
		background: transparent;
		box-shadow: none;
		backdrop-filter: none;
	}
}

.icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: var(--radius-xs);
	background: #f8fbf8;
	color: var(--text);
	box-shadow: 0 6px 16px rgba(24, 55, 36, 0.08), inset 0 0 0 1px rgba(21, 40, 29, 0.04);
	cursor: pointer;
	transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
}

.icon-button:hover,
.icon-button:focus-visible {
	background: rgba(31, 154, 97, 0.11);
	box-shadow: 0 8px 18px rgba(31, 154, 97, 0.1), inset 0 0 0 1px rgba(31, 154, 97, 0.08);
	transform: translateY(-1px);
}

.icon-button svg,
.icon-button i,
.section-link svg,
.hero-slide__button svg,
.action-chip svg,
.bottom-nav__icon svg {
	width: 20px;
	height: 20px;
}

.icon-button i {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
}

.app-brand {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 0;
	padding: 0 8px;
}

.app-brand__image {
	display: block;
	width: auto;
	height: 44px;
	max-width: min(260px, 58vw);
	object-fit: contain;
}

.app-brand__wordmark {
	display: block;
	max-width: 100%;
	font-size: clamp(1.72rem, 3vw, 2.38rem);
	line-height: 1.16;
	font-weight: 900;
	letter-spacing: -0.05em;
	color: #197f3a;
	white-space: nowrap;
	overflow: visible;
	padding-top: 0.08em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.38);
}

.home-shell,
.listing-shell,
.detail-screen,
.page-screen {
	max-width: 1120px;
	margin: 0 auto;
	padding: 16px var(--page-gutter) 0;
}

.home-shell {
	display: grid;
	gap: var(--section-gap);
}

.home-main {
	padding-bottom: 18px;
}

.home-hero {
	margin-top: 0;
}

.hero-slider {
	position: relative;
	overflow: hidden;
	border-radius: 22px;
	background: #ffffff;
	border: 1px solid rgba(227, 236, 229, 0.96);
	box-shadow: var(--shadow-card);
	isolation: isolate;
}

.hero-slider::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 26%;
	z-index: 1;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
	pointer-events: none;
}

.hero-slider__track {
	display: flex;
	transition: transform 0.45s ease;
}

.hero-slide {
	position: relative;
	flex: 0 0 100%;
	min-height: 224px;
}

.hero-slide__image,
.hero-slide__image img {
	position: absolute;
	inset: 0;
}

.hero-slide__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.section-kicker {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	padding: 7px 12px;
	border-radius: 999px;
	background: var(--brand-soft);
	color: var(--brand-deep);
	font-size: 0.73rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.01em;
	box-shadow: inset 0 0 0 1px rgba(31, 154, 97, 0.08);
}

.hero-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 22px;
	transform: translateX(-50%);
	z-index: 2;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 9px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	backdrop-filter: blur(12px);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-slider__dot {
	width: 7px;
	height: 7px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.42);
	cursor: pointer;
	transition: all 0.25s ease;
}

.hero-slider__dot.is-active {
	width: 18px;
	background: #fff;
}

.home-section {
	margin-top: 0;
}

.listing-header,
.detail-screen__body,
.page-screen {
	margin-top: 22px;
}

.section-heading {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 14px;
	min-width: 0;
}

.section-heading > div {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.section-heading h2,
.listing-header h1,
.page-screen h1 {
	margin: 0;
	font-size: clamp(1.42rem, 2.6vw, 1.9rem);
	line-height: 1.16;
	letter-spacing: -0.01em;
	text-wrap: balance;
}

.section-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 0;
	border-radius: 999px;
	background: transparent;
	color: var(--brand-deep);
	font-weight: 700;
	font-size: 0.92rem;
	white-space: nowrap;
	flex-shrink: 0;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	grid-auto-rows: 1fr;
}

.category-card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 100%;
	padding: 18px 10px;
	min-height: 144px;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: var(--shadow-card);
	border: 1px solid rgba(219, 231, 223, 0.95);
	transition: transform 0.24s ease, box-shadow 0.24s ease;
	overflow: hidden;
	min-width: 0;
	text-align: center;
}

.category-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 44px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent);
	pointer-events: none;
}

.category-card:hover,
.category-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--shadow-float);
}

.category-card__icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 86px;
	height: 86px;
	border-radius: 22px;
	background: transparent;
	box-shadow: none;
}

.category-card__icon img {
	width: 70px;
	height: 70px;
	object-fit: contain;
}

.category-card strong {
	position: relative;
	z-index: 1;
	display: -webkit-box;
	align-items: center;
	justify-content: center;
	font-size: 0.92rem;
	line-height: 1.18;
	font-weight: 800;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-wrap: balance;
}

@media (max-width: 980px) {
	.category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.featured-showcase__heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	padding: 0 2px;
}

.featured-showcase__heading h2 {
	margin: 0;
	font-size: clamp(2rem, 3vw, 2.35rem);
	line-height: 1;
	font-weight: 900;
	letter-spacing: -0.04em;
}

.featured-showcase__heading-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 14px;
	color: var(--text);
	background: rgba(21, 40, 29, 0.04);
}

.featured-showcase__heading-icon svg {
	width: 20px;
	height: 20px;
}

.featured-showcase {
	position: relative;
	display: grid;
	gap: 0;
	padding: 0;
	background: #ffffff;
	border: 1px solid rgba(225, 235, 229, 0.92);
	border-radius: 10px;
	box-shadow: var(--shadow-card);
	overflow: hidden;
}

.featured-showcase__track {
	display: flex;
	transition: transform 0.55s ease;
	will-change: transform;
}

.featured-showcase__slide {
	flex: 0 0 100%;
	min-width: 0;
	display: block;
}

.featured-showcase__slide.is-single {
	display: block;
}

.featured-showcase__dots {
	position: absolute;
	left: 50%;
	bottom: 12px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 6px 8px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(10px);
	transform: translateX(-50%);
}

.featured-showcase__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: rgba(31, 154, 97, 0.22);
	box-shadow: none;
	transition: width 0.22s ease, background-color 0.22s ease, transform 0.22s ease;
	cursor: pointer;
}

.featured-showcase__dot.is-active {
	width: 24px;
	background: var(--brand);
}

.featured-card,
.content-card,
.page-screen,
.detail-screen__body,
.empty-state__card {
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.84);
	border-radius: 28px;
	box-shadow: var(--shadow-card);
}

.featured-card {
	display: block;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	min-width: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

.featured-card--primary {
	min-height: 100%;
}

.featured-card--secondary {
	min-height: 100%;
}

.featured-card__media {
	display: block;
	overflow: hidden;
	background: var(--surface-alt);
	height: 300px;
	box-shadow: none;
}

.featured-card--primary .featured-card__media {
	height: 300px;
	aspect-ratio: auto;
}

.featured-card--secondary .featured-card__media {
	height: 300px;
	aspect-ratio: auto;
}

.featured-card__media img,
.content-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.featured-card__body,
.content-card__body {
	display: grid;
	align-content: start;
	gap: 10px;
	padding: 18px 18px 20px;
	min-width: 0;
}

.featured-card--primary .featured-card__body {
	padding: 16px 20px 20px;
}

.featured-card--secondary .featured-card__body {
	padding: 15px 16px 18px;
}

.featured-card__title,
.content-card__title {
	margin: 0;
	font-size: 1rem;
	line-height: 1.34;
	font-weight: 800;
	letter-spacing: -0.025em;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-wrap: balance;
}

.featured-card--primary .featured-card__title {
	font-size: clamp(1.24rem, 2vw, 1.62rem);
	line-height: 1.24;
}

.featured-card--secondary .featured-card__title {
	font-size: 1.04rem;
	line-height: 1.32;
}

.featured-card__title a {
	color: inherit;
}

.featured-card__meta,
.content-card__meta,
.detail-screen__meta,
.archive-description,
.site-footer__inner,
.drawer-panel__card p {
	color: var(--muted);
	font-size: 0.84rem;
	line-height: 1.5;
}

.featured-card p:last-child,
.content-card__text {
	margin: 0;
	color: var(--muted-strong);
	font-size: 0.9rem;
	line-height: 1.58;
}

.updates-main {
	padding-bottom: 24px;
}

.updates-shell {
	max-width: 760px;
	margin: 0 auto;
	padding: 16px var(--page-gutter) 0;
	display: grid;
	gap: 14px;
}

.listing-header--compact {
	padding: 18px 20px;
}

.updates-list {
	display: grid;
	gap: 0;
}

.update-card {
	display: grid;
	grid-template-columns: minmax(118px, 34%) minmax(0, 1fr);
	gap: 10px;
	padding: 0 0 14px;
	background: transparent;
	border: 0;
	border-bottom: 1px solid rgba(223, 233, 227, 0.82);
	border-radius: 0;
	box-shadow: none;
	align-items: start;
	margin: 0 0 14px;
}

.update-card:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.update-card__media {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	background: #eef5f1;
	min-height: 104px;
}

.update-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.update-card__body {
	display: grid;
	align-content: start;
	gap: 2px;
	min-width: 0;
}

.update-card__title {
	margin: 0;
	color: var(--text);
	font-size: 1.12rem;
	line-height: 1.18;
	letter-spacing: -0.03em;
	font-weight: 900;
}

.update-card__title a {
	color: inherit;
}

.update-card__text {
	margin: 0;
	color: var(--text);
	font-size: 0.97rem;
	line-height: 1.46;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-wrap: balance;
}

.update-card__meta {
	margin: 0;
	color: rgba(22, 34, 28, 0.74);
	font-size: 0.76rem;
	line-height: 1.2;
	font-weight: 500;
}

.info-main {
	padding-bottom: 28px;
}

.info-shell {
	max-width: 980px;
	margin: 0 auto;
	padding: 16px var(--page-gutter) 0;
}

.info-article {
	background: #fff;
	border: 1px solid rgba(223, 233, 227, 0.82);
	border-radius: 22px;
	box-shadow: 0 14px 36px rgba(25, 45, 37, 0.06);
	padding: 18px;
	display: grid;
	gap: 18px;
}

.info-article__header {
	display: grid;
	gap: 8px;
}

.info-article__title {
	margin: 0;
	color: var(--text);
	font-size: clamp(1.35rem, 2.4vw, 2rem);
	line-height: 1.12;
	letter-spacing: -0.04em;
	font-weight: 900;
}

.info-article__excerpt {
	margin: 0;
	color: var(--muted-strong);
	font-size: 0.98rem;
	line-height: 1.62;
}

.info-article__media {
	overflow: hidden;
	border-radius: 18px;
	background: #eef5f1;
}

.info-article__media img {
	display: block;
	width: 100%;
	height: auto;
}

.info-intro {
	margin: 0 0 16px;
	color: var(--muted-strong);
	font-size: 0.98rem;
	line-height: 1.65;
}

.info-sections {
	display: grid;
	gap: 14px;
}

.info-section {
	background: #fff;
	border: 1px solid rgba(223, 233, 227, 0.82);
	border-radius: 18px;
	padding: 16px;
	box-shadow: 0 8px 24px rgba(25, 45, 37, 0.04);
	display: grid;
	gap: 14px;
}

.info-section h2 {
	margin: 0;
	color: var(--text);
	font-size: 1.08rem;
	line-height: 1.2;
	font-weight: 900;
	letter-spacing: -0.03em;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(223, 233, 227, 0.82);
}

.info-facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.info-fact {
	background: #f9fcfa;
	border: 1px solid rgba(223, 233, 227, 0.9);
	border-radius: 14px;
	padding: 12px 12px 11px;
	display: grid;
	gap: 6px;
	min-width: 0;
}

.info-fact__label {
	display: block;
	color: var(--muted);
	font-size: 0.78rem;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.01em;
}

.info-fact__value {
	display: block;
	color: var(--text);
	font-size: 0.92rem;
	line-height: 1.45;
	font-weight: 700;
	word-break: break-word;
}

.hospital-main {
	padding-bottom: 18px;
}

.hospital-shell {
	max-width: 760px;
	margin: 0 auto;
	padding: 14px var(--page-gutter) 0;
}

.hospital-list {
	display: grid;
	gap: 12px;
}

.hospital-card {
	display: grid;
	grid-template-columns: minmax(104px, 34%) minmax(0, 1fr);
	gap: 22px;
	padding: 10px;
	background: #fff;
	border: 1px solid rgba(230, 236, 232, 0.96);
	border-radius: 16px;
	box-shadow: none;
	align-items: center;
}

.hospital-card__media {
	display: block;
	overflow: hidden;
	border-radius: 12px;
	background: #eef5f1;
	min-height: 92px;
}

.hospital-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.hospital-card__body {
	display: grid;
	align-content: start;
	gap: 3px;
	min-width: 0;
}

.hospital-card__title {
	margin: 0;
	color: var(--text);
	font-size: 1.04rem;
	line-height: 1.18;
	letter-spacing: -0.03em;
	font-weight: 800;
}

.hospital-card__title a {
	color: inherit;
}

.hospital-card__text {
	margin: 0;
	color: var(--muted-strong);
	font-size: 0.88rem;
	line-height: 1.42;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.hospital-card__meta {
	margin: 0;
	color: rgba(22, 34, 28, 0.72);
	font-size: 0.72rem;
	line-height: 1.3;
}

.hospital-card__actions {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	margin-top: 2px;
}

.hospital-card__action {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 8px;
	border-radius: 12px;
	border: 2px solid transparent;
	background: linear-gradient(180deg, #10b1a3, #0aa092);
	color: #fff;
	font-size: 0.74rem;
	line-height: 1.12;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
}

.hospital-card__action--outline {
	background: #fff;
	border-color: #0aa092;
	color: #0aa092;
}

.listing-header {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 16px;
	padding: 24px;
	border-radius: 30px;
	background: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.84);
	box-shadow: var(--shadow-card);
}

.content-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	margin-top: 18px;
}

.content-card {
	overflow: hidden;
}

.content-card__media {
	display: block;
	aspect-ratio: 16 / 10;
}

.detail-screen {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
	gap: 20px;
	align-items: start;
	padding-bottom: 18px;
}

.detail-screen__media {
	width: min(320px, 100%);
	aspect-ratio: 320 / 135;
	overflow: hidden;
	border-radius: 30px;
	box-shadow: var(--shadow-soft);
}

.detail-screen__media img {
	width: 100%;
	height: 100%;
	min-height: 125px;
	object-fit: cover;
}

.detail-screen__body {
	padding: 24px;
}

.detail-screen__badge-row,
.detail-screen__actions,
.drawer-panel__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.badge-pill,
.drawer-panel__chips span {
	display: inline-flex;
	align-items: center;
	padding: 9px 14px;
	border-radius: 999px;
	background: rgba(31, 154, 97, 0.1);
	color: var(--brand-deep);
	font-size: 0.82rem;
	font-weight: 700;
}

.badge-pill--muted {
	background: rgba(21, 40, 29, 0.06);
	color: var(--muted);
}

.detail-screen__title {
	margin: 18px 0 10px;
	font-size: clamp(1.8rem, 3vw, 2.6rem);
	line-height: 1.14;
	letter-spacing: -0.02em;
}

.detail-screen__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 22px 0;
}

.detail-fact {
	padding: 16px;
	border-radius: 20px;
	background: var(--surface-alt);
	box-shadow: inset 0 0 0 1px var(--line);
}

.detail-fact span {
	display: block;
	margin-bottom: 4px;
	color: var(--muted);
	font-size: 0.8rem;
}

.detail-fact strong {
	color: var(--text);
	font-size: 0.98rem;
	word-break: break-word;
}

.detail-screen__content > *:first-child,
.page-screen__content > *:first-child {
	margin-top: 0;
}

.detail-screen__content > *:last-child,
.page-screen__content > *:last-child {
	margin-bottom: 0;
}

.single-updates .detail-screen__body {
	margin-top: 12px;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.single-updates .detail-screen__body .detail-screen__badge-row {
	margin-bottom: 12px;
}

.single-updates .detail-screen__body .detail-screen__title {
	margin-top: 0;
}

.single-updates .detail-screen__body .detail-screen__meta {
	margin-top: 0;
}

.single-updates .detail-screen__body .detail-screen__facts {
	margin-top: 16px;
}

.single-updates .detail-screen {
	grid-template-columns: minmax(0, 1fr);
	gap: 16px;
	max-width: 760px;
	margin-inline: auto;
}

.single-updates .detail-screen__media {
	width: 100%;
	max-width: none;
	aspect-ratio: 320 / 135;
	border-radius: 24px;
}

.single-updates .detail-screen__body {
	margin-top: 0;
	padding: 18px 0 0;
}

.contact-main {
	padding-bottom: 18px;
}

.contact-screen {
	max-width: 840px;
	margin: 0 auto;
	padding: 20px 0 8px;
}

.contact-screen__hero {
	display: grid;
	justify-items: center;
	gap: 14px;
	padding-top: 24px;
	text-align: center;
}

.contact-screen__heading {
	margin: 0;
	color: var(--brand-deep);
	font-size: clamp(1.6rem, 2.8vw, 2.2rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	font-weight: 700;
}

.contact-screen__logo {
	width: 92px;
	height: 92px;
	overflow: hidden;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 4px rgba(31, 154, 97, 0.14);
	flex: none;
}

.contact-screen__logo-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.contact-screen__site {
	margin: 0;
	color: var(--brand-deep);
	font-size: clamp(1.35rem, 2.8vw, 2rem);
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: -0.03em;
}

.contact-screen__subtitle {
	margin: 0;
	max-width: 680px;
	padding-inline: 10px;
	color: rgba(95, 106, 101, 0.92);
	font-size: clamp(0.98rem, 2.2vw, 1.16rem);
	line-height: 1.62;
}

.contact-screen__actions {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin: 28px 0 18px;
}

.contact-action {
	display: grid;
	justify-items: center;
	gap: 7px;
	padding: 12px 8px;
	color: var(--muted-strong);
	font-size: 0.92rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	text-align: center;
}

.contact-action + .contact-action {
	border-left: 1px solid rgba(31, 154, 97, 0.14);
}

.contact-action__icon {
	display: grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--brand-soft);
	color: var(--brand);
}

.contact-action__icon svg {
	width: 24px;
	height: 24px;
}

.contact-screen__details {
	padding-top: 8px;
}

.contact-screen__section-title {
	position: relative;
	width: fit-content;
	margin: 0 auto 18px;
	padding-bottom: 12px;
	color: var(--brand-deep);
	font-size: clamp(1.3rem, 2.4vw, 1.8rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
	text-align: center;
}

.contact-screen__section-title::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: min(320px, 82vw);
	height: 1px;
	transform: translateX(-50%);
	background: rgba(31, 154, 97, 0.18);
}

.contact-screen__content {
	color: var(--text);
	padding-inline: 10px;
	font-size: clamp(1rem, 2.4vw, 1.16rem);
	line-height: 1.9;
	text-align: justify;
}

.action-chip {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-radius: 16px;
	background: var(--surface-alt);
	color: var(--text);
	box-shadow: inset 0 0 0 1px var(--line);
	font-weight: 700;
}

.action-chip--primary {
	background: linear-gradient(135deg, var(--brand), #2ab472);
	color: #fff;
	box-shadow: none;
}

.train-main {
	padding-bottom: 18px;
}

.train-shell {
	max-width: 1220px;
	margin: 0 auto;
	padding: 10px var(--page-gutter) 0;
	display: grid;
	gap: 12px;
}

.train-embed {
	display: grid;
	gap: 12px;
}

.train-embed__bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 10px 14px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(230, 236, 232, 0.96);
	box-shadow: var(--shadow-soft);
}

.train-embed__actions {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.train-embed__label {
	font-size: 0.84rem;
	font-weight: 700;
	color: var(--brand-deep);
}

.train-embed__toggle,
.train-embed__open {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	padding: 0 14px;
	border-radius: 999px;
	border: 0;
	background: linear-gradient(135deg, var(--brand), #2ab472);
	color: #fff;
	font-size: 0.8rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.train-embed__toggle {
	background: #fff;
	color: var(--brand-deep);
	box-shadow: inset 0 0 0 1px rgba(31, 154, 97, 0.18);
}

.train-embed__frame-wrap {
	overflow: hidden;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(230, 236, 232, 0.96);
	box-shadow: var(--shadow-card);
}

.train-embed__frame {
	display: block;
	width: 100%;
	height: min(88svh, 1120px);
	min-height: 820px;
	border: 0;
	background: #fff;
	pointer-events: auto;
	touch-action: auto;
}

.train-embed.is-fullscreen {
	position: fixed;
	inset: 0;
	z-index: 999;
	padding: 8px;
	background: rgba(245, 250, 247, 0.98);
}

.train-embed.is-fullscreen .train-embed__bar {
	position: sticky;
	top: 0;
	z-index: 2;
}

.train-embed.is-fullscreen .train-embed__frame-wrap {
	height: calc(100svh - 70px);
	border-radius: 16px;
}

.train-embed.is-fullscreen .train-embed__frame {
	height: 100%;
	min-height: 0;
}

@media (min-width: 1025px) {
	.single-hospital .detail-screen {
		grid-template-columns: minmax(0, 1fr);
		gap: 18px;
		max-width: 880px;
		margin-inline: auto;
	}

	.single-hospital .detail-screen__media {
		width: 100%;
		max-width: none;
		aspect-ratio: 16 / 8.7;
		border-radius: 20px;
		box-shadow: none;
	}

	.single-hospital .detail-screen__body {
		padding: 0;
	}

	.single-hospital .detail-screen__badge-row {
		margin-bottom: 10px;
	}

	.single-hospital .detail-screen__title {
		margin-top: 12px;
		margin-bottom: 8px;
		font-size: clamp(2.1rem, 3vw, 2.9rem);
	}

	.single-hospital .detail-screen__meta {
		margin-bottom: 4px;
	}

	.single-hospital .detail-screen__facts {
		margin-top: 18px;
		gap: 14px;
	}

	.single-hospital .detail-fact {
		padding: 16px;
		border-radius: 18px;
	}

	.single-hospital .detail-screen__content {
		margin-top: 18px;
		font-size: 1rem;
		line-height: 1.78;
	}

	.single-hospital .detail-screen__actions {
		margin-top: 16px;
	}

	.train-embed__frame {
		height: min(86svh, 1080px);
	}
}

.profile-main {
	padding-bottom: 12px;
}

.profile-shell {
	max-width: 760px;
	margin: 0 auto;
	padding: 10px var(--page-gutter) 0;
	display: grid;
	gap: 12px;
}

.profile-hero {
	position: relative;
	display: flex;
	align-items: center;
	min-height: 112px;
	padding: 14px 14px 14px 112px;
	border-radius: 20px;
	background: #fff;
	border: 1px solid rgba(230, 236, 232, 0.96);
	box-shadow: none;
	overflow: hidden;
}

.profile-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: none;
	pointer-events: none;
}

.profile-hero__avatar {
	position: absolute;
	left: 14px;
	top: 50%;
	z-index: 1;
	width: 88px;
	height: 88px;
	transform: translateY(-50%);
	border-radius: 50%;
	background: #fff;
	box-shadow: none;
	display: grid;
	place-items: center;
	overflow: hidden;
	border: 1px solid rgba(230, 236, 232, 0.96);
}

.profile-hero__avatar .avatar,
.profile-hero__avatar-image {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.profile-hero__avatar-fallback {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #214866;
}

.profile-hero__avatar-fallback svg {
	width: 40px;
	height: 40px;
}

.profile-hero__body {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 3px;
	min-width: 0;
}

.profile-hero__body h1 {
	margin: 0;
	color: #102018;
	font-size: clamp(1.32rem, 2.8vw, 1.86rem);
	line-height: 1.08;
	letter-spacing: -0.035em;
}

.profile-hero__body p {
	margin: 0;
	color: rgba(26, 40, 33, 0.72);
	font-size: 0.78rem;
	line-height: 1.32;
}

.profile-quick-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
}

.profile-quick-card {
	display: grid;
	grid-template-columns: 1fr;
	align-content: start;
	gap: 8px;
	padding: 10px 10px 8px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(230, 236, 232, 0.96);
	box-shadow: none;
	min-height: 92px;
}

.profile-quick-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 38px;
	border-radius: 12px;
	background: #ffffff;
	color: #0d9e93;
	box-shadow: none;
}

.profile-quick-card__icon svg {
	width: 20px;
	height: 20px;
}

.profile-quick-card__content {
	display: grid;
	gap: 1px;
}

.profile-quick-card__content strong,
.profile-quick-card__content span {
	display: block;
	color: #102018;
	font-size: 0.72rem;
	line-height: 1.12;
	font-weight: 600;
}

.profile-menu {
	display: grid;
	gap: 8px;
}

.profile-menu__item {
	display: grid;
	grid-template-columns: 62px minmax(0, 1fr) 18px;
	align-items: center;
	gap: 8px;
	padding: 12px 10px;
	border-radius: 16px;
	background: #fff;
	border: 1px solid rgba(230, 236, 232, 0.96);
	box-shadow: none;
	color: inherit;
	text-decoration: none;
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.profile-menu__item:hover,
.profile-menu__item:focus-visible {
	transform: translateY(-2px);
	box-shadow: none;
}

.profile-menu__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 54px;
	height: 36px;
	border-radius: 12px;
	background: #ffffff;
	color: #0d9e93;
	box-shadow: none;
}

.profile-menu__icon svg {
	width: 20px;
	height: 20px;
}

.profile-menu__label {
	color: #102018;
	font-size: clamp(0.9rem, 1.8vw, 1.12rem);
	line-height: 1.12;
	font-weight: 500;
	letter-spacing: -0.03em;
}

.profile-menu__arrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #09100c;
}

.profile-menu__arrow svg {
	width: 16px;
	height: 16px;
}

.profile-edit-main {
	padding-bottom: 12px;
}

.profile-edit-shell {
	max-width: 560px;
	margin: 0 auto;
	padding: 10px 18px 0;
	display: grid;
	gap: 10px;
}

.profile-edit-card {
	display: grid;
	gap: 10px;
	padding: 12px 12px 10px;
	border-radius: 18px;
	background: #ffffff;
	border: 0;
	box-shadow: none;
}

.profile-edit-hero {
	display: grid;
	place-items: center;
	gap: 6px;
	text-align: center;
	padding-top: 2px;
}

.profile-edit-hero__avatar {
	position: relative;
	width: 86px;
	height: 86px;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(18, 33, 24, 0.1);
	cursor: pointer;
}

.profile-edit-hero__avatar--upload {
	display: block;
	border: 0;
	padding: 0;
	background: transparent;
}

.profile-edit-hero__avatar-media {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: inherit;
	overflow: hidden;
}

.profile-edit-hero__avatar-camera {
	position: absolute;
	right: 4px;
	bottom: 4px;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.94);
	color: var(--brand-deep);
	box-shadow: 0 8px 18px rgba(18, 33, 24, 0.15);
	pointer-events: none;
}

.profile-edit-hero__avatar-camera svg {
	width: 14px;
	height: 14px;
}

.profile-edit-hero__avatar input[type="file"] {
	position: absolute;
	inset: 0;
	opacity: 0;
	cursor: pointer;
}

.profile-edit-hero__avatar-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.profile-edit-hero__body {
	display: grid;
	gap: 2px;
}

.profile-edit-hero__body h1 {
	margin: 0;
	font-size: 1.06rem;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.profile-edit-hero__body p {
	margin: 0;
	color: var(--muted);
	font-size: 0.72rem;
	line-height: 1.32;
}

.profile-edit-form {
	display: grid;
	gap: 8px;
}

.profile-edit-note {
	margin-top: 2px;
	color: var(--muted);
	font-size: 0.72rem;
	line-height: 1.34;
	text-align: center;
}

.auth-main {
	padding-bottom: 12px;
}

.auth-shell {
	max-width: 560px;
	margin: 0 auto;
	padding: 8px 18px 0;
}

.auth-card {
	display: grid;
	gap: 10px;
	width: 100%;
	padding: 12px 12px 10px;
	border-radius: 20px;
	background: #ffffff;
	border: 0;
	box-shadow: none;
}

.auth-card--login {
	max-width: 430px;
	margin: 0 auto;
}

.auth-card--register {
	max-width: 560px;
	margin: 0 auto;
}

.auth-brand {
	display: grid;
	place-items: center;
	margin-bottom: 0;
}

.auth-brand__logo {
	width: min(84px, 24vw);
	height: auto;
	object-fit: contain;
}

.auth-brand__avatar {
	position: relative;
	display: grid;
	place-items: center;
	width: 84px;
	height: 84px;
	border-radius: 50%;
	background: linear-gradient(180deg, #fb8066 0%, #fb8066 50%, #76d0f0 50%, #76d0f0 100%);
	border: 4px solid #0f9e93;
	box-shadow: 0 12px 24px rgba(18, 33, 24, 0.12);
	color: #2f4a63;
	overflow: hidden;
}

.auth-brand__avatar svg {
	width: 44px;
	height: 44px;
}

.auth-brand__badge {
	position: absolute;
	right: 4px;
	bottom: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.72);
	backdrop-filter: blur(10px);
	color: #7b7f84;
	box-shadow: 0 8px 18px rgba(23, 33, 28, 0.16);
}

.auth-brand__badge svg {
	width: 14px;
	height: 14px;
}

.auth-card__top {
	display: grid;
	gap: 3px;
	text-align: center;
}

.auth-card__top h1 {
	margin: 0;
	font-size: clamp(1.24rem, 2.4vw, 1.72rem);
	line-height: 1.12;
	letter-spacing: -0.04em;
}

.auth-card__top p {
	margin: 0;
	color: var(--muted);
	font-size: 0.76rem;
	line-height: 1.38;
}

.auth-notice {
	padding: 8px 10px;
	border-radius: 10px;
	font-size: 0.78rem;
	line-height: 1.34;
	font-weight: 600;
}

.auth-notice--error {
	background: rgba(214, 58, 58, 0.08);
	color: #a52c2c;
	border: 1px solid rgba(214, 58, 58, 0.16);
}

.auth-notice--success {
	background: rgba(31, 154, 97, 0.1);
	color: var(--brand-deep);
	border: 1px solid rgba(31, 154, 97, 0.16);
}

.auth-form {
	display: grid;
	gap: 8px;
}

.auth-field {
	display: flex;
	align-items: center;
	gap: 7px;
	min-height: 46px;
	padding: 0 10px 0 8px;
	border-radius: 12px;
	background: #ffffff;
	border: 2px solid rgba(170, 170, 170, 0.72);
	box-shadow: none;
}

.auth-field__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	color: #09100c;
	flex-shrink: 0;
}

.auth-field__icon svg {
	width: 20px;
	height: 20px;
}

.auth-field input,
.auth-field select {
	flex: 1 1 auto;
	min-width: 0;
	min-height: 42px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--text);
	font-size: 0.86rem;
	line-height: 1.18;
	box-shadow: none;
	outline: none;
}

.auth-field select {
	appearance: none;
}

.auth-field__toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	margin-left: auto;
	border: 0;
	background: transparent;
	color: rgba(22, 34, 28, 0.52);
	flex-shrink: 0;
}

.auth-field__toggle svg {
	width: 16px;
	height: 16px;
}

.auth-password-help {
	display: flex;
	justify-content: flex-end;
}

.auth-password-help a {
	color: var(--brand);
	font-size: 0.76rem;
	font-weight: 700;
}

.auth-check {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 0 2px 0;
}

.auth-check input {
	width: 16px;
	height: 16px;
	accent-color: var(--brand);
}

.auth-check span {
	color: var(--muted-strong);
	font-size: 0.76rem;
	font-weight: 700;
}

.auth-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 14px;
	border: 0;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--brand), #27b56f);
	color: #ffffff;
	font-size: 0.86rem;
	font-weight: 800;
	box-shadow: 0 14px 28px rgba(31, 154, 97, 0.2);
	cursor: pointer;
}

.auth-switch {
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	justify-content: center;
	color: var(--muted);
	font-size: 0.76rem;
}

.auth-switch a {
	color: var(--brand-deep);
	font-weight: 800;
}

.doctor-main {
	padding-bottom: 24px;
}

.doctor-shell {
	max-width: 1120px;
	margin: 0 auto;
	padding: 16px var(--page-gutter) 0;
	display: grid;
	gap: var(--section-gap);
}

.doctor-shell--listing {
	max-width: 760px;
}

.doctor-hero,
.doctor-section-head,
.doctor-detail__body {
	background: #ffffff;
	border: 1px solid rgba(225, 235, 229, 0.94);
	border-radius: 28px;
	box-shadow: var(--shadow-card);
}

.doctor-hero,
.doctor-section-head {
	padding: 22px 22px 24px;
}

.doctor-hero h1,
.doctor-section-head h1 {
	margin: 12px 0 8px;
	font-size: clamp(1.52rem, 3vw, 2.35rem);
	line-height: 1.18;
	letter-spacing: -0.03em;
}

.doctor-hero p,
.doctor-section-head p,
.doctor-detail__summary {
	margin: 0;
	color: var(--muted);
	font-size: 0.96rem;
	line-height: 1.62;
}

.doctor-toolbar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 84px;
	gap: 10px;
	align-items: center;
}

.doctor-toolbar__search {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 60px;
	padding: 0 16px;
	background: #ffffff;
	border: 1px solid rgba(220, 231, 225, 0.94);
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(13, 38, 28, 0.08);
}

.doctor-toolbar__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: #10a99c;
	flex-shrink: 0;
}

.doctor-toolbar__icon svg {
	width: 24px;
	height: 24px;
}

.doctor-toolbar__search input {
	width: 100%;
	border: 0;
	padding: 0;
	background: transparent;
	color: var(--text);
	font-size: 1rem;
	line-height: 1.4;
}

.doctor-toolbar__search input:focus {
	outline: none;
}

.doctor-toolbar__count {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60px;
	padding: 0 10px;
	background: #dff4f0;
	border: 1px solid rgba(188, 230, 222, 0.92);
	border-radius: 18px;
	color: var(--text);
	font-size: 1.08rem;
	font-weight: 800;
	box-shadow: 0 10px 30px rgba(13, 38, 28, 0.06);
}

.doctor-toolbar__result {
	margin: -4px 0 2px;
	color: var(--muted);
	font-size: 0.92rem;
	font-weight: 600;
}

.doctor-category-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.doctor-category-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 152px;
	padding: 18px 12px;
	background: #ffffff;
	border: 1px solid rgba(223, 233, 227, 0.94);
	border-radius: 22px;
	box-shadow: var(--shadow-card);
	text-align: center;
	transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.doctor-category-card:hover,
.doctor-category-card:focus-visible {
	transform: translateY(-2px);
	box-shadow: var(--shadow-float);
}

.doctor-category-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 246, 0.98));
	box-shadow: inset 0 0 0 1px rgba(226, 235, 229, 0.92);
}

.doctor-category-card__icon img {
	width: 68px;
	height: 68px;
	object-fit: contain;
}

.doctor-category-card strong {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	overflow-wrap: anywhere;
	color: var(--text);
	font-size: 0.95rem;
	line-height: 1.34;
	font-weight: 800;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.doctor-list-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.doctor-card {
	display: grid;
	grid-template-columns: 138px minmax(0, 1fr);
	gap: 14px;
	padding: 14px;
	background: #ffffff;
	border: 1px solid rgba(222, 232, 226, 0.94);
	border-radius: 22px;
	box-shadow: 0 10px 28px rgba(12, 34, 25, 0.08);
	align-items: start;
}

.doctor-card__media {
	display: block;
	min-height: 138px;
	aspect-ratio: 1 / 1.04;
	border-radius: 16px;
	overflow: hidden;
	background: #eef5f1;
}

.doctor-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.doctor-card__body {
	display: grid;
	align-content: start;
	gap: 4px;
	min-width: 0;
}

.doctor-card__title {
	margin: 0;
	font-size: 1.16rem;
	line-height: 1.25;
	letter-spacing: -0.03em;
	font-weight: 800;
}

.doctor-card__content {
	display: grid;
	gap: 0;
}

.doctor-card__line {
	margin: 0;
	color: var(--text);
	font-size: 0.92rem;
	line-height: 1.18;
	white-space: pre-line;
}

.doctor-card__line span {
	display: inline-block;
	margin-right: 4px;
	color: var(--muted-strong);
	font-weight: 800;
}

.doctor-card__summary {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	color: var(--muted-strong);
	font-size: 0.95rem;
	line-height: 1.6;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.doctor-card__line--muted {
	margin: 0;
	color: var(--muted);
	font-size: 0.9rem;
}

.doctor-card__actions {
	display: grid;
	grid-column: 1 / -1;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
	margin-top: 2px;
}

.doctor-card__action {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	min-height: 44px;
	padding: 8px 10px;
	cursor: pointer;
	appearance: none;
	border-radius: 14px;
	border: 2px solid transparent;
	background: linear-gradient(180deg, #10b1a3, #0aa092);
	text-align: center;
	text-decoration: none;
	color: #ffffff;
	font-size: 0.82rem;
	line-height: 1.15;
	font-weight: 700;
	font: inherit;
	white-space: normal;
	text-wrap: pretty;
}

.doctor-card__action svg {
	display: none;
}

.doctor-card__action--primary {
	background: linear-gradient(180deg, #10b1a3, #0aa092);
	color: #ffffff;
}

.doctor-card__action--outline {
	background: #ffffff;
	border-color: #0aa092;
	color: #0aa092;
}

.doctor-modal[hidden] {
	display: none !important;
}

.doctor-modal {
	position: fixed;
	inset: 0;
	z-index: 1300;
	display: grid;
	place-items: center;
	padding: 18px;
}

.doctor-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(10, 19, 15, 0.42);
	backdrop-filter: blur(3px);
}

.doctor-modal__panel {
	position: relative;
	width: min(100%, 520px);
	max-height: min(88vh, 760px);
	overflow: auto;
	background: #ffffff;
	border-radius: 22px;
	box-shadow: 0 22px 60px rgba(12, 31, 24, 0.22);
}

.doctor-modal__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 18px 20px;
	background: linear-gradient(180deg, #10b1a3, #0aa092);
	color: #ffffff;
}

.doctor-modal__header h2 {
	margin: 0;
	font-size: 1.26rem;
	line-height: 1.2;
	font-weight: 800;
}

.doctor-modal__close {
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
	font-size: 1.1rem;
	font-weight: 700;
}

.doctor-modal__body {
	padding: 20px;
}

.doctor-modal__copy {
	color: var(--text);
	font-size: 1rem;
	line-height: 1.72;
}

.doctor-modal__copy p {
	margin: 0 0 12px;
}

.doctor-modal__copy p:last-child {
	margin-bottom: 0;
}

.doctor-modal__details {
	display: grid;
	gap: 12px;
}

.doctor-modal__detail-row {
	display: grid;
	gap: 4px;
	color: var(--text);
	font-size: 1rem;
	line-height: 1.6;
}

.doctor-modal__detail-row strong {
	font-weight: 800;
}

.doctor-modal__detail-row span {
	white-space: pre-line;
}

.doctor-modal__actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.doctor-modal__action {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 50px;
	padding: 0 14px;
	border: 2px solid #0aa092;
	border-radius: 14px;
	background: #ffffff;
	color: #0aa092;
	text-decoration: none;
	font: inherit;
	font-size: 1rem;
	font-weight: 800;
	cursor: pointer;
	appearance: none;
}

.doctor-modal__action--primary {
	border-color: transparent;
	background: linear-gradient(180deg, #10b1a3, #0aa092);
	color: #ffffff;
}

.doctor-modal__action:last-child:nth-child(odd) {
	grid-column: 1 / -1;
}

.doctor-detail__treatments {
	padding: 18px 20px;
	border-radius: 22px;
	background: var(--surface-alt);
	box-shadow: inset 0 0 0 1px var(--line);
}

.doctor-detail__treatments h2 {
	margin: 0 0 10px;
	font-size: 1.06rem;
	line-height: 1.3;
}

.doctor-detail__treatments-copy {
	color: var(--text);
	font-size: 0.96rem;
	line-height: 1.68;
}

.doctor-detail__treatments-copy p {
	margin: 0 0 10px;
}

.doctor-detail__treatments-copy p:last-child {
	margin-bottom: 0;
}

.doctor-detail {
	max-width: 1120px;
	margin: 0 auto;
	padding: 16px var(--page-gutter) 24px;
	display: grid;
	grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
	gap: 20px;
	align-items: start;
	min-width: 0;
}

.doctor-detail__media {
	overflow: hidden;
	background: #ffffff;
	border: 1px solid rgba(225, 235, 229, 0.94);
	border-radius: 30px;
	box-shadow: var(--shadow-soft);
	min-width: 0;
}

.doctor-detail__media img {
	width: 100%;
	height: 100%;
	aspect-ratio: 4 / 4.7;
	object-fit: cover;
}

.doctor-detail__body {
	padding: 24px;
	min-width: 0;
	display: grid;
	align-content: start;
	gap: 18px;
}

.doctor-detail__badge-row,
.doctor-detail__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.doctor-detail__title {
	margin: 0;
	font-size: clamp(1.9rem, 3vw, 2.8rem);
	line-height: 1.1;
	letter-spacing: -0.03em;
}

.doctor-detail__subtitle {
	margin: 0 0 14px;
	color: var(--muted-strong);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
}

.doctor-detail__facts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin: 0;
}

.doctor-detail__fact {
	padding: 15px 16px;
	border-radius: 20px;
	background: var(--surface-alt);
	box-shadow: inset 0 0 0 1px var(--line);
}

.doctor-detail__fact span {
	display: block;
	margin-bottom: 4px;
	color: var(--muted);
	font-size: 0.8rem;
}

.doctor-detail__fact strong {
	display: block;
	color: var(--text);
	font-size: 0.96rem;
	line-height: 1.5;
	word-break: break-word;
	white-space: pre-line;
}

.doctor-detail__actions {
	margin-top: 2px;
}

.doctor-detail__description {
	margin-top: 20px;
}

.doctor-detail__description > *:first-child {
	margin-top: 0;
}

.doctor-detail__description > *:last-child {
	margin-bottom: 0;
}

@media (max-width: 980px) {
	.doctor-detail {
		max-width: 760px;
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.doctor-detail__media img {
		aspect-ratio: 4 / 3.8;
		max-height: 560px;
	}
}

.page-screen {
	padding: 24px;
}

.site-footer {
	padding: 24px 14px 108px;
}

.site-footer__inner {
	max-width: 1120px;
	margin: 0 auto;
	text-align: center;
}

.bottom-nav {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 45;
	padding: 0 14px calc(env(safe-area-inset-bottom, 0px) + 14px);
}

.bottom-nav__inner {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
	max-width: 720px;
	margin: 0 auto;
	padding: 8px;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.98);
	box-shadow: 0 -12px 32px rgba(18, 33, 24, 0.12), 0 4px 10px rgba(18, 33, 24, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.84);
	backdrop-filter: blur(18px);
}

.bottom-nav__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding: 9px 6px 8px;
	border-radius: 16px;
	color: var(--muted);
	font-size: 0.73rem;
	font-weight: 700;
	line-height: 1.1;
	min-width: 0;
}

.bottom-nav__item.is-active {
	background: rgba(31, 154, 97, 0.12);
	color: var(--brand-deep);
}

.bottom-nav__label {
	display: block;
	max-width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.drawer-layer {
	position: fixed;
	inset: 0;
	z-index: 60;
}

.drawer-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(17, 33, 24, 0.42);
	backdrop-filter: blur(6px);
}

.drawer-panel {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	width: min(400px, calc(100% - 52px));
	height: 100%;
	background: #ffffff;
	box-shadow: 16px 0 36px rgba(15, 30, 22, 0.14);
	transform: translateX(-100%);
	transition: transform 0.3s ease;
	overflow: hidden;
}

.drawer-layer.is-open .drawer-panel {
	transform: translateX(0);
}

.drawer-panel__topbar {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 2;
}

.drawer-panel__banner {
	position: relative;
	height: 142px;
	background: linear-gradient(135deg, #13a57d, #6ed7c9);
}

.drawer-panel__banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.drawer-panel__body {
	flex: 1;
	overflow-y: auto;
	background: #ffffff;
	padding-bottom: calc(env(safe-area-inset-bottom, 0px) + 14px);
}

.drawer-group {
	padding: 10px 0 6px;
	border-top: 1px solid rgba(22, 34, 28, 0.1);
}

.drawer-group:first-child {
	border-top: 0;
	padding-top: 10px;
}

.drawer-group__title {
	margin: 0;
	padding: 0 20px 8px;
	color: #8b8f8c;
	font-size: 0.72rem;
	font-weight: 500;
	line-height: 1.3;
}

.drawer-group__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.drawer-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	color: #111713;
}

.drawer-item__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 22px;
	width: 22px;
	height: 22px;
	color: #080b09;
}

.drawer-item__icon svg,
.drawer-item__icon i {
	width: 22px;
	height: 22px;
	font-size: 20px;
	line-height: 1;
}

.drawer-item__label {
	font-size: 0.84rem;
	line-height: 1.2;
	font-weight: 500;
	letter-spacing: -0.02em;
}

.drawer-item:hover,
.drawer-item:focus-visible {
	background: #f7f9f7;
}

.search-sheet {
	position: fixed;
	inset: 0;
	z-index: 59;
	display: grid;
	place-items: start center;
	padding: 88px 14px 20px;
	background: rgba(15, 30, 22, 0.24);
	backdrop-filter: blur(8px);
}

.search-sheet__panel {
	width: min(620px, 100%);
	padding: 20px;
	border-radius: 24px;
	background: #ffffff;
	box-shadow: var(--shadow-soft);
}

.search-sheet__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.search-sheet__header h2 {
	margin: 0;
	font-size: 1.22rem;
}

.search-sheet__form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 10px;
}

.search-sheet__form input {
	min-height: 52px;
	padding: 0 16px;
	border: 1px solid rgba(21, 40, 29, 0.08);
	border-radius: 16px;
	background: var(--surface-alt);
}

.search-sheet__form button {
	padding: 0 20px;
	border: 0;
	border-radius: 16px;
	background: linear-gradient(135deg, var(--brand), #2eb074);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.pagination-wrap {
	margin: 22px 0 10px;
}

.pagination-wrap .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination-wrap .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 14px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: var(--shadow-card);
}

.pagination-wrap .page-numbers.current {
	background: var(--brand);
	color: #fff;
}

.empty-state {
	padding: 10px 0 2px;
}

.empty-state__card {
	padding: 26px;
	text-align: center;
}

.empty-state__card h2 {
	margin: 0 0 8px;
	font-size: 1.2rem;
}

.empty-state__card p {
	margin: 0;
	color: var(--muted);
}

body.is-locked {
	overflow: hidden;
}

@media (max-width: 1024px) {
	.featured-showcase {
		padding: 0;
	}

	.featured-showcase__slide {
		display: block;
	}

	.content-grid,
	.detail-screen {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 782px) {
	body.admin-bar .app-header {
		top: 46px;
	}
}

@media (max-width: 767px) {
	.app-header {
		padding: 0;
	}

	.app-header__inner {
		grid-template-columns: 40px minmax(0, 1fr) 40px;
		padding: 10px 14px 8px;
		border-radius: 0;
	}

		.app-brand__wordmark {
			font-size: 1.58rem;
		}

		.hero-slide {
			min-height: 184px;
		}

	.section-heading {
		align-items: start;
		flex-direction: column;
		gap: 6px;
		width: 100%;
	}

	.section-link {
		font-size: 0.86rem;
		align-self: flex-start;
		white-space: normal;
	}

	.featured-showcase {
		padding: 0;
		border-radius: 10px;
		gap: 0;
	}

	.train-shell {
		padding: 8px 0 0;
		gap: 12px;
	}

	.train-embed__bar {
		padding: 9px 12px;
		border-radius: 14px;
	}

	.train-embed__actions {
		gap: 6px;
	}

	.train-embed__toggle,
	.train-embed__open {
		min-height: 34px;
		padding: 0 12px;
		font-size: 0.76rem;
	}

	.train-embed__frame-wrap {
		border-radius: 16px;
	}

	.train-embed__frame {
		height: calc(100svh - 170px);
		min-height: 680px;
	}

	.train-embed.is-fullscreen {
		padding: 6px;
	}

	.train-embed.is-fullscreen .train-embed__frame-wrap {
		height: calc(100svh - 62px);
	}

	.featured-showcase__slide {
		display: block;
	}

	.featured-card__media,
	.featured-card--primary .featured-card__media,
	.featured-card--secondary .featured-card__media {
		height: 120px;
	}

	.category-card.is-mobile-hidden {
		display: none;
	}

	.content-grid {
		grid-template-columns: 1fr;
	}

	.update-card {
		grid-template-columns: minmax(108px, 37%) minmax(0, 1fr);
		gap: 9px;
		padding: 0 0 12px;
		margin-bottom: 12px;
	}

	.update-card__media {
		min-height: 98px;
		border-radius: 11px;
	}

	.update-card__body {
		gap: 1px;
	}

	.update-card__title {
		font-size: 1rem;
		line-height: 1.18;
	}

	.update-card__text {
		font-size: 0.88rem;
		line-height: 1.44;
	}

	.update-card__meta {
		font-size: 0.7rem;
	}

	.hospital-shell {
		padding-top: 14px;
	}

	.hospital-list {
		gap: 12px;
	}

		.hospital-card {
			grid-template-columns: minmax(108px, 37%) minmax(0, 1fr);
			gap: 18px;
			padding: 0;
		background: transparent;
		border: 0;
		border-bottom: 1px solid rgba(223, 233, 227, 0.82);
		border-radius: 0;
		align-items: start;
		margin: 0 0 12px;
	}

	.hospital-card:last-child {
		margin-bottom: 0;
		padding-bottom: 0;
		border-bottom: 0;
	}

		.hospital-card__media {
			min-height: 76px;
			aspect-ratio: 16 / 8;
			border-radius: 11px;
		}

	.hospital-card__body {
		gap: 2px;
	}

	.hospital-card__title {
		font-size: 1rem;
		line-height: 1.18;
	}

	.hospital-card__text {
		font-size: 0.88rem;
		line-height: 1.44;
	}

	.hospital-card__meta {
		font-size: 0.7rem;
	}

	.hospital-card__actions {
		gap: 6px;
		margin-top: 0;
	}

	.hospital-card__action {
		min-height: 38px;
		padding: 7px 6px;
		border-radius: 11px;
		font-size: 0.7rem;
	}

	.doctor-shell {
		gap: 14px;
		padding-top: 12px;
		padding-right: 14px;
		padding-left: 14px;
	}

	.doctor-hero,
	.doctor-section-head {
		padding: 18px 16px 20px;
		border-radius: 22px;
	}

	.doctor-hero h1,
	.doctor-section-head h1 {
		margin-top: 10px;
		font-size: 1.72rem;
		line-height: 1.22;
		letter-spacing: -0.02em;
	}

	.doctor-hero p,
	.doctor-section-head p {
		font-size: 0.92rem;
		line-height: 1.56;
	}

	.doctor-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 9px;
	}

	.doctor-category-card {
		gap: 8px;
		min-height: 126px;
		padding: 12px 6px 10px;
		border-radius: 16px;
	}

	.doctor-category-card__icon {
		width: 56px;
		height: 56px;
		border-radius: 16px;
	}

	.doctor-category-card__icon img {
		width: 44px;
		height: 44px;
	}

		.doctor-category-card strong {
			font-size: 0.74rem;
			line-height: 1.22;
			-webkit-line-clamp: 2;
		}

		.doctor-toolbar {
			grid-template-columns: minmax(0, 1fr) 72px;
			gap: 10px;
		}

		.doctor-toolbar__search,
		.doctor-toolbar__count {
			min-height: 54px;
			border-radius: 16px;
		}

		.doctor-toolbar__search {
			padding: 0 15px;
		}

		.doctor-toolbar__search input {
			font-size: 0.92rem;
		}

		.doctor-toolbar__count {
			font-size: 1.02rem;
		}

		.doctor-list-grid {
			gap: 14px;
		}

		.doctor-card {
			grid-template-columns: 120px minmax(0, 1fr);
			gap: 12px;
			padding: 12px;
			border-radius: 20px;
		}

		.doctor-card__media {
			min-height: 120px;
			border-radius: 16px;
		}

		.doctor-card__title {
			font-size: 1.04rem;
		}

		.doctor-card__line {
			font-size: 0.84rem;
			line-height: 1.2;
		}

		.doctor-card__actions {
			gap: 8px;
		}

		.doctor-card__action {
			min-height: 40px;
			padding: 8px 6px;
			border-radius: 12px;
			font-size: 0.74rem;
		}

		.doctor-modal__panel {
			width: min(100%, 480px);
		}

		.doctor-modal__actions {
			gap: 10px;
			margin-top: 16px;
		}

		.doctor-modal__action {
			min-height: 46px;
			font-size: 0.92rem;
		}

		.doctor-detail {
			padding: 12px 14px 24px;
			gap: 14px;
		}

		.doctor-detail__media,
		.doctor-detail__body {
			border-radius: 22px;
		}

		.doctor-detail__media img {
			aspect-ratio: 4 / 2.9;
			max-height: 340px;
		}

		.doctor-detail__body {
			padding: 20px;
			gap: 16px;
		}

		.doctor-detail__title {
			font-size: 1.8rem;
		}

		.doctor-detail__subtitle {
			margin-bottom: 12px;
			font-size: 0.92rem;
		}

		.doctor-detail__summary {
			font-size: 0.9rem;
			line-height: 1.56;
		}

		.doctor-detail__facts {
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 10px;
			margin: 0;
		}

		.doctor-detail__fact {
			padding: 13px 14px;
			border-radius: 16px;
		}

		.doctor-detail__fact strong {
			font-size: 0.88rem;
			line-height: 1.42;
		}

		.doctor-detail__treatments {
			padding: 16px 18px;
			border-radius: 18px;
		}

		.doctor-detail__treatments-copy {
			font-size: 0.9rem;
		}

		.doctor-detail .action-chip {
			justify-content: center;
			min-height: 44px;
			padding: 10px 14px;
			font-size: 0.84rem;
		}

	.detail-screen__media {
		width: min(320px, 100%);
		max-width: 320px;
		aspect-ratio: 320 / 135;
		margin-inline: auto;
		border-radius: 24px;
	}

		.detail-screen__media img {
			min-height: 125px;
		}
	}

@media (max-width: 640px) {
	.home-shell,
	.listing-shell,
	.detail-screen,
	.page-screen {
		padding-right: 12px;
		padding-left: 12px;
	}

	.category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.category-card {
		min-height: 126px;
		padding: 14px 6px 12px;
		border-radius: 14px;
	}

	.category-card__icon {
		width: 66px;
		height: 66px;
		border-radius: 18px;
	}

	.category-card__icon img {
		width: 54px;
		height: 54px;
	}

	.category-card strong {
		font-size: 0.78rem;
		line-height: 1.16;
	}

	.update-card {
		grid-template-columns: minmax(96px, 40%) minmax(0, 1fr);
		gap: 8px;
		padding: 0 0 10px;
		margin-bottom: 10px;
	}

	.update-card__media {
		min-height: 92px;
		border-radius: 10px;
	}

	.update-card__title {
		font-size: 0.94rem;
	}

	.update-card__text {
		font-size: 0.84rem;
		line-height: 1.38;
	}

	.update-card__meta {
		font-size: 0.66rem;
	}

	.info-shell {
		padding-top: 12px;
	}

	.info-article {
		padding: 14px;
		border-radius: 18px;
		gap: 14px;
	}

	.info-article__excerpt {
		font-size: 0.9rem;
		line-height: 1.55;
	}

	.info-section {
		padding: 14px;
		border-radius: 16px;
	}

	.info-facts {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.info-fact {
		padding: 11px;
		border-radius: 12px;
	}

	.contact-screen {
		padding-top: 16px;
	}

	.contact-screen__hero {
		gap: 12px;
		padding-top: 18px;
	}

	.contact-screen__heading {
		font-size: 1.5rem;
	}

	.contact-screen__logo {
		width: 80px;
		height: 80px;
	}

	.contact-screen__site {
		font-size: 1.32rem;
	}

	.contact-screen__subtitle {
		font-size: 0.94rem;
		line-height: 1.58;
	}

	.contact-screen__actions {
		margin: 22px 0 14px;
	}

	.contact-action {
		padding: 10px 4px;
		font-size: 0.82rem;
	}

	.contact-action__icon {
		width: 42px;
		height: 42px;
	}

	.contact-action__icon svg {
		width: 22px;
		height: 22px;
	}

	.contact-screen__section-title {
		margin-bottom: 14px;
		padding-bottom: 10px;
		font-size: 1.24rem;
	}

	.contact-screen__content {
		padding-inline: 10px;
		font-size: 0.98rem;
		line-height: 1.82;
	}

	.detail-screen__facts {
		grid-template-columns: 1fr;
	}

	.detail-screen {
		gap: 0;
	}

	.detail-screen__media {
		width: calc(100% + 24px);
		max-width: none;
		aspect-ratio: 320 / 135;
		margin-inline: -12px;
		border-radius: 5px;
	}

	.detail-screen__media img {
		min-height: 135px;
	}

	.detail-screen__body {
		padding: 14px 14px 14px;
	}

	.single-updates .detail-screen {
		max-width: none;
		margin-inline: 0;
	}

	.single-updates .detail-screen__media {
		width: calc(100% + 24px);
		margin-inline: -12px;
		border-radius: 0;
	}

	.single-updates .detail-screen__body {
		padding: 14px 0 0;
	}

	.featured-showcase__slide {
		display: block;
	}

	.featured-showcase__dots {
		gap: 6px;
		bottom: 10px;
		padding: 5px 7px;
	}

	.featured-showcase__dot {
		width: 8px;
		height: 8px;
	}

	.featured-showcase__dot.is-active {
		width: 20px;
	}

	.doctor-shell {
		padding-right: 12px;
		padding-left: 12px;
	}

	.doctor-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 8px;
	}

	.doctor-category-card {
		min-height: 120px;
		padding: 11px 5px 10px;
	}

	.doctor-category-card__icon {
		width: 50px;
		height: 50px;
		border-radius: 14px;
	}

		.doctor-category-card__icon img {
			width: 40px;
			height: 40px;
		}

		.profile-shell {
			padding-right: 10px;
			padding-left: 10px;
			gap: 10px;
		}

		.profile-hero {
			min-height: 96px;
			padding: 12px 12px 12px 78px;
			border-radius: 18px;
		}

		.profile-hero__avatar {
			left: 10px;
			width: 60px;
			height: 60px;
			border-width: 3px;
		}

		.profile-hero__avatar-fallback svg {
			width: 30px;
			height: 30px;
		}

		.profile-hero__body {
			gap: 2px;
		}

		.profile-hero__body h1 {
			font-size: 1.14rem;
		}

		.profile-hero__body p {
			font-size: 0.7rem;
		}

		.profile-quick-grid {
			gap: 6px;
		}

		.profile-quick-card {
			gap: 6px;
			padding: 8px 8px 7px;
			min-height: 76px;
			border-radius: 14px;
		}

		.profile-quick-card__icon {
			width: 40px;
			height: 30px;
			border-radius: 10px;
		}

		.profile-quick-card__icon svg {
			width: 16px;
			height: 16px;
		}

		.profile-quick-card__content strong,
		.profile-quick-card__content span {
			font-size: 0.68rem;
			line-height: 1.08;
		}

		.profile-menu {
			gap: 6px;
		}

		.profile-menu__item {
			grid-template-columns: 52px minmax(0, 1fr) 16px;
			gap: 6px;
			padding: 9px 8px;
			border-radius: 14px;
		}

		.profile-menu__icon {
			width: 42px;
			height: 30px;
			border-radius: 10px;
		}

		.profile-menu__icon svg {
			width: 16px;
			height: 16px;
		}

		.profile-menu__label {
			font-size: 0.8rem;
		}

		.profile-edit-shell {
			padding-right: 12px;
			padding-left: 12px;
			gap: 8px;
		}

		.profile-edit-card {
			gap: 8px;
			padding: 10px 10px 8px;
			border-radius: 16px;
		}

		.profile-edit-hero__avatar {
			width: 74px;
			height: 74px;
		}

		.profile-edit-hero__avatar-camera {
			right: 3px;
			bottom: 3px;
			width: 24px;
			height: 24px;
		}

		.profile-edit-hero__avatar-camera svg {
			width: 13px;
			height: 13px;
		}

		.profile-edit-hero__body h1 {
			font-size: 0.98rem;
		}

		.profile-edit-hero__body p,
		.profile-edit-note {
			font-size: 0.68rem;
		}

		.profile-menu__arrow svg {
			width: 14px;
			height: 14px;
		}

		.auth-shell {
			padding-right: 18px;
			padding-left: 18px;
		}

		.auth-card {
			gap: 8px;
			padding: 12px 10px 10px;
			border-radius: 18px;
		}

		.auth-card--login {
			max-width: 100%;
		}

		.auth-brand__logo {
			width: min(78px, 30vw);
		}

		.auth-brand__avatar {
			width: 76px;
			height: 76px;
		}

		.auth-card__top h1 {
			font-size: 1.16rem;
		}

		.auth-card__top p {
			font-size: 0.74rem;
		}

		.auth-field {
			min-height: 42px;
			padding: 0 9px 0 8px;
			border-radius: 10px;
		}

		.auth-field input,
		.auth-field select {
			min-height: 40px;
			font-size: 0.82rem;
		}

		.auth-field__icon {
			width: 18px;
			height: 18px;
		}

		.auth-field__icon svg {
			width: 18px;
			height: 18px;
		}

		.auth-field__toggle {
			width: 26px;
			height: 26px;
		}

		.auth-field__toggle svg {
			width: 15px;
			height: 15px;
		}

		.auth-submit {
			min-height: 40px;
			font-size: 0.82rem;
			border-radius: 10px;
		}

			.doctor-category-card strong {
				font-size: 0.72rem;
			}

		.doctor-toolbar {
			grid-template-columns: minmax(0, 1fr) 62px;
			gap: 8px;
		}

		.doctor-toolbar__search,
		.doctor-toolbar__count {
			min-height: 52px;
			border-radius: 15px;
		}

		.doctor-toolbar__search {
			padding: 0 13px;
			gap: 10px;
		}

		.doctor-toolbar__icon,
		.doctor-toolbar__icon svg {
			width: 22px;
			height: 22px;
		}

		.doctor-card {
			grid-template-columns: 112px minmax(0, 1fr);
			padding: 10px;
		}

		.doctor-card__media {
			min-height: 112px;
		}

		.doctor-card__title {
			font-size: 0.98rem;
		}

		.doctor-card__line {
			font-size: 0.8rem;
			line-height: 1.18;
		}

		.doctor-card__actions {
			gap: 7px;
		}

		.doctor-card__action {
			min-height: 38px;
			font-size: 0.7rem;
		}

		.doctor-modal {
			padding: 14px;
		}

		.doctor-modal__header {
			padding: 16px 18px;
		}

		.doctor-modal__body {
			padding: 18px;
		}

		.doctor-modal__actions {
			gap: 8px;
			margin-top: 14px;
		}

		.doctor-modal__action {
			min-height: 44px;
			padding: 0 10px;
			font-size: 0.86rem;
		}

		.doctor-detail {
			padding: 10px 12px 24px;
		}

		.doctor-detail__body {
			padding: 18px;
		}

		.doctor-detail__facts {
			grid-template-columns: 1fr;
		}

		.doctor-detail__actions {
			display: grid;
			grid-template-columns: repeat(2, minmax(0, 1fr));
			gap: 8px;
		}

		.doctor-detail__actions .action-chip:last-child:nth-child(odd) {
			grid-column: 1 / -1;
		}

		.doctor-detail .action-chip {
			min-height: 42px;
			padding: 10px 12px;
			font-size: 0.78rem;
		}
	}

@media (max-width: 560px) {
	.hero-slider {
		border-radius: 18px;
	}

		.hero-slide {
			min-height: 158px;
		}

	.hero-slider__dots {
		bottom: 14px;
		padding: 7px 8px;
		gap: 6px;
	}

	.featured-showcase__slide {
		display: block;
	}

	.bottom-nav {
		padding: 0 12px calc(env(safe-area-inset-bottom, 0px) + 10px);
	}

	.bottom-nav__inner {
		max-width: 100%;
		padding: 7px;
		border-radius: 20px;
	}

	.bottom-nav__item {
		padding: 7px 4px 6px;
		gap: 4px;
		font-size: 0.68rem;
	}
}

@media (max-width: 480px) {
	.drawer-panel {
		width: min(250px, calc(100% - 34px));
	}

	.site-app {
		padding-bottom: 86px;
	}

	.app-header {
		padding: 0;
	}

	.app-header__inner {
		grid-template-columns: 38px minmax(0, 1fr) 38px;
		padding: 8px 12px 7px;
		border-radius: 0;
	}

	.icon-button {
		width: 38px;
		height: 38px;
	}

	.icon-button svg,
	.bottom-nav__icon svg {
		width: 18px;
		height: 18px;
	}

		.app-brand__wordmark {
			font-size: 1.36rem;
			letter-spacing: -0.045em;
		}

		.app-brand__image {
			height: 38px;
			max-width: min(220px, 54vw);
		}

	.home-shell,
	.listing-shell,
	.detail-screen,
	.page-screen {
		padding-right: 10px;
		padding-left: 10px;
	}

	.hero-slider {
		border-radius: 16px;
	}

		.hero-slide {
			min-height: 146px;
		}

	.featured-showcase {
		padding: 0;
		gap: 0;
		border-radius: 10px;
	}

	.section-heading {
		gap: 6px;
		margin-bottom: 12px;
	}

	.section-heading h2 {
		font-size: 1.08rem;
		line-height: 1.2;
	}

	.section-link {
		font-size: 0.8rem;
	}

	.category-card {
		min-height: 114px;
		padding: 12px 4px 10px;
		border-radius: 14px;
	}

	.category-card__icon {
		width: 58px;
		height: 58px;
		border-radius: 14px;
	}

	.category-card__icon img {
		width: 48px;
		height: 48px;
	}

	.category-card strong {
		font-size: 0.68rem;
		line-height: 1.14;
	}

	.action-chip {
		padding: 11px 14px;
	}

	.featured-card,
	.content-card,
	.page-screen,
	.detail-screen__body,
	.empty-state__card {
		border-radius: 22px;
	}

	.featured-card__body,
	.content-card__body {
		padding: 15px 15px 16px;
		gap: 8px;
	}

	.featured-card__title,
	.content-card__title {
		font-size: 0.94rem;
		line-height: 1.38;
	}

	.featured-card--primary .featured-card__title {
		font-size: 1.12rem;
	}

	.featured-card--secondary .featured-card__title {
		font-size: 0.9rem;
	}

	.featured-card p:last-child,
	.content-card__text {
		font-size: 0.84rem;
		line-height: 1.5;
	}

	.bottom-nav {
		padding: 0 10px calc(env(safe-area-inset-bottom, 0px) + 8px);
	}

	.bottom-nav__inner {
		padding: 6px;
		border-radius: 18px;
		gap: 4px;
	}

	.bottom-nav__item {
		padding: 6px 3px 5px;
		border-radius: 14px;
		font-size: 0.65rem;
	}

	.bottom-nav__label {
		letter-spacing: -0.01em;
	}

	.search-sheet__form {
		grid-template-columns: 1fr;
	}

	.doctor-shell {
		padding-right: 10px;
		padding-left: 10px;
	}

	.doctor-hero,
	.doctor-section-head {
		padding: 16px 14px 18px;
		border-radius: 20px;
	}

	.doctor-hero h1,
	.doctor-section-head h1 {
		font-size: 1.54rem;
	}

	.doctor-hero p,
	.doctor-section-head p {
		font-size: 0.88rem;
	}

	.doctor-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 7px;
	}

	.doctor-category-card {
		min-height: 112px;
		padding: 10px 4px 9px;
		border-radius: 14px;
	}

	.doctor-category-card__icon {
		width: 44px;
		height: 44px;
		border-radius: 12px;
	}

	.doctor-category-card__icon img {
		width: 34px;
		height: 34px;
	}

		.doctor-category-card strong {
			font-size: 0.66rem;
			line-height: 1.18;
		}

		.doctor-toolbar {
			grid-template-columns: minmax(0, 1fr) 58px;
		}

		.doctor-toolbar__search,
		.doctor-toolbar__count {
			min-height: 48px;
			border-radius: 14px;
		}

		.doctor-toolbar__search {
			padding: 0 12px;
			gap: 8px;
		}

		.doctor-toolbar__search input {
			font-size: 0.86rem;
		}

		.doctor-toolbar__count {
			padding: 0 8px;
			font-size: 0.94rem;
		}

		.doctor-toolbar__result {
			font-size: 0.84rem;
		}

		.doctor-card {
			grid-template-columns: 102px minmax(0, 1fr);
			gap: 10px;
			padding: 9px;
			border-radius: 18px;
		}

		.doctor-card__media {
			min-height: 102px;
			border-radius: 14px;
		}

		.doctor-card__body {
			gap: 3px;
		}

		.doctor-card__title {
			font-size: 0.94rem;
			line-height: 1.24;
		}

		.doctor-card__line {
			font-size: 0.74rem;
			line-height: 1.14;
		}

		.doctor-card__actions {
			gap: 6px;
		}

		.doctor-card__action {
			min-height: 36px;
			padding: 0 4px;
			border-radius: 10px;
			font-size: 0.64rem;
		}

		.doctor-modal__actions {
			grid-template-columns: 1fr;
			gap: 8px;
			margin-top: 12px;
		}

		.doctor-modal__action {
			min-height: 42px;
			font-size: 0.82rem;
		}

		.doctor-detail {
			padding: 8px 10px 22px;
			gap: 12px;
		}

		.doctor-detail__media,
		.doctor-detail__body {
			border-radius: 18px;
		}

		.doctor-detail__media img {
			aspect-ratio: 4 / 2.55;
			max-height: 260px;
		}

		.doctor-detail__body {
			padding: 16px;
			gap: 14px;
		}

		.doctor-detail__title {
			font-size: 1.5rem;
		}

		.doctor-detail__summary {
			font-size: 0.84rem;
		}

		.doctor-detail__fact {
			padding: 12px;
		}

		.doctor-detail__fact strong {
			font-size: 0.84rem;
		}

		.doctor-detail__treatments {
			padding: 14px 15px;
			border-radius: 16px;
		}

		.doctor-detail__treatments h2 {
			font-size: 0.98rem;
		}

		.doctor-detail__treatments-copy {
			font-size: 0.84rem;
			line-height: 1.62;
		}

		.doctor-detail .action-chip {
			min-height: 40px;
			padding: 9px 10px;
			border-radius: 12px;
			font-size: 0.74rem;
			gap: 6px;
		}
	}

@media (max-width: 380px) {
	.app-brand__wordmark {
		font-size: 1.2rem;
	}

	.profile-hero {
		padding-left: 70px;
	}

	.profile-hero__avatar {
		width: 54px;
		height: 54px;
	}

	.profile-hero__body h1 {
		font-size: 1.08rem;
	}

	.profile-quick-card__content strong,
	.profile-quick-card__content span {
		font-size: 0.66rem;
	}

	.profile-menu__item {
		grid-template-columns: 46px minmax(0, 1fr) 16px;
	}

	.profile-menu__icon {
		width: 38px;
		height: 28px;
	}

	.profile-menu__label {
		font-size: 0.76rem;
	}

	.profile-edit-shell {
		padding-right: 10px;
		padding-left: 10px;
	}

	.profile-edit-hero__avatar {
		width: 66px;
		height: 66px;
	}

	.profile-edit-hero__avatar-camera {
		right: 2px;
		bottom: 2px;
		width: 22px;
		height: 22px;
	}

	.profile-edit-hero__avatar-camera svg {
		width: 12px;
		height: 12px;
	}

	.profile-edit-hero__body h1 {
		font-size: 0.92rem;
	}

	.profile-edit-note {
		font-size: 0.66rem;
	}

	.auth-card__top h1 {
		font-size: 1.12rem;
	}

	.auth-submit {
		font-size: 0.8rem;
	}

		.auth-brand__avatar {
			width: 68px;
			height: 68px;
		}

	.auth-brand__logo {
		width: min(72px, 36vw);
	}

	.auth-field {
		min-height: 40px;
	}

	.auth-field input,
	.auth-field select {
		min-height: 38px;
	}

	.app-brand__image {
		height: 34px;
		max-width: min(180px, 48vw);
	}

		.hero-slide {
			min-height: 136px;
		}

	.category-grid {
		gap: 9px;
	}

	.featured-showcase {
		padding: 0;
	}

	.featured-showcase__slide {
		display: block;
	}

	.category-card {
		min-height: 116px;
	}

	.category-card small {
		display: none;
	}

	.bottom-nav__item {
		font-size: 0.62rem;
	}

	.doctor-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.doctor-category-card {
		min-height: 104px;
	}

		.doctor-category-card strong {
			font-size: 0.62rem;
		}

		.doctor-card {
			grid-template-columns: 82px minmax(0, 1fr);
			padding: 8px;
		}

		.doctor-card__media {
			min-height: 108px;
		}

		.doctor-card__line,
		.doctor-card__summary {
			font-size: 0.72rem;
		}

		.doctor-card__action {
			font-size: 0.62rem;
		}

		.doctor-detail__actions {
			grid-template-columns: 1fr;
		}

		.doctor-detail__actions .action-chip:last-child:nth-child(odd) {
			grid-column: auto;
		}
	}

@media (min-width: 981px) {
	.hero-slide {
		height: 330px;
		min-height: 330px;
	}

	.hero-slide__image,
	.hero-slide__image img {
		position: absolute;
		inset: 0;
	}

	.hero-slide__image img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	.bottom-nav {
		display: none;
	}

	.site-app {
		padding-bottom: 40px;
	}
}
