.bsc-bdd-directory,
.bsc-bdd-profile {
	--bsc-bdd-accent: #00d1b4;
	--bsc-bdd-secondary: #bd009f;
	--bsc-bdd-ink: #111827;
	--bsc-bdd-muted: #6b7280;
	--bsc-bdd-surface: #fff;
	--bsc-bdd-line: #e5e7eb;
	box-sizing: border-box;
}

.bsc-bdd-directory *,
.bsc-bdd-profile * {
	box-sizing: border-box;
}

.bsc-bdd-directory {
	--bsc-bdd-gap: 24px;
	--bsc-bdd-slides: 4;
	--bsc-bdd-slides-tablet: 2;
	--bsc-bdd-slides-mobile: 1;
	--bsc-bdd-avatar-size: 140px;
	--bsc-bdd-avatar-background: #bd009f;
	--bsc-bdd-avatar-initials: #fff;
	--bsc-bdd-avatar-border-color: #fff;
	--bsc-bdd-avatar-border-width: 3px;
	--bsc-bdd-avatar-hover-color: #00d1b4;
	--bsc-bdd-avatar-hover-ring: 4px;
	--bsc-bdd-avatar-hover-elevation: -3px;
	--bsc-bdd-avatar-hover-scale: 1.03;
	position: relative;
	width: 100%;
}

.bsc-bdd-directory__viewport {
	overflow: hidden;
	width: 100%;
}

.bsc-bdd-directory--carousel .bsc-bdd-directory__viewport {
	-ms-overflow-style: none;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}

.bsc-bdd-directory--carousel .bsc-bdd-directory__viewport::-webkit-scrollbar {
	display: none;
}

.bsc-bdd-directory__track {
	align-items: stretch;
	display: flex;
	gap: var(--bsc-bdd-gap);
}

.bsc-bdd-directory--grid .bsc-bdd-directory__track {
	display: grid;
	grid-template-columns: repeat(var(--bsc-bdd-slides), minmax(0, 1fr));
}

.bsc-bdd-directory--avatars .bsc-bdd-directory__viewport {
	margin-block: calc((var(--bsc-bdd-avatar-hover-ring) + 8px) * -1);
	padding: calc(var(--bsc-bdd-avatar-hover-ring) + 8px);
	scroll-padding-inline: calc(var(--bsc-bdd-avatar-hover-ring) + 8px);
}

.bsc-bdd-directory--avatars .bsc-bdd-directory__track {
	align-items: center;
}

.bsc-bdd-directory--grid.bsc-bdd-directory--avatars .bsc-bdd-directory__track {
	grid-template-columns: repeat(auto-fit, var(--bsc-bdd-avatar-size));
	justify-content: center;
}

.bsc-bdd-avatar-card {
	background: transparent;
	border: 0;
	box-shadow: none;
	flex: 0 0 var(--bsc-bdd-avatar-size);
	margin: 0;
	min-width: 0;
	overflow: visible;
	padding: 0;
	position: relative;
	scroll-snap-align: start;
	width: var(--bsc-bdd-avatar-size);
}

.bsc-bdd-avatar-card:hover,
.bsc-bdd-avatar-card:focus-within {
	z-index: 2;
}

.bsc-bdd-avatar-card__link {
	border-radius: 50%;
	color: var(--bsc-bdd-avatar-initials);
	display: block;
	height: var(--bsc-bdd-avatar-size);
	line-height: 1;
	text-decoration: none;
	width: var(--bsc-bdd-avatar-size);
}

.bsc-bdd-avatar-card__link:focus-visible {
	outline: 0;
}

.bsc-bdd-avatar-card__media {
	align-items: center;
	background: var(--bsc-bdd-avatar-background);
	border: var(--bsc-bdd-avatar-border-width) solid var(--bsc-bdd-avatar-border-color);
	border-radius: 50%;
	color: var(--bsc-bdd-avatar-initials);
	display: flex;
	height: 100%;
	justify-content: center;
	overflow: hidden;
	transition: box-shadow 180ms ease, transform 180ms ease;
	width: 100%;
}

