/*
 * BD Doctors List — front-end styles.
 *
 * Palette and type are deliberate choices for a bilingual (Bangla /
 * English) medical directory, not a generic template default: a deep
 * clinical teal carries the brand and trust signals, a warm ochre
 * marks the one "verified" moment that matters, and Noto Sans Bengali
 * is loaded specifically so Bangla names and synonyms render
 * properly instead of falling back to a boxy system font.
 */

.bdl-directory,
.bdl-archive,
.bdl-doctor,
.bdl-hospital,
.bdl-specialties-index,
.bdl-getting-started {
	--bdl-ink: #17241f;
	--bdl-muted: #52655d;
	--bdl-teal: #0f5c56;
	--bdl-teal-dark: #0a413c;
	--bdl-amber: #b8791f;
	--bdl-bg: #f4f6f5;
	--bdl-surface: #ffffff;
	--bdl-line: #dbe2df;

	font-family: "Public Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
	color: var(--bdl-ink);
	line-height: 1.6;
	max-width: 1120px;
	margin: 0 auto;
	padding: 2rem 1.25rem 4rem;
	overflow-wrap: break-word;
}

.bdl-directory img,
.bdl-archive img,
.bdl-doctor img,
.bdl-hospital img {
	max-width: 100%;
	height: auto;
}

.bdl-directory *,
.bdl-archive *,
.bdl-doctor *,
.bdl-hospital *,
.bdl-specialties-index *,
.bdl-getting-started * {
	box-sizing: border-box;
}

.bdl-bn {
	font-family: "Noto Sans Bengali", "Public Sans", sans-serif;
}

/* ---------------- Headings & prose ---------------- */

.bdl-directory h1,
.bdl-archive h1,
.bdl-doctor h1,
.bdl-hospital h1 {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.4rem;
}

.bdl-directory h2,
.bdl-archive h2,
.bdl-doctor h2,
.bdl-hospital h2 {
	font-size: 1.375rem;
	font-weight: 600;
	margin: 2.25rem 0 1rem;
}

.bdl-doctor h3 {
	font-size: 1.0625rem;
	font-weight: 600;
	margin: 0 0 0.35rem;
}

.bdl-directory__intro p,
.bdl-archive__header p,
.bdl-archive__intro {
	color: var(--bdl-muted);
	max-width: 62ch;
}

.bdl-archive__intro p {
	margin: 0.75rem 0 0;
}

.bdl-synonyms {
	font-size: 0.9rem;
	color: var(--bdl-muted);
	margin-top: 0.5rem;
}

.bdl-doctor__about,
.bdl-hospital__about {
	max-width: 68ch;
}

/* ---------------- Breadcrumbs ---------------- */

.bdl-breadcrumbs {
	margin-bottom: 1.25rem;
}

.bdl-breadcrumbs ol {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	padding: 0;
	margin: 0;
	font-size: 0.875rem;
	color: var(--bdl-muted);
}

.bdl-breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin-left: 0.4rem;
	color: var(--bdl-line);
}

.bdl-breadcrumbs a {
	color: var(--bdl-muted);
	text-decoration: none;
}

.bdl-breadcrumbs a:hover {
	color: var(--bdl-teal-dark);
	text-decoration: underline;
}

/* ---------------- Filter / search form ---------------- */
/* This is the hero of the directory home page — the search itself,
   not a decorative banner. */

.bdl-filter-form {
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	background: var(--bdl-surface);
	border: 1px solid var(--bdl-line);
	border-radius: 10px;
	padding: 1rem;
	margin: 1.5rem 0 2rem;
}

.bdl-filter-form select,
.bdl-filter-form input[type="text"] {
	font: inherit;
	font-size: 0.95rem;
	padding: 0.6rem 0.75rem;
	border: 1px solid var(--bdl-line);
	border-radius: 6px;
	background: var(--bdl-bg);
	color: var(--bdl-ink);
}

.bdl-filter-form__search {
	flex: 2 1 220px;
}

.bdl-filter-form select {
	flex: 1 1 160px;
}

.bdl-filter-form__submit {
	flex: 0 0 auto;
	font: inherit;
	font-weight: 600;
	font-size: 0.95rem;
	padding: 0.6rem 1.4rem;
	background: var(--bdl-teal);
	color: #fff;
	border: none;
	border-radius: 6px;
	cursor: pointer;
}

.bdl-filter-form__submit:hover {
	background: var(--bdl-teal-dark);
}

.bdl-filter-form select:focus,
.bdl-filter-form input:focus,
.bdl-filter-form button:focus {
	outline: 2px solid var(--bdl-teal);
	outline-offset: 1px;
}

