.podcast-site-header {
	position: sticky;
	top: 12px;
	z-index: 15;
	width: min(100%, var(--podcast-max));
	min-height: 68px;
	margin: 0 auto 18px;
	padding: 10px 12px 10px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	border: 1px solid rgba(255, 255, 255, .92);
	border-radius: 20px;
	background: rgba(255, 255, 255, .84);
	box-shadow: 0 12px 30px rgba(44, 94, 158, .10);
	backdrop-filter: blur(16px);
}

.podcast-home-brand,
.podcast-home-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	color: #17243d;
	font-weight: 850;
	text-decoration: none;
}

.podcast-home-brand img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.podcast-home-brand > span > span {
	color: #347fd6;
}

.podcast-home-link {
	min-height: 44px;
	padding: 9px 15px;
	border-radius: 14px;
	background: #182744;
	box-shadow: 0 8px 18px rgba(24, 39, 68, .17);
	color: #fff;
	transition: transform .18s, box-shadow .18s;
}

.podcast-home-link:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 24px rgba(24, 39, 68, .24);
}

.podcast-playlist-storage {
	margin: 9px 0 0;
	color: #71829b;
	font-size: .72rem;
}

.podcast-playlist-storage::before {
	display: inline-block;
	width: 7px;
	height: 7px;
	margin: 0 6px 1px 0;
	border-radius: 50%;
	background: #55a579;
	content: '';
}

.podcast-playlist-storage[data-save-state="unavailable"]::before {
	background: #bd7b35;
}

.podcast-playlist-dialog {
	width: min(calc(100% - 32px), 430px);
	margin: auto;
	padding: 0;
	border: 0;
	border-radius: 24px;
	background: transparent;
	box-shadow: 0 26px 80px rgba(15, 39, 71, .28);
}

.podcast-playlist-dialog::backdrop {
	background: rgba(19, 39, 68, .42);
	backdrop-filter: blur(5px);
}

.podcast-playlist-dialog-card {
	position: relative;
	margin: 0;
	padding: 32px;
	border: 1px solid rgba(255, 255, 255, .92);
	border-radius: 24px;
	background: linear-gradient(145deg, #ffffff, #f3f8ff);
	color: var(--podcast-ink);
}

.podcast-playlist-dialog-card h2 {
	margin: 0;
	font-size: 1.8rem;
	letter-spacing: -.035em;
}

.podcast-playlist-dialog-card > p:not(.podcast-eyebrow) {
	margin: 10px 0 22px;
	color: var(--podcast-muted);
}

.podcast-playlist-dialog-close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 34px;
	height: 34px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #eaf5ff;
	color: #2870c7;
	font-size: 1.4rem;
	line-height: 1;
}

.podcast-playlist-name-field {
	display: grid;
	gap: 7px;
	color: #4f6f98;
	font-size: .73rem;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.podcast-playlist-name-field input {
	width: 100%;
	height: 52px;
	padding: 0 15px;
	border: 1px solid #c6d8ee;
	border-radius: 15px;
	background: #fff;
	color: var(--podcast-ink);
	font-weight: 700;
	letter-spacing: 0;
	text-transform: none;
}

.podcast-playlist-dialog-actions {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 22px;
}

.podcast-playlist-dialog-actions .podcast-secondary,
.podcast-playlist-dialog-actions .podcast-primary {
	min-height: 44px;
	padding: 9px 15px;
	border-radius: 13px;
	font-size: .86rem;
}

@media (max-width: 620px) {
	.podcast-site-header {
		top: 7px;
		min-height: 58px;
		margin-bottom: 12px;
		padding: 8px 9px 8px 12px;
		border-radius: 16px;
	}

	.podcast-home-brand img {
		width: 33px;
		height: 33px;
	}

	.podcast-home-brand {
		font-size: .9rem;
	}

	.podcast-home-link {
		min-height: 38px;
		padding: 7px 10px;
		font-size: .8rem;
	}

	.podcast-playlist-dialog-card {
		padding: 28px 22px 22px;
	}

	.podcast-playlist-dialog-actions {
		align-items: stretch;
		flex-direction: column-reverse;
	}

	.podcast-playlist-dialog-actions button {
		width: 100%;
	}
}
