.bsc-media {
	--bsc-media-accent: #00d1b4;
	--bsc-media-secondary: #bd009f;
	--bsc-media-background: #111;
	--bsc-media-card-background: #181818;
	--bsc-media-text: #fff;
	--bsc-media-muted: #c9c9c9;
	--bsc-media-gap: 20px;
	--bsc-media-radius: 20px;
	--bsc-media-columns: 4;
	background: var(--bsc-media-background);
	color: var(--bsc-media-text);
	font-family: inherit;
	position: relative;
	width: 100%;
}

.bsc-media,
.bsc-media * {
	box-sizing: border-box;
}

.bsc-media a {
	color: inherit;
}

.bsc-media button,
.bsc-media input {
	font: inherit;
}

.bsc-media__header {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0 0 calc(var(--bsc-media-gap) * 1.35);
}

.bsc-media__eyebrow,
.bsc-media-card__category,
.bsc-media-profile__type,
.bsc-media-podcast-dock__eyebrow {
	color: var(--bsc-media-accent);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
	line-height: 1.2;
	text-transform: uppercase;
}

.bsc-media__title {
	color: var(--bsc-media-text);
	font-size: clamp(28px, 4vw, 54px);
	font-weight: 900;
	letter-spacing: -.04em;
	line-height: .98;
	margin: 0;
	max-width: 880px;
	text-wrap: balance;
}

.bsc-media__empty {
	background: var(--bsc-media-card-background);
	background: color-mix(in srgb, var(--bsc-media-card-background) 88%, white 12%);
	border-inline-start: 5px solid var(--bsc-media-accent);
	color: var(--bsc-media-muted);
	padding: 20px 22px;
}