.bsc-bdd-avatar-card:hover .bsc-bdd-avatar-card__media,
.bsc-bdd-avatar-card__link:focus-visible .bsc-bdd-avatar-card__media {
	box-shadow: 0 0 0 var(--bsc-bdd-avatar-hover-ring) var(--bsc-bdd-avatar-hover-color);
	transform: translateY(var(--bsc-bdd-avatar-hover-elevation)) scale(var(--bsc-bdd-avatar-hover-scale));
}

.bsc-bdd-avatar-card__image {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bsc-bdd-avatar-card__initials {
	color: inherit;
	font-size: calc(var(--bsc-bdd-avatar-size) * 0.28);
	font-weight: 900;
	letter-spacing: -0.04em;
	text-transform: uppercase;
}

.bsc-bdd-card {
	background: var(--bsc-bdd-surface);
	border: 1px solid var(--bsc-bdd-line);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgb(17 24 39 / 8%);
	flex: 0 0 calc((100% - (var(--bsc-bdd-slides) - 1) * var(--bsc-bdd-gap)) / var(--bsc-bdd-slides));
	min-width: 0;
	overflow: hidden;
	scroll-snap-align: start;
	transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.bsc-bdd-card:hover {
	box-shadow: 0 18px 42px rgb(17 24 39 / 14%);
	transform: translateY(-4px);
}

.bsc-bdd-card__link {
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
}

.bsc-bdd-card__media {
	align-items: center;
	background: var(--bsc-bdd-accent);
	display: flex;
	height: 250px;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.bsc-bdd-card__media img {
	height: 100%;
	object-fit: cover;
	transition: transform 260ms ease;
	width: 100%;
}

.bsc-bdd-card:hover .bsc-bdd-card__media img {
	transform: scale(1.035);
}

.bsc-bdd-card__initials {
	color: #fff;
	font-size: clamp(2.4rem, 6vw, 5rem);
	font-weight: 800;
	letter-spacing: -0.05em;
}

.bsc-bdd-card__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 24px;
}

.bsc-bdd-card__type {
	align-self: flex-start;
	background: var(--bsc-bdd-secondary);
	border-radius: 999px;
	color: #fff;
	font-size: 0.72rem;
	font-weight: 800;
	letter-spacing: 0.06em;
	line-height: 1;
	margin-bottom: 14px;
	padding: 6px 10px;
	text-transform: uppercase;
}

.bsc-bdd-card__title {
	color: var(--bsc-bdd-ink);
	font-size: clamp(1.2rem, 2vw, 1.65rem);
	line-height: 1.12;
	margin: 0;
}

.bsc-bdd-card__excerpt {
	color: #4b5563;
	line-height: 1.55;
	margin: 14px 0 0;
}

.bsc-bdd-card__meta {
	align-items: flex-start;
	color: var(--bsc-bdd-muted);
	display: flex;
	gap: 8px;
	line-height: 1.4;
	margin: 14px 0 0;
}

.bsc-bdd-card__meta + .bsc-bdd-card__meta {
	margin-top: 7px;
}

.bsc-bdd-directory__arrows {
	inset: 50% -22px auto;
	pointer-events: none;
	position: absolute;
	transform: translateY(-50%);
	z-index: 3;
}

.bsc-bdd-directory__arrow {
	align-items: center;
	background: var(--bsc-bdd-ink);
	border: 0;
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 1.25rem;
	height: 46px;
	justify-content: center;
	padding: 0;
	pointer-events: auto;
	position: absolute;
	top: 0;
	transition: opacity 160ms ease, transform 160ms ease;
	width: 46px;
}

.bsc-bdd-directory__arrow:hover {
	background: var(--bsc-bdd-accent);
	color: #000;
	transform: translateY(-2px);
}

.bsc-bdd-directory__arrow:focus-visible {
	background: var(--bsc-bdd-accent);
	color: #000;
	outline: 3px solid var(--bsc-bdd-secondary);
	outline-offset: 2px;
	transform: translateY(-2px);
}

.bsc-bdd-directory__arrow:disabled {
	cursor: default;
	opacity: 0.28;
}

.bsc-bdd-directory__arrow--prev {
	left: 0;
}

.bsc-bdd-directory__arrow--next {
	right: 0;
}

.bsc-bdd-directory__dots {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 20px;
}

.bsc-bdd-directory__dot {
	background: #d1d5db;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	height: 8px;
	padding: 0;
	transition: background-color 160ms ease, transform 160ms ease, width 160ms ease;
	width: 8px;
}

.bsc-bdd-directory__dot.is-active {
	background: var(--bsc-bdd-accent);
	transform: scale(1.25);
}

.bsc-bdd-empty {
	background: #f9fafb;
	border: 1px dashed #d1d5db;
	border-radius: 12px;
	padding: 22px;
	text-align: center;
}

.bsc-bdd-avatar__media {
	align-items: center;
	background: var(--bsc-bdd-accent);
	border-radius: 50%;
	color: #fff;
	display: flex;
	height: 112px;
	justify-content: center;
	overflow: hidden;
	width: 112px;
}

.bsc-bdd-avatar__media img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bsc-bdd-avatar__initials {
	font-size: 2rem;
	font-weight: 800;
	letter-spacing: -0.04em;
}

.bsc-bdd-profile {
	--bsc-bdd-accent: #00d1b4;
	--bsc-bdd-secondary: #bd009f;
	--bsc-bdd-ink: #111;
	--bsc-bdd-muted: #5c5c5c;
	color: var(--bsc-bdd-ink);
	margin: 36px 0;
	width: 100%;
}

.bsc-bdd-profile__identity {
	align-items: flex-end;
	background: var(--bsc-bdd-secondary);
	color: #fff;
	display: flex;
	isolation: isolate;
	min-height: clamp(390px, 52vw, 570px);
	overflow: hidden;
	position: relative;
}

.bsc-bdd-profile__identity::after {
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.12) 72%),
		rgba(0, 0, 0, 0.26);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.bsc-bdd-profile__identity--no-image {
	background:
		linear-gradient(135deg, transparent 0 45%, rgba(0, 0, 0, 0.1) 45% 55%, transparent 55% 100%),
		var(--bsc-bdd-secondary);
	background-size: 42px 42px;
}

.bsc-bdd-profile__avatar,
.bsc-bdd-profile__avatar .bsc-bdd-avatar__media {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
	z-index: 0;
}

.bsc-bdd-profile__avatar .bsc-bdd-avatar__media {
	align-items: center;
	background: transparent;
	border-radius: 0;
	color: #fff;
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.bsc-bdd-profile__avatar .bsc-bdd-avatar__image {
	height: 100%;
	object-fit: cover;
	transform: scale(1.001);
	transition: transform 450ms cubic-bezier(0.2, 0.65, 0.3, 1);
	width: 100%;
}

.bsc-bdd-profile__identity:hover .bsc-bdd-avatar__image {
	transform: scale(1.035);
}

.bsc-bdd-profile__avatar .bsc-bdd-avatar__initials {
	font-size: clamp(6rem, 22vw, 15rem);
	font-weight: 900;
	letter-spacing: -0.08em;
	opacity: 0.26;
	text-transform: uppercase;
}

.bsc-bdd-profile__hero-content {
	padding: clamp(26px, 5vw, 54px);
	position: relative;
	width: 100%;
	z-index: 2;
}

.bsc-bdd-profile__pin {
	background: var(--bsc-bdd-accent);
	color: #000;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 800;
	letter-spacing: 0.05em;
	margin-bottom: 12px;
	padding: 0.45em 0.7em;
	text-transform: uppercase;
}

.bsc-bdd-profile__types {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0 0 12px;
}

.bsc-bdd-profile__types span {
	background: #000;
	color: #fff;
	display: inline-flex;
	font-size: 0.7rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	line-height: 1;
	padding: 0.45em 0.6em;
	text-transform: uppercase;
}

.bsc-bdd-profile__types span:nth-child(even) {
	background: #fff;
	color: #000;
}

.bsc-bdd-profile h2 {
	color: #fff;
	font: inherit;
	font-size: clamp(2.5rem, 7.5vw, 6.4rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 0.9;
	margin: 0;
	max-width: 18ch;
	text-wrap: balance;
	text-transform: uppercase;
}

.bsc-bdd-profile__excerpt {
	color: #fff;
	font-size: clamp(1rem, 1.7vw, 1.2rem);
	line-height: 1.5;
	margin: 20px 0 0;
	max-width: 62ch;
}

.bsc-bdd-profile__body {
	min-width: 0;
	padding-block: clamp(34px, 6vw, 72px);
}

.bsc-bdd-profile__about {
	display: grid;
	gap: clamp(24px, 5vw, 64px);
	grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
}

.bsc-bdd-profile__section-title {
	color: var(--bsc-bdd-ink);
	font: inherit;
	font-size: clamp(2.5rem, 6vw, 5.8rem);
	font-weight: 900;
	letter-spacing: -0.05em;
	line-height: 0.9;
	margin: 0;
	overflow-wrap: anywhere;
	text-transform: uppercase;
}

.bsc-bdd-profile__description {
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.75;
	max-width: 72ch;
}

.bsc-bdd-profile__description > :first-child {
	margin-top: 0;
}

.bsc-bdd-profile__description > :last-child {
	margin-bottom: 0;
}

.bsc-bdd-profile__information {
	margin-top: clamp(44px, 7vw, 84px);
	min-width: 0;
}

.bsc-bdd-profile__grid {
	display: grid;
	gap: 24px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	margin-top: clamp(24px, 4vw, 44px);
}

.bsc-bdd-profile__panel {
	background: #f2f2f2;
	border: 0;
	border-top: 6px solid var(--bsc-bdd-accent);
	padding: clamp(22px, 3vw, 30px);
}

.bsc-bdd-profile__panel h3,
.bsc-bdd-related__group > h3 {
	color: var(--bsc-bdd-ink);
	font: inherit;
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: -0.025em;
	line-height: 1;
	margin: 0 0 22px;
	text-transform: uppercase;
}

.bsc-bdd-profile__list {
	display: grid;
	gap: 16px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.bsc-bdd-profile__list li {
	display: grid;
	gap: 3px;
}

.bsc-bdd-profile__list strong {
	color: var(--bsc-bdd-muted);
	font-size: 0.75rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.bsc-bdd-profile a {
	color: var(--bsc-bdd-ink);
	font-weight: 700;
	text-decoration-color: var(--bsc-bdd-accent);
	text-decoration-thickness: 3px;
	text-underline-offset: 3px;
}

.bsc-bdd-profile a:hover,
.bsc-bdd-profile a:focus-visible {
	color: #006e61;
}

.bsc-bdd-hours {
	display: grid;
	gap: 8px;
	margin: 0;
}

.bsc-bdd-hours > div {
	display: grid;
	gap: 14px;
	grid-template-columns: minmax(80px, 0.75fr) 1.25fr;
}

.bsc-bdd-hours dt {
	font-weight: 700;
}

.bsc-bdd-hours dd {
	margin: 0;
	text-align: right;
}

.bsc-bdd-hours__notes {
	border-top: 2px solid #d5d5d5;
	margin: 14px 0 0;
	padding-top: 14px;
}

.bsc-bdd-socials {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.bsc-bdd-socials a {
	background: #111;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.03em;
	padding: 10px 13px;
	text-decoration: none;
	text-transform: uppercase;
	transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.bsc-bdd-socials a:hover,
.bsc-bdd-socials a:focus-visible {
	background: var(--bsc-bdd-accent);
	color: #000;
	transform: translateY(-2px);
}

.bsc-bdd-related {
	display: grid;
	gap: clamp(46px, 7vw, 78px);
	margin-top: clamp(54px, 8vw, 96px);
}

.bsc-bdd-related__group {
	border-top: 6px solid #111;
	padding-top: 24px;
}

.bsc-bdd-related__group > h3 {
	font-size: clamp(2rem, 5vw, 4.6rem);
	letter-spacing: -0.05em;
	line-height: 0.92;
	margin-bottom: clamp(22px, 4vw, 38px);
}

.bsc-bdd-related__grid {
	display: grid;
	gap: 28px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bsc-bdd-related-card {
	align-items: flex-end;
	background: var(--bsc-bdd-secondary);
	color: #fff;
	display: flex;
	isolation: isolate;
	min-height: 340px;
	overflow: hidden;
	position: relative;
}

.bsc-bdd-related-card--no-image {
	background:
		linear-gradient(135deg, transparent 0 45%, rgba(0, 0, 0, 0.1) 45% 55%, transparent 55% 100%),
		var(--bsc-bdd-secondary);
	background-size: 32px 32px;
}

.bsc-bdd-related-card > a {
	align-items: flex-end;
	color: #fff;
	display: flex;
	height: 100%;
	inset: 0;
	position: absolute;
	text-decoration: none;
	width: 100%;
	z-index: 1;
}

.bsc-bdd-related-card > a::after {
	background:
		linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, transparent 72%),
		rgba(0, 0, 0, 0.3);
	content: "";
	inset: 0;
	position: absolute;
	z-index: 1;
}

.bsc-bdd-related-card img {
	height: 100%;
	inset: 0;
	object-fit: cover;
	position: absolute;
	transform: scale(1.001);
	transition: transform 450ms cubic-bezier(0.2, 0.65, 0.3, 1);
	width: 100%;
}

.bsc-bdd-related-card:hover img,
.bsc-bdd-related-card:focus-within img {
	transform: scale(1.055);
}

.bsc-bdd-related-card__content {
	display: grid;
	gap: 12px;
	padding: 28px;
	position: relative;
	width: 100%;
	z-index: 2;
}

.bsc-bdd-related-card__badge {
	background: var(--bsc-bdd-accent);
	color: #000;
	font-size: 0.7rem;
	font-weight: 800;
	justify-self: start;
	letter-spacing: 0.05em;
	padding: 0.45em 0.7em;
	text-transform: uppercase;
}

.bsc-bdd-related-card strong {
	color: #fff;
	font-size: clamp(1.55rem, 2.6vw, 2.3rem);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 0.96;
	text-transform: uppercase;
}

.bsc-bdd-related-card small {
	color: #fff;
	line-height: 1.5;
	opacity: 0.88;
}

.bsc-bdd-related-card > a:hover,
.bsc-bdd-related-card > a:focus-visible {
	color: #fff;
}

.bsc-bdd-related-card > a:focus-visible {
	outline: 4px solid var(--bsc-bdd-accent);
	outline-offset: -4px;
}

@media (max-width: 1024px) {
	.bsc-bdd-directory {
		--bsc-bdd-slides: var(--bsc-bdd-slides-tablet);
	}

	.bsc-bdd-profile__grid,
	.bsc-bdd-related__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 767px) {
	.bsc-bdd-directory {
		--bsc-bdd-slides: var(--bsc-bdd-slides-mobile);
	}

	.bsc-bdd-directory--avatars {
		--bsc-bdd-avatar-size: 88px;
	}

	.bsc-bdd-directory__arrows {
		display: none;
	}

	.bsc-bdd-profile__identity {
		min-height: 390px;
	}

	.bsc-bdd-profile__about {
		grid-template-columns: 1fr;
	}

	.bsc-bdd-profile__grid,
	.bsc-bdd-related__grid {
		grid-template-columns: 1fr;
	}

	.bsc-bdd-profile__hero-content {
		padding: 24px;
	}

	.bsc-bdd-profile h2 {
		font-size: clamp(2.25rem, 12vw, 4rem);
	}

	.bsc-bdd-profile__section-title {
		font-size: clamp(2rem, 8.5vw, 3rem);
	}

	.bsc-bdd-related-card {
		min-height: 320px;
	}

	.bsc-bdd-related-card__content {
		padding: 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bsc-bdd-card,
	.bsc-bdd-card__media img,
	.bsc-bdd-avatar-card__media,
	.bsc-bdd-profile__avatar .bsc-bdd-avatar__image,
	.bsc-bdd-related-card img,
	.bsc-bdd-socials a,
	.bsc-bdd-directory__viewport,
	.bsc-bdd-directory__arrow,
	.bsc-bdd-directory__dot {
		scroll-behavior: auto;
		transition: none;
	}
}