/* ---------------- Doctor / hospital cards ---------------- */

.bdl-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 1.1rem;
	margin: 1rem 0;
}

.bdl-card {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--bdl-line);
	border-radius: 10px;
	background: var(--bdl-surface);
	overflow: hidden;
}

.bdl-card__photo {
	display: block;
	aspect-ratio: 4 / 3;
	background: var(--bdl-bg);
}

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

.bdl-card__photo-fallback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 2rem;
	font-weight: 700;
	color: var(--bdl-teal);
}

.bdl-card__body {
	padding: 0.9rem 1rem 1.1rem;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.bdl-card__name {
	margin: 0.2rem 0 0;
	font-size: 1.05rem;
}

.bdl-card__name a {
	color: var(--bdl-ink);
	text-decoration: none;
}

.bdl-card__name a:hover {
	color: var(--bdl-teal-dark);
}

.bdl-card__specialty {
	margin: 0;
	color: var(--bdl-teal-dark);
	font-weight: 600;
	font-size: 0.9rem;
}

.bdl-card__meta,
.bdl-card__chamber {
	margin: 0;
	color: var(--bdl-muted);
	font-size: 0.875rem;
}

.bdl-card__cta {
	margin-top: 0.6rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--bdl-teal);
	text-decoration: none;
}

.bdl-card__cta:hover {
	text-decoration: underline;
}

.bdl-badge {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.2rem 0.55rem;
	border-radius: 99px;
	margin-bottom: 0.35rem;
}

.bdl-badge--verified {
	background: #eaf4ec;
	color: var(--bdl-teal-dark);
	border: 1px solid #c6e2cb;
}

.bdl-verified-badge {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	margin: 0.5rem 0 1rem;
}

.bdl-verified-badge__date {
	font-size: 0.85rem;
	color: var(--bdl-muted);
}

/* ---------------- Hospital archive cards ---------------- */

.bdl-hospital-card {
	display: block;
	border: 1px solid var(--bdl-line);
	border-radius: 10px;
	padding: 1rem;
	background: var(--bdl-surface);
	text-decoration: none;
	color: inherit;
}

.bdl-hospital-card h2 {
	font-size: 1.05rem;
	margin: 0.5rem 0 0.25rem;
}

.bdl-hospital-card__address {
	margin: 0;
	color: var(--bdl-muted);
	font-size: 0.875rem;
}

.bdl-hospital-card img {
	width: 100%;
	border-radius: 6px;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

/* ---------------- Fact tables & chambers ---------------- */

.bdl-doctor__header,
.bdl-hospital__header {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 1.5rem;
}

.bdl-doctor__photo img,
.bdl-hospital__photo img {
	width: 160px;
	height: 160px;
	object-fit: cover;
	border-radius: 10px;
}

.bdl-doctor__header-body,
.bdl-hospital__header-body {
	flex: 1 1 320px;
}

.bdl-fact-table {
	border-collapse: collapse;
	width: 100%;
	max-width: 560px;
}

.bdl-fact-table th,
.bdl-fact-table td {
	text-align: left;
	padding: 0.4rem 0.75rem 0.4rem 0;
	border-bottom: 1px solid var(--bdl-line);
	font-size: 0.95rem;
	vertical-align: top;
}

.bdl-fact-table th {
	width: 40%;
	color: var(--bdl-muted);
	font-weight: 600;
}

.bdl-table-scroll {
	overflow-x: auto;
}

.bdl-chambers-table {
	border-collapse: collapse;
	width: 100%;
	min-width: 640px;
}

.bdl-chambers-table th,
.bdl-chambers-table td {
	text-align: left;
	padding: 0.65rem 0.9rem;
	border-bottom: 1px solid var(--bdl-line);
	font-size: 0.9rem;
	vertical-align: top;
}

.bdl-chambers-table thead th {
	color: var(--bdl-muted);
	font-weight: 600;
	border-bottom: 2px solid var(--bdl-line);
}

.bdl-map-link {
	color: var(--bdl-teal);
	font-size: 0.85rem;
}

.bdl-fee {
	color: var(--bdl-amber);
	font-weight: 600;
}

/* ---------------- FAQ ---------------- */

.bdl-faq-item {
	border-top: 1px solid var(--bdl-line);
	padding: 1rem 0;
}

.bdl-faq-item p {
	margin: 0;
	color: var(--bdl-muted);
}

/* ---------------- Browse sections & pill lists ---------------- */

.bdl-browse__section {
	margin-top: 2.5rem;
}

.bdl-pill-list {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
	padding: 0;
	margin: 0;
}

.bdl-pill-list a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.45rem 0.9rem;
	border: 1px solid var(--bdl-line);
	border-radius: 99px;
	background: var(--bdl-surface);
	color: var(--bdl-ink);
	text-decoration: none;
	font-size: 0.9rem;
}