.bsc-media-card {
	background: var(--bsc-media-card-background);
	border-radius: var(--bsc-media-radius);
	color: var(--bsc-media-text);
	display: flex;
	flex-direction: column;
	height: 100%;
	min-width: 0;
	overflow: hidden;
	position: relative;
	text-decoration: none;
	transform: translateZ(0);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.bsc-media-card:hover,
.bsc-media-card:focus-visible {
	box-shadow: inset 0 0 0 4px var(--bsc-media-accent), 0 20px 42px rgba(0, 0, 0, .24);
	outline: 0;
	transform: translateY(-4px);
}

.bsc-media-card__visual {
	background: linear-gradient(135deg, var(--bsc-media-secondary), #111);
	aspect-ratio: 16 / 10;
	overflow: hidden;
	position: relative;
}

.bsc-media-card--shorts .bsc-media-card__visual {
	aspect-ratio: 9 / 12;
}

.bsc-media-card__visual img {
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.2, .75, .25, 1);
	width: 100%;
}

.bsc-media-card:hover .bsc-media-card__visual img,
.bsc-media-card:focus-visible .bsc-media-card__visual img {
	transform: scale(1.045);
}

.bsc-media-card__overlay {
	background: linear-gradient(to top, rgba(0, 0, 0, .78), transparent 70%);
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bsc-media-card__placeholder {
	align-items: center;
	color: #fff;
	display: flex;
	font-size: 48px;
	font-weight: 950;
	height: 100%;
	justify-content: center;
}

.bsc-media-card__source {
	background: var(--bsc-media-accent);
	color: #050505;
	font-size: 11px;
	font-weight: 950;
	left: 14px;
	letter-spacing: .08em;
	padding: 7px 9px;
	position: absolute;
	text-transform: uppercase;
	top: 14px;
}

.bsc-media-card--spotify .bsc-media-card__source {
	background: #1ed760;
}

.bsc-media-card--shorts .bsc-media-card__source {
	background: #fff;
}

.bsc-media-card--agenda .bsc-media-card__source {
	background: var(--bsc-media-secondary);
	color: #fff;
}

.bsc-media-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 10px;
	padding: 20px;
}

.bsc-media-card__title {
	color: var(--bsc-media-text);
	font-size: clamp(18px, 2vw, 26px);
	font-weight: 900;
	letter-spacing: -.025em;
	line-height: 1.04;
	margin: 0;
	text-wrap: balance;
}

.bsc-media-card__excerpt {
	color: var(--bsc-media-muted);
	display: -webkit-box;
	font-size: 14px;
	line-height: 1.5;
	margin: 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.bsc-media-card__date {
	color: var(--bsc-media-muted);
	font-size: 12px;
	font-weight: 700;
	margin-top: auto;
}

.bsc-media-card__arrow {
	align-items: center;
	background: var(--bsc-media-accent);
	border-radius: 50%;
	bottom: 14px;
	color: #050505;
	display: flex;
	font-size: 17px;
	font-weight: 900;
	height: 34px;
	justify-content: center;
	position: absolute;
	right: 14px;
	width: 34px;
}

/* Flash Mix */
.bsc-media-flash__items {
	display: grid;
	gap: var(--bsc-media-gap);
	grid-template-columns: repeat(var(--bsc-media-columns), minmax(0, 1fr));
}

.bsc-media-flash--rail .bsc-media-flash__items {
	display: grid;
	grid-auto-columns: minmax(0, var(--bsc-media-card-width, 310px));
	grid-auto-flow: column;
	grid-template-columns: none;
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 3px 3px 14px;
	scroll-snap-type: inline mandatory;
	scrollbar-color: var(--bsc-media-accent) rgba(255, 255, 255, .12);
}

.bsc-media-flash--rail .bsc-media-flash__items > * {
	scroll-snap-align: start;
}

/* Profil 360 */
.bsc-media-profile__identity {
	background: linear-gradient(135deg, var(--bsc-media-card-background), var(--bsc-media-secondary));
	align-items: center;
	background:
		radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--bsc-media-accent) 32%, transparent), transparent 35%),
		linear-gradient(135deg, var(--bsc-media-card-background), color-mix(in srgb, var(--bsc-media-secondary) 34%, #111));
	border-radius: var(--bsc-media-radius);
	display: grid;
	gap: clamp(20px, 4vw, 46px);
	grid-template-columns: var(--bsc-profile-avatar-size, 132px) minmax(0, 1fr);
	margin-bottom: calc(var(--bsc-media-gap) * 1.6);
	overflow: hidden;
	padding: clamp(22px, 4vw, 48px);
	position: relative;
}

.bsc-media-profile__identity::after {
	background: var(--bsc-media-accent);
	content: "";
	height: 7px;
	inset: auto 0 0;
	position: absolute;
}

.bsc-media-profile__avatar {
	align-items: center;
	background: var(--bsc-media-secondary);
	border: 5px solid var(--bsc-media-accent);
	border-radius: 50%;
	display: flex;
	font-size: calc(var(--bsc-profile-avatar-size, 132px) * .25);
	font-weight: 950;
	height: var(--bsc-profile-avatar-size, 132px);
	justify-content: center;
	overflow: hidden;
	width: var(--bsc-profile-avatar-size, 132px);
}

.bsc-media-profile__avatar img {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bsc-media-profile__copy {
	max-width: 760px;
}

.bsc-media-profile__name {
	font-size: clamp(32px, 5vw, 66px);
	font-weight: 950;
	letter-spacing: -.055em;
	line-height: .95;
	margin: 6px 0 14px;
}

.bsc-media-profile__copy p {
	color: var(--bsc-media-muted);
	font-size: 16px;
	line-height: 1.55;
	margin: 0 0 18px;
}

.bsc-media-profile__link {
	color: var(--bsc-media-accent);
	font-weight: 850;
	text-decoration-thickness: 2px;
	text-underline-offset: 4px;
}

.bsc-media-profile__sources {
	display: grid;
	gap: calc(var(--bsc-media-gap) * 1.7);
}

.bsc-media-profile__source > h3 {
	border-block-start: 5px solid var(--bsc-media-accent);
	font-size: clamp(22px, 3vw, 34px);
	font-weight: 950;
	margin: 0 0 var(--bsc-media-gap);
	padding-top: 10px;
}

.bsc-media-profile__source--spotify > h3 {
	border-color: #1ed760;
}

.bsc-media-profile__source--shorts > h3 {
	border-color: #fff;
}

.bsc-media-profile__source--agenda > h3 {
	border-color: var(--bsc-media-secondary);
}

.bsc-media-profile__grid {
	display: grid;
	gap: var(--bsc-media-gap);
	grid-template-columns: repeat(var(--bsc-media-columns), minmax(0, 1fr));
}

.bsc-media-card--compact .bsc-media-card__visual {
	aspect-ratio: 16 / 8;
}

/* Suggestions liées */
.bsc-media-related__grid {
	display: grid;
	gap: var(--bsc-media-gap);
	grid-template-columns: repeat(var(--bsc-media-columns), minmax(0, 1fr));
}

/* Agenda Express */
.bsc-media-agenda-express .screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

.bsc-media-agenda-express__filters {
	background: var(--bsc-media-card-background);
	display: grid;
	gap: 12px;
	margin-bottom: var(--bsc-media-gap);
}

.bsc-media-agenda-express__filter-fields {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bsc-media-agenda-express__filter {
	display: block;
	min-width: 0;
}

.bsc-media-agenda-express__filter select {
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, currentColor 50%),
		linear-gradient(135deg, currentColor 50%, transparent 50%);
	background-position:
		calc(100% - 17px) calc(50% - 2px),
		calc(100% - 12px) calc(50% - 2px);
	background-repeat: no-repeat;
	background-size: 5px 5px, 5px 5px;
	border: 0;
	box-sizing: border-box;
	cursor: pointer;
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	min-height: 48px;
	padding: 10px 38px 10px 14px;
	width: 100%;
}

.bsc-media-agenda-express__filter select:focus-visible,
.bsc-media-agenda-express__reset:focus-visible {
	outline: 3px solid var(--bsc-media-accent);
	outline-offset: 3px;
}

.bsc-media-agenda-express__filter option:disabled {
	display: none;
}

.bsc-media-agenda-express__filter-footer {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: space-between;
}

.bsc-media-agenda-express__results {
	color: var(--bsc-media-muted);
	font-size: 13px;
	font-weight: 800;
}

.bsc-media-agenda-express__reset {
	appearance: none;
	background: var(--bsc-media-accent);
	border: 0;
	color: #050505;
	cursor: pointer;
	font: inherit;
	font-size: 12px;
	font-weight: 900;
	padding: 10px 14px;
	text-transform: uppercase;
}

.bsc-media-agenda-express__reset[hidden],
.bsc-media-agenda-express__rail[hidden],
.bsc-media-agenda-express__event[hidden],
.bsc-media-agenda-express__filter-empty[hidden] {
	display: none !important;
}

.bsc-media-agenda-express__filter-empty {
	margin-top: 0;
}

.bsc-media-agenda-express {
	--bsc-agenda-columns: 3;
}

.bsc-media-agenda-express__rail {
	display: grid;
	gap: var(--bsc-media-gap);
	grid-template-columns: repeat(var(--bsc-agenda-columns, 3), minmax(0, 1fr));
	overflow-anchor: none;
}

.bsc-media-agenda-express__event {
	background: var(--bsc-media-card-background);
	border-radius: 0;
	color: var(--bsc-media-text);
	display: flex;
	flex-direction: column;
	isolation: isolate;
	min-height: 540px;
	overflow: hidden;
	position: relative;
	transition: box-shadow 220ms ease, transform 220ms ease;
}

.bsc-media-agenda-express__event:hover {
	box-shadow: 0 22px 48px rgba(0, 0, 0, .3);
	transform: translateY(-5px);
}

.bsc-media-agenda-express__event.is-filter-match {
	animation: bsc-agenda-filter-in .32s ease;
}

@keyframes bsc-agenda-filter-in {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.bsc-media-agenda-express__visual {
	background: linear-gradient(135deg, var(--bsc-media-secondary), #111);
	height: 240px;
	overflow: hidden;
	position: relative;
}

.bsc-media-agenda-express__visual-link {
	display: block;
	height: 100%;
	position: relative;
	width: 100%;
}

.bsc-media-agenda-express__visual-link::after {
	background: linear-gradient(to top, rgba(0, 0, 0, .45), transparent 72%);
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.bsc-media-agenda-express__visual-link:focus-visible {
	box-shadow: inset 0 0 0 4px var(--bsc-media-accent);
	outline: 0;
}

.bsc-media-agenda-express__visual img {
	display: block;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms cubic-bezier(.2, .75, .25, 1);
	width: 100%;
}

.bsc-media-agenda-express__event:hover .bsc-media-agenda-express__visual img {
	transform: scale(1.045);
}

.bsc-media-agenda-express__placeholder {
	align-items: center;
	color: rgba(255, 255, 255, .92);
	display: flex;
	font-size: clamp(48px, 7vw, 82px);
	font-weight: 950;
	height: 100%;
	justify-content: center;
	letter-spacing: -.07em;
}

.bsc-media-agenda-express__date {
	align-items: center;
	background: var(--bsc-media-accent);
	bottom: 16px;
	color: #050505;
	display: flex;
	gap: 5px;
	justify-content: center;
	left: 16px;
	padding: 8px 10px 7px;
	pointer-events: none;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	z-index: 2;
}

.bsc-media-agenda-express__date span,
.bsc-media-agenda-express__date small {
	font-size: 10px;
	font-weight: 900;
	letter-spacing: .08em;
}

.bsc-media-agenda-express__date strong {
	font-size: 20px;
	font-weight: 950;
	letter-spacing: -.04em;
	line-height: 1;
}

.bsc-media-agenda-express__content {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 26px;
}

.bsc-media-agenda-express__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 15px;
}

.bsc-media-agenda-express__category {
	background: var(--bsc-media-accent);
	color: #050505;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	padding: 6px 8px 5px;
	text-transform: uppercase;
}

.bsc-media-agenda-express__countdown {
	background: var(--bsc-media-secondary);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	max-width: calc(100% - 32px);
	padding: 8px 10px 7px;
	position: absolute;
	right: 16px;
	top: 16px;
	text-transform: uppercase;
	z-index: 2;
}

.bsc-media-agenda-express__content h3 {
	color: var(--bsc-media-text);
	font-size: clamp(24px, 2.7vw, 38px);
	font-weight: 950;
	letter-spacing: -.045em;
	line-height: .98;
	margin: 0;
	text-transform: uppercase;
}

.bsc-media-agenda-express__content h3 a {
	color: inherit;
	text-decoration: none;
}

.bsc-media-agenda-express__excerpt {
	color: #f2f2f2;
	font-size: 15px;
	line-height: 1.55;
	margin: 17px 0 0;
}

.bsc-media-agenda-express__datetime,
.bsc-media-agenda-express__meta {
	color: var(--bsc-media-muted);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .045em;
	text-transform: uppercase;
}

.bsc-media-agenda-express__datetime {
	margin-top: 22px;
}

.bsc-media-agenda-express__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px 12px;
	margin-top: 8px;
}

.bsc-media-agenda-express__meta a {
	color: var(--bsc-media-accent);
	position: relative;
	z-index: 2;
}

.bsc-media-agenda-express__price {
	color: var(--bsc-media-text);
}

.bsc-media-agenda-express__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: auto;
	padding-top: 24px;
}

.bsc-media-agenda-express__actions a {
	background: var(--bsc-media-accent);
	color: #050505;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .05em;
	padding: 11px 13px;
	text-decoration: none;
	text-transform: uppercase;
	transition: transform 180ms ease;
}

.bsc-media-agenda-express__actions a:hover,
.bsc-media-agenda-express__actions a:focus-visible {
	outline: 0;
	transform: translateY(-2px);
}

.bsc-media-agenda-express__actions a + a {
	background: transparent;
	box-shadow: inset 0 0 0 2px var(--bsc-media-secondary);
	color: var(--bsc-media-text);
}

/* Shorts Stories */
.bsc-media-stories__rail {
	display: flex;
	gap: var(--bsc-media-gap);
	overflow-x: auto;
	overscroll-behavior-inline: contain;
	padding: 4px 4px 14px;
	scroll-snap-type: inline mandatory;
	scrollbar-color: var(--bsc-media-accent) rgba(255, 255, 255, .12);
}

.bsc-media-stories__item {
	flex: 0 0 var(--bsc-story-size, 92px);
	scroll-snap-align: start;
}

.bsc-media-stories__trigger {
	align-items: center;
	background: none;
	border: 0;
	color: var(--bsc-media-text);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding: 0;
	width: 100%;
}

.bsc-media-stories__ring {
	background: linear-gradient(135deg, var(--bsc-media-accent), var(--bsc-media-secondary));
	border-radius: 50%;
	display: block;
	height: var(--bsc-story-size, 92px);
	padding: 4px;
	position: relative;
	transition: transform 180ms ease;
	width: var(--bsc-story-size, 92px);
}

.bsc-media-stories__trigger:hover .bsc-media-stories__ring,
.bsc-media-stories__trigger:focus-visible .bsc-media-stories__ring {
	transform: scale(1.055);
}

.bsc-media-stories__trigger:focus-visible {
	outline: 3px solid var(--bsc-media-accent);
	outline-offset: 5px;
}

.bsc-media-stories__ring img {
	border: 4px solid var(--bsc-media-background);
	border-radius: 50%;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.bsc-media-stories__ring > span {
	align-items: center;
	background: #fff;
	border-radius: 50%;
	bottom: 0;
	color: #050505;
	display: flex;
	font-size: 10px;
	height: 27px;
	justify-content: center;
	position: absolute;
	right: 0;
	width: 27px;
}

.bsc-media-stories__label {
	display: -webkit-box;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.15;
	overflow: hidden;
	text-align: center;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.bsc-media-stories__modal {
	display: none;
	inset: 0;
	place-items: center;
	position: fixed;
	z-index: 999999;
}

.bsc-media-stories__modal.is-open {
	display: grid;
}

.bsc-media-stories__backdrop {
	background: rgba(0, 0, 0, .88);
	border: 0;
	inset: 0;
	position: absolute;
}

.bsc-media-stories__dialog {
	background: #050505;
	border: 3px solid var(--bsc-media-accent);
	border-radius: min(var(--bsc-media-radius), 26px);
	box-shadow: 0 30px 100px rgba(0, 0, 0, .6);
	display: flex;
	flex-direction: column;
	height: min(92vh, 860px);
	max-width: calc(100vw - 24px);
	overflow: hidden;
	position: relative;
	width: var(--bsc-story-modal-width, 430px);
	z-index: 1;
}

.bsc-media-stories__toolbar {
	display: flex;
	justify-content: flex-end;
	left: 0;
	padding: 12px;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 3;
}

.bsc-media-stories__toolbar button,
.bsc-media-stories__previous,
.bsc-media-stories__next {
	align-items: center;
	background: rgba(0, 0, 0, .72);
	border: 2px solid rgba(255, 255, 255, .65);
	border-radius: 50%;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-size: 24px;
	height: 42px;
	justify-content: center;
	pointer-events: auto;
	width: 42px;
}

.bsc-media-stories__player {
	background: #000;
	flex: 1;
	min-height: 0;
}

.bsc-media-stories__player iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.bsc-media-stories__caption {
	background: #0d0d0d;
	padding: 16px 20px 20px;
}

.bsc-media-stories__caption h3 {
	font-size: 20px;
	font-weight: 900;
	line-height: 1.05;
	margin: 0 0 7px;
}

.bsc-media-stories__caption p {
	color: var(--bsc-media-muted);
	font-size: 12px;
	margin: 0 0 8px;
}

.bsc-media-stories__caption a {
	color: var(--bsc-media-accent);
	font-size: 12px;
	font-weight: 850;
}

.bsc-media-stories__previous,
.bsc-media-stories__next {
	position: absolute;
	top: 48%;
	transform: translateY(-50%);
	z-index: 4;
}

.bsc-media-stories__previous {
	left: 10px;
}

.bsc-media-stories__next {
	right: 10px;
}

body.bsc-stories-open {
	overflow: hidden;
}

/* Podcast Dock */
.bsc-media-podcast-dock {
	background: transparent;
	max-width: var(--bsc-podcast-dock-width, 620px);
	padding: 0 !important;
	width: min(100%, var(--bsc-podcast-dock-width, 620px));
}

.bsc-media-podcast-dock--fixed {
	bottom: max(16px, env(safe-area-inset-bottom));
	position: fixed;
	z-index: 99990;
}

.bsc-media-podcast-dock--bottom-left {
	left: max(16px, env(safe-area-inset-left));
}

.bsc-media-podcast-dock--bottom-right {
	right: max(16px, env(safe-area-inset-right));
}

.bsc-media-podcast-dock--bottom-center {
	left: 50%;
	transform: translateX(-50%);
}

.bsc-media-podcast-dock__panel {
	align-items: start;
	background: var(--bsc-media-card-background);
	border: 2px solid var(--bsc-media-accent);
	border-radius: var(--bsc-media-radius);
	box-shadow: 0 22px 60px rgba(0, 0, 0, .45);
	display: grid;
	gap: 16px;
	grid-template-columns: var(--bsc-podcast-cover-size, 78px) minmax(0, 1fr) 32px;
	overflow: hidden;
	padding: 14px;
}

.bsc-media-podcast-dock__cover {
	background: var(--bsc-media-secondary);
	border-radius: calc(var(--bsc-media-radius) * .65);
	height: var(--bsc-podcast-cover-size, 78px);
	object-fit: cover;
	width: var(--bsc-podcast-cover-size, 78px);
}

.bsc-media-podcast-dock__cover--empty {
	align-items: center;
	display: flex;
	font-size: 30px;
	justify-content: center;
}

.bsc-media-podcast-dock__content {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.bsc-media-podcast-dock__title {
	display: block;
	font-size: 17px;
	font-weight: 900;
	line-height: 1.15;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.bsc-media-podcast-dock__content > p {
	color: var(--bsc-media-muted);
	display: -webkit-box;
	font-size: 12px;
	line-height: 1.4;
	margin: 8px 0;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.bsc-media-podcast-dock__controls {
	align-items: center;
	display: grid;
	gap: 10px;
	grid-template-columns: 36px minmax(70px, 1fr) auto;
	margin-top: 9px;
}

.bsc-media-podcast-dock__play {
	align-items: center;
	background: var(--bsc-media-accent);
	border: 0;
	border-radius: 50%;
	color: #050505;
	cursor: pointer;
	display: flex;
	font-weight: 950;
	height: 36px;
	justify-content: center;
	width: 36px;
}

.bsc-media-podcast-dock__play.is-playing span {
	font-size: 0;
}

.bsc-media-podcast-dock__play.is-playing span::after {
	content: "Ⅱ";
	font-size: 15px;
}

.bsc-media-podcast-dock__controls input {
	accent-color: var(--bsc-media-accent);
	min-width: 0;
	width: 100%;
}

.bsc-media-podcast-dock__controls > span {
	color: var(--bsc-media-muted);
	font-size: 11px;
	font-variant-numeric: tabular-nums;
}

.bsc-media-podcast-dock__expand {
	align-self: flex-start;
	background: transparent;
	border: 0;
	color: var(--bsc-media-accent);
	cursor: pointer;
	font-size: 11px;
	font-weight: 850;
	margin-top: 7px;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.bsc-media-podcast-dock__embed {
	height: 152px;
	margin-top: 12px;
	overflow: hidden;
	transition: height 220ms ease, opacity 220ms ease, margin 220ms ease;
}

.bsc-media-podcast-dock__embed iframe {
	border: 0;
	border-radius: 12px;
	height: 152px;
	width: 100%;
}

.bsc-media-podcast-dock.is-collapsed .bsc-media-podcast-dock__embed,
.bsc-media-podcast-dock.is-collapsed .bsc-media-podcast-dock__content > p {
	height: 0;
	margin: 0;
	opacity: 0;
	pointer-events: none;
}

.bsc-media-podcast-dock__spotify {
	align-items: center;
	background: #1ed760;
	border-radius: 50%;
	color: #050505 !important;
	display: flex;
	font-weight: 950;
	height: 30px;
	justify-content: center;
	text-decoration: none;
	width: 30px;
}

@media (max-width: 1024px) and (min-width: 768px) {
	.bsc-media-agenda-express {
		--bsc-agenda-columns: 2;
	}
}

@media (max-width: 767px) {
	.bsc-media__title {
		font-size: clamp(28px, 10vw, 44px);
	}

	.bsc-media-profile__identity {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.bsc-media-profile__avatar {
		margin-inline: auto;
	}

	.bsc-media-agenda-express__filter-fields {
		grid-template-columns: 1fr;
	}

	.bsc-media-agenda-express__filter-footer {
		align-items: stretch;
		flex-direction: column;
	}

	.bsc-media-agenda-express {
		--bsc-agenda-columns: 1;
	}

	.bsc-media-agenda-express__event {
		min-height: 500px;
	}

	.bsc-media-agenda-express__visual {
		height: 210px;
	}

	.bsc-media-agenda-express__content {
		padding: 22px;
	}

	.bsc-media-agenda-express__reset {
		width: 100%;
	}

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

	.bsc-media-podcast-dock--fixed {
		bottom: max(8px, env(safe-area-inset-bottom));
		left: max(8px, env(safe-area-inset-left));
		right: max(8px, env(safe-area-inset-right));
		transform: none;
		width: auto;
	}

	.bsc-media-podcast-dock__panel {
		gap: 10px;
		grid-template-columns: 58px minmax(0, 1fr) 28px;
		padding: 10px;
	}

	.bsc-media-podcast-dock__cover {
		height: 58px;
		width: 58px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bsc-media *,
	.bsc-media *::before,
	.bsc-media *::after {
		scroll-behavior: auto !important;
		transition-duration: .001ms !important;
	}
}