.bdl-pill-list a:hover {
	border-color: var(--bdl-teal);
	color: var(--bdl-teal-dark);
}

.bdl-count {
	color: var(--bdl-muted);
	font-size: 0.8em;
}

/* ---------------- Specialties index ---------------- */

.bdl-specialties-index__list {
	list-style: none;
	margin: 1.5rem 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
}

.bdl-specialties-index__list > li {
	border: 1px solid var(--bdl-line);
	border-radius: 10px;
	padding: 1rem;
}

.bdl-specialties-index__list a {
	color: var(--bdl-ink);
	text-decoration: none;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	align-items: baseline;
}

.bdl-specialties-index__children {
	list-style: none;
	margin: 0.6rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem 0.7rem;
}

.bdl-specialties-index__children a {
	font-size: 0.85rem;
	color: var(--bdl-muted);
}

/* ---------------- Empty state ---------------- */

.bdl-empty {
	color: var(--bdl-muted);
	border: 1px dashed var(--bdl-line);
	border-radius: 10px;
	padding: 1.5rem;
	text-align: center;
}

/* ---------------- Pagination ---------------- */

.bdl-pagination {
	margin-top: 2rem;
}

.bdl-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.2rem;
	height: 2.2rem;
	padding: 0 0.5rem;
	margin-right: 0.35rem;
	border: 1px solid var(--bdl-line);
	border-radius: 6px;
	text-decoration: none;
	color: var(--bdl-ink);
	font-size: 0.9rem;
}

.bdl-pagination .page-numbers.current {
	background: var(--bdl-teal);
	border-color: var(--bdl-teal);
	color: #fff;
}

/* ---------------- Accessibility helpers ---------------- */

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

@media (prefers-reduced-motion: reduce) {
	.bdl-directory *,
	.bdl-archive *,
	.bdl-doctor *,
	.bdl-hospital * {
		transition: none !important;
	}
}

/* ---------------- Small screens ---------------- */

@media (max-width: 640px) {
	.bdl-directory,
	.bdl-archive,
	.bdl-doctor,
	.bdl-hospital,
	.bdl-specialties-index {
		padding: 1rem 0.9rem 3rem;
	}

	.bdl-directory h1,
	.bdl-archive h1,
	.bdl-doctor h1,
	.bdl-hospital h1 {
		font-size: 1.5rem;
	}

	.bdl-filter-form {
		padding: 0.85rem;
	}

	.bdl-filter-form select,
	.bdl-filter-form input[type="text"],
	.bdl-filter-form__submit {
		flex: 1 1 100%;
	}

	.bdl-doctor__photo img,
	.bdl-hospital__photo img {
		width: 110px;
		height: 110px;
	}

	/* Two cards across on a phone rather than one giant column. */
	.bdl-grid,
	.bdl-grid--hospitals {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.7rem;
	}

	.bdl-card__name {
		font-size: 0.98rem;
	}

	.bdl-card__cta {
		font-size: 0.82rem;
	}

	/* The chambers table is the densest thing on a doctor page. On a
	   narrow screen it stops being a table and becomes one block per
	   chamber, each line labelled, so nothing has to be scrolled
	   sideways to read a visiting time. */
	.bdl-table-scroll {
		overflow-x: visible;
	}

	.bdl-chambers-table,
	.bdl-chambers-table tbody,
	.bdl-chambers-table tr,
	.bdl-chambers-table td {
		display: block;
		width: 100%;
		min-width: 0;
	}

	.bdl-chambers-table thead {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.bdl-chambers-table tr {
		border: 1px solid var(--bdl-line);
		border-radius: 10px;
		padding: 0.6rem 0.85rem;
		margin-bottom: 0.75rem;
		background: var(--bdl-surface);
	}

	.bdl-chambers-table td {
		border-bottom: 0;
		padding: 0.3rem 0;
	}

	.bdl-chambers-table td:empty {
		display: none;
	}

	.bdl-chambers-table td::before {
		content: attr(data-label);
		display: block;
		font-size: 0.72rem;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: var(--bdl-muted);
		margin-bottom: 0.15rem;
	}

	/* Same treatment for the two-column fact tables. */
	.bdl-fact-table th,
	.bdl-fact-table td {
		display: block;
		width: 100%;
		padding: 0.15rem 0;
		border-bottom: 0;
	}

	.bdl-fact-table tr {
		display: block;
		padding: 0.45rem 0;
		border-bottom: 1px solid var(--bdl-line);
	}

	.bdl-fact-table th {
		font-size: 0.72rem;
		text-transform: uppercase;
		letter-spacing: 0.05em;
	}

	.bdl-updates {
		padding: 1rem 0.9rem;
	}

	.bdl-update__table th,
	.bdl-update__table td {
		display: block;
		width: 100%;
		padding: 0.15rem 0;
	}

	.bdl-update__table th {
		font-size: 0.72rem;
		text-transform: uppercase;
		letter-spacing: 0.05em;
		color: var(--bdl-muted);
	}

	/* Pagination and pill links get a finger-sized target rather than
	   a mouse-sized one. */
	.bdl-pagination {
		display: flex;
		flex-wrap: wrap;
		gap: 0.4rem;
	}

	.bdl-pagination .page-numbers {
		min-width: 2.6rem;
		height: 2.6rem;
		margin-right: 0;
	}

	.bdl-pill-list a {
		padding: 0.5rem 0.8rem;
	}

	.bdl-breadcrumbs {
		font-size: 0.82rem;
	}

	.bdl-specialties-index__list {
		grid-template-columns: minmax(0, 1fr);
	}

	.bdl-browse__section h2 {
		font-size: 1.15rem;
	}
}

@media (max-width: 380px) {
	.bdl-grid,
	.bdl-grid--hospitals {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ---------------- Shared BDAcademic section nav ----------------
 *
 * The rounded pill strip used across the site, sitting directly under
 * the site header and above the breadcrumb. On a phone the pill keeps
 * its shape and scrolls sideways rather than collapsing into a stack —
 * a stacked list would push the page title below the fold on exactly
 * the devices most of this traffic arrives on.
 */

/* ---------------- Shared BDAcademic section bar ----------------
 *
 * The slim rounded strip that sits directly under the site header and
 * above the breadcrumb. Two placements: --site when the theme's
 * after-header hook prints it (full width of the viewport, centred),
 * and --inline as a fallback inside the plugin's own container.
 *
 * On a phone the strip keeps its pill shape and scrolls sideways. A
 * stacked list would be taller than the site header itself and push
 * the page title off the first screen, which is where most of this
 * traffic lands.
 */

.bda-topnav {
	--bda-green: #0a7a3d;
	--bda-green-dark: #04672f;
	--bda-gold: #d4af37;
	--bda-divider: #e2e8e3;

	font-family: "Public Sans", "Noto Sans Bengali", -apple-system, "Segoe UI", Roboto, sans-serif;
}

.bda-topnav--site {
	width: 100%;
	padding: 0.6rem 1rem 0.1rem;
	margin: 0;
}

.bda-topnav--inline {
	margin: -0.5rem 0 1.1rem;
}

.bda-topnav__scroller {
	display: flex;
	justify-content: center;
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding: 0.15rem 0.15rem 0.25rem;
}

.bda-topnav__scroller::-webkit-scrollbar {
	display: none;
}

.bda-topnav__list {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: stretch;
	list-style: none;
	margin: 0;
	padding: 0;
	background: #fff;
	border: 2px solid var(--bda-green);
	border-radius: 999px;
	overflow: hidden;
}

.bda-topnav__item {
	display: flex;
	margin: 0;
	padding: 0;
	border-left: 1px solid var(--bda-divider);
}

.bda-topnav__item:first-child {
	border-left: 0;
}

.bda-topnav__item a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
	padding: 0.32rem 0.95rem;
	font-size: 0.88rem;
	font-weight: 700;
	line-height: 1.5;
	text-decoration: none;
	color: var(--bda-green-dark);
	box-shadow: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.bda-topnav__item a:hover,
.bda-topnav__item a:focus {
	background: #f2f8f4;
	color: var(--bda-green);
}

.bda-topnav__item a:focus-visible {
	outline: 2px solid var(--bda-gold);
	outline-offset: -3px;
}

.bda-topnav__icon {
	display: inline-flex;
	align-items: center;
	font-size: 1.02em;
	line-height: 1;
}

.bda-topnav__svg {
	width: 1.15em;
	height: 1.15em;
	display: block;
}

.bda-topnav__svg-body {
	fill: #2f4f45;
}

.bda-topnav__svg-scope {
	stroke: #111111;
}

.bda-topnav__svg-scope-fill {
	fill: #111111;
}

/* Current section: the green-to-gold fill, with the doctor silhouette
   flipped to white so it still reads against it. */
.bda-topnav__item.is-active a,
.bda-topnav__item.is-active a:hover,
.bda-topnav__item.is-active a:focus {
	background: linear-gradient(90deg, var(--bda-green) 0%, var(--bda-gold) 100%);
	color: #fff;
}

/* On the filled tab the silhouette goes white; the stethoscope stays
   black, which is what keeps it legible against both ends of the
   green-to-gold gradient. */
.bda-topnav__item.is-active .bda-topnav__svg-body {
	fill: #fff;
}

@media (max-width: 900px) {
	.bda-topnav__scroller {
		justify-content: flex-start;
	}

	.bda-topnav--site {
		padding: 0.5rem 0.75rem 0.1rem;
	}

	.bda-topnav__item a {
		padding: 0.3rem 0.8rem;
		font-size: 0.84rem;
	}
}

@media (max-width: 480px) {
	.bda-topnav__item a {
		padding: 0.3rem 0.65rem;
		font-size: 0.8rem;
		gap: 0.3rem;
	}
}

/* ---------------- Directory tabs ---------------- */

.bdl-tabs {
	display: flex;
	gap: 0.5rem;
	margin: 0 0 1.5rem;
	border-bottom: 2px solid var(--bdl-line);
	overflow-x: auto;
	scrollbar-width: none;
}

.bdl-tabs::-webkit-scrollbar {
	display: none;
}

.bdl-tabs__tab {
	white-space: nowrap;
}

.bdl-tabs__tab {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.7rem 1.1rem;
	margin-bottom: -2px;
	font-weight: 600;
	text-decoration: none;
	color: var(--bdl-muted);
	border-bottom: 2px solid transparent;
}

.bdl-tabs__tab:hover,
.bdl-tabs__tab:focus {
	color: var(--bdl-teal);
}

.bdl-tabs__tab.is-active {
	color: var(--bdl-teal);
	border-bottom-color: var(--bdl-teal);
}

/* ---------------- Hospital cards ---------------- */

.bdl-grid--hospitals {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1rem;
}

.bdl-hospital-card {
	background: var(--bdl-surface);
	border: 1px solid var(--bdl-line);
	border-radius: 10px;
	padding: 1rem;
}

.bdl-hospital-card__link {
	text-decoration: none;
	color: inherit;
}

.bdl-hospital-card__photo img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	margin-bottom: 0.6rem;
}

.bdl-hospital-card h3 {
	font-size: 1.05rem;
	margin: 0 0 0.35rem;
	color: var(--bdl-teal-dark);
}

.bdl-hospital-card__type {
	display: inline-block;
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--bdl-muted);
	margin: 0 0 0.35rem;
}

.bdl-hospital-card__address,
.bdl-hospital-card__phone {
	font-size: 0.88rem;
	color: var(--bdl-muted);
	margin: 0 0 0.25rem;
}

/* ---------------- Update log ---------------- */

.bdl-updates {
	margin-top: 2.5rem;
	padding: 1.4rem 1.5rem;
	background: var(--bdl-bg);
	border: 1px solid var(--bdl-line);
	border-radius: 10px;
}

.bdl-updates h2 {
	margin-top: 0;
}

.bdl-updates__intro {
	color: var(--bdl-muted);
	font-size: 0.92rem;
	margin-top: 0;
}

.bdl-update {
	padding: 0.9rem 0;
	border-top: 1px solid var(--bdl-line);
}

.bdl-update__date {
	font-size: 0.84rem;
	font-weight: 600;
	color: var(--bdl-muted);
	margin: 0 0 0.4rem;
}

.bdl-update__source,
.bdl-update__mode {
	font-weight: 400;
}

.bdl-update__table {
	width: 100%;
	border-collapse: collapse;
}

.bdl-update__table th {
	width: 32%;
	text-align: left;
	vertical-align: top;
	padding: 0.3rem 0.8rem 0.3rem 0;
	font-weight: 600;
	font-size: 0.9rem;
}

.bdl-update__table td {
	padding: 0.3rem 0;
	font-size: 0.92rem;
}

.bdl-update__old {
	color: var(--bdl-muted);
	text-decoration: line-through;
}

.bdl-update__arrow {
	color: var(--bdl-muted);
	margin: 0 0.35rem;
}

.bdl-update__new {
	font-weight: 600;
	color: var(--bdl-teal-dark);
}

/* ---------------- Related doctors ---------------- */

.bdl-related {
	margin-top: 2.5rem;
	padding-top: 1.6rem;
	border-top: 2px solid var(--bdl-line);
}

.bdl-related__more,
.bdl-browse__more {
	margin-top: 1rem;
	font-weight: 500;
}
