/**
 * Modern PostGhost Player styles (Elementor widget only).
 */

.pg-modern-player {
	--pgp-accent: #3ecfcf;
	--pgp-accent-soft: rgba(62, 207, 207, 0.18);
	--pgp-text: #1a1a1a;
	--pgp-muted: #8a94a6;
	--pgp-track: #e8ecf1;
	--pgp-bg: #ffffff;

	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 12px;
	width: 100%;
	max-width: 100%;
	padding: 16px 22px;
	background: var(--pgp-bg);
	border-radius: 14px;
	box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
	font-family: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
	color: var(--pgp-text);
	position: relative;
}

.pg-modern-player *,
.pg-modern-player *::before,
.pg-modern-player *::after {
	box-sizing: border-box;
}

.pg-modern-player__body {
	display: flex;
	align-items: center;
	gap: 18px;
	min-width: 0;
	width: 100%;
}

.pg-modern-player__art {
	width: 64px;
	height: 64px !important;
	flex: 0 0 64px;
	border-radius: 50% !important;
	object-fit: cover;
	overflow: hidden;
	background: var(--pgp-track);
}

img.pg-modern-player__art {
	border-radius: 50% !important;
}

.pg-modern-player__art--placeholder {
	background: linear-gradient(135deg, #f1f5f9 0%, #dbe4ee 100%);
}

.pg-modern-player__main {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.pg-modern-player__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--pgp-text);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pg-modern-player__meta {
	margin: 2px 0 0;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pgp-accent);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pg-modern-player__controls {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
	width: 100%;
}

.pg-modern-player__btn {
	appearance: none;
	border: 0;
	background: transparent;
	color: var(--pgp-muted);
	cursor: pointer;
	padding: 0;
	margin: 0;
	font: inherit;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
	flex: 0 0 auto;
}

.pg-modern-player__btn:focus-visible {
	outline: none;
}

.pg-modern-player__skip {
	font-size: 12px;
	font-weight: 600;
	min-width: 36px;
	background: transparent !important;
	color: var(--pgp-muted) !important;
}

.pg-modern-player__skip:hover,
.pg-modern-player__skip:focus,
.pg-modern-player__skip:focus-visible,
.pg-modern-player__skip:active {
	background: transparent !important;
	color: var(--pgp-muted) !important;
	box-shadow: none !important;
}

.pg-modern-player__play {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--pgp-accent);
	color: #fff;
	box-shadow: 0 6px 16px var(--pgp-accent-soft);
}

.pg-modern-player__play:hover,
.pg-modern-player__play:focus-visible {
	color: #fff;
	filter: brightness(0.96);
}

.pg-modern-player__play-icon {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 7px 0 7px 12px;
	border-color: transparent transparent transparent currentColor;
	margin-left: 2px;
}

.pg-modern-player.is-playing .pg-modern-player__play-icon {
	width: 10px;
	height: 12px;
	border: 0;
	margin-left: 0;
	background:
		linear-gradient(currentColor, currentColor) left / 3px 100% no-repeat,
		linear-gradient(currentColor, currentColor) right / 3px 100% no-repeat;
}

.pg-modern-player__progress-wrap {
	flex: 1 1 auto;
	min-width: 80px;
	display: flex;
	align-items: center;
	box-shadow: none;
}

.pg-modern-player__progress {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 4px;
	border-radius: 999px;
	background: var(--pgp-track);
	outline: none;
	cursor: pointer;
	box-shadow: none;
}

.pg-modern-player__progress:hover,
.pg-modern-player__progress:focus,
.pg-modern-player__progress:focus-visible,
.pg-modern-player__progress:active {
	box-shadow: none;
	outline: none;
}

.pg-modern-player__progress::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 4px;
	height: 14px;
	border-radius: 2px;
	background: var(--pgp-accent);
	border: 0;
	cursor: pointer;
}

.pg-modern-player__progress::-moz-range-thumb {
	width: 4px;
	height: 14px;
	border-radius: 2px;
	background: var(--pgp-accent);
	border: 0;
	cursor: pointer;
}

.pg-modern-player__progress::-moz-range-track {
	height: 4px;
	border-radius: 999px;
	background: var(--pgp-track);
}

.pg-modern-player__time {
	flex: 0 0 auto;
	font-size: 12px;
	font-weight: 500;
	color: #4b5563;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.pg-modern-player__extras {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 0 0 auto;
	margin-left: 4px;
}

.pg-modern-player__volume {
	position: relative;
	display: flex;
	align-items: center;
}

.pg-modern-player__volume-btn {
	width: 28px;
	height: 28px;
	border-radius: 7px;
	color: #536071 !important;
	background: transparent !important;
	transition: background 150ms ease, color 150ms ease;
}

.pg-modern-player__volume-btn:hover,
.pg-modern-player__volume-btn:focus,
.pg-modern-player__volume-btn:focus-visible,
.pg-modern-player__volume-btn:active,
.pg-modern-player__volume.is-open .pg-modern-player__volume-btn {
	outline: none !important;
	box-shadow: none !important;
	background: #f1f5f9 !important;
	color: #1f2937 !important;
}

.pg-modern-player__volume-btn svg {
	width: 18px;
	height: 18px;
	display: block;
}

.pg-modern-player__volume-panel {
	position: absolute;
	left: 50%;
	bottom: calc(100% + 10px);
	transform: translateX(-50%);
	width: 128px;
	height: 40px;
	padding: 0 14px;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 25;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
}

.pg-modern-player__volume-panel::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -5px;
	width: 8px;
	height: 8px;
	border-right: 1px solid #e2e8f0;
	border-bottom: 1px solid #e2e8f0;
	background: #fff;
	transform: translateX(-50%) rotate(45deg);
}

.pg-modern-player__volume.is-open .pg-modern-player__volume-panel {
	display: flex;
}

.pg-modern-player__volume-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100px;
	height: 4px;
	transform: none;
	background: linear-gradient(to right, var(--pgp-accent) 0%, var(--pgp-accent) 100%, #e2e8f0 100%, #e2e8f0 100%);
	border-radius: 999px;
	cursor: pointer;
	outline: none;
	box-shadow: none;
}

.pg-modern-player__volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--pgp-accent);
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
}

.pg-modern-player__volume-slider::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: #fff;
	border: 3px solid var(--pgp-accent);
	cursor: pointer;
	box-shadow: 0 1px 4px rgba(15, 23, 42, 0.18);
}

.pg-modern-player__speed {
	min-width: 28px;
	font-size: 13px;
	font-weight: 700;
	color: #1f2937 !important;
	background: transparent !important;
}

.pg-modern-player__speed:hover,
.pg-modern-player__speed:focus,
.pg-modern-player__speed:focus-visible,
.pg-modern-player__speed:active {
	color: #1f2937 !important;
	background: transparent !important;
	box-shadow: none !important;
}

.pg-modern-player__share-toggle {
	appearance: none;
	height: 32px;
	padding: 0 12px;
	gap: 6px;
	border: 1px solid #e3e8ee;
	border-radius: 8px;
	background: #f8fafc !important;
	color: #536071 !important;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	white-space: nowrap;
	transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.pg-modern-player__share-toggle:hover,
.pg-modern-player.is-share-open .pg-modern-player__share-toggle {
	border-color: #cfd6de;
	background: #eef2f6 !important;
	color: #1f2937 !important;
}

.pg-modern-player__share-toggle:focus,
.pg-modern-player__share-toggle:focus-visible,
.pg-modern-player__share-toggle:active,
.pg-modern-player__share-close:focus,
.pg-modern-player__share-close:focus-visible,
.pg-modern-player__share-close:active,
.pg-modern-player__share-copy:focus,
.pg-modern-player__share-copy:focus-visible,
.pg-modern-player__share-copy:active,
.pg-modern-player__share-icon:focus,
.pg-modern-player__share-icon:focus-visible,
.pg-modern-player__share-input:focus,
.pg-modern-player__share-input:focus-visible {
	outline: none !important;
	box-shadow: none !important;
}

.pg-modern-player__share-toggle svg {
	width: 14px;
	height: 14px;
	display: block;
	flex: 0 0 14px;
}

.pg-modern-player__share-panel {
	position: absolute;
	right: 18px;
	top: calc(100% + 10px);
	z-index: 20;
	width: min(520px, calc(100% - 36px));
	padding: 40px 20px 20px;
	background: #fff;
	border: 1px solid #e8ecf1;
	border-radius: 14px;
	box-shadow: 0 20px 55px rgba(15, 23, 42, 0.2);
	animation: pgp-share-in 160ms ease-out;
}

.pg-modern-player__share-panel::before {
	content: "";
	position: absolute;
	right: 42px;
	top: -7px;
	width: 12px;
	height: 12px;
	border-top: 1px solid #e8ecf1;
	border-left: 1px solid #e8ecf1;
	background: #fff;
	transform: rotate(45deg);
}

@keyframes pgp-share-in {
	from {
		opacity: 0;
		transform: translateY(-5px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pg-modern-player__share-panel[hidden] {
	display: none !important;
}

.pg-modern-player__share-close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 26px;
	height: 26px;
	border: 0;
	border-radius: 50%;
	background: #f1f5f9 !important;
	color: #64748b !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background 150ms ease, color 150ms ease;
}

.pg-modern-player__share-close:hover {
	background: #e2e8f0 !important;
	color: #1f2937 !important;
}

.pg-modern-player__share-close svg {
	width: 11px;
	height: 11px;
	display: block;
}

.pg-modern-player__share-row {
	display: grid;
	grid-template-columns: 58px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.pg-modern-player__share-row:last-child {
	margin-bottom: 0;
}

.pg-modern-player__share-label {
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #6b7280;
}

.pg-modern-player__share-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.pg-modern-player__share-icon {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: #f3f4f6 !important;
	color: #374151 !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	transition: background 150ms ease, color 150ms ease;
}

.pg-modern-player__share-icon:hover {
	background: #e5e7eb !important;
	color: #111827 !important;
}

.pg-modern-player__share-icon--facebook {
	background: #edf4ff !important;
	color: #1877f2 !important;
}

.pg-modern-player__share-icon--facebook:hover {
	background: #1877f2 !important;
	color: #fff !important;
}

.pg-modern-player__share-icon--x {
	background: #f1f3f5 !important;
	color: #111827 !important;
}

.pg-modern-player__share-icon--x:hover {
	background: #111827 !important;
	color: #fff !important;
}

.pg-modern-player__share-icon--linkedin {
	background: #eaf3fb !important;
	color: #0a66c2 !important;
}

.pg-modern-player__share-icon--linkedin:hover {
	background: #0a66c2 !important;
	color: #fff !important;
}

.pg-modern-player__share-icon--instagram {
	background: #fceef5 !important;
	color: #c13584 !important;
}

.pg-modern-player__share-icon--instagram:hover {
	background: #c13584 !important;
	color: #fff !important;
}

.pg-modern-player__share-icon--download {
	background: #eefbf9 !important;
	color: #159c8c !important;
}

.pg-modern-player__share-icon--download:hover {
	background: #159c8c !important;
	color: #fff !important;
}

.pg-modern-player__share-icon svg {
	width: 16px;
	height: 16px;
	display: block;
}

.pg-modern-player__share-field {
	display: flex;
	align-items: center;
	gap: 8px;
	min-width: 0;
}

.pg-modern-player__share-input {
	flex: 1 1 auto;
	min-width: 0;
	height: 38px;
	padding: 0 12px;
	border: 1px solid #e8ecf1;
	border-radius: 8px;
	background: #f8fafc;
	color: #4b5563;
	font-size: 13px;
	box-shadow: none;
	outline: none;
}

.pg-modern-player__share-copy {
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border: 0;
	border-radius: 8px;
	background: transparent !important;
	color: #94a3b8 !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: background 150ms ease, color 150ms ease;
}

.pg-modern-player__share-copy:hover {
	background: #f1f5f9 !important;
	color: #1f2937 !important;
}

.pg-modern-player__share-copy.is-copied {
	background: #eafaf8 !important;
	color: #12a594 !important;
}

.pg-modern-player__share-copy svg {
	width: 18px;
	height: 18px;
	display: block;
}

.pg-modern-player__audio {
	display: none;
}

.pg-modern-player__missing {
	margin: 0;
	padding: 12px 14px;
	border-left: 4px solid #d63638;
	background: #fff;
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
	color: #1d2327;
}

@media (max-width: 782px) {
	.pg-modern-player {
		padding: 14px;
		gap: 12px;
	}

	.pg-modern-player__body {
		flex-wrap: wrap;
		gap: 12px;
	}

	.pg-modern-player__main {
		flex: 1 1 calc(100% - 80px);
	}

	.pg-modern-player__controls {
		flex-wrap: wrap;
		row-gap: 10px;
	}

	.pg-modern-player__progress-wrap {
		order: 5;
		flex: 1 1 100%;
	}

	.pg-modern-player__time {
		order: 6;
	}

	.pg-modern-player__extras {
		order: 7;
		margin-left: auto;
	}

	.pg-modern-player__share-row {
		grid-template-columns: 1fr;
		gap: 8px;
	}

	.pg-modern-player__share-panel {
		left: 14px;
		right: 14px;
		width: auto;
		padding: 18px 16px 14px;
	}

	.pg-modern-player__share-panel::before {
		right: 36px;
	}
}

/* -------------------------------------------------------------------------
 * Layout 02 — horizontal art + grey control panel (screenshot style)
 * ------------------------------------------------------------------------- */

.pg-modern-player--layout_02 {
	--pgp-l2-panel: #e8e8e8;
	--pgp-l2-title: #1e3a5f;
	--pgp-l2-muted: #6b7280;
	--pgp-l2-track: #d4d4d4;
	--pgp-l2-fill: #9ca3af;
	--pgp-l2-play: #c62828;
	--pgp-accent: #9ca3af;
	--pgp-accent-soft: rgba(107, 114, 128, 0.18);
	--pgp-track: var(--pgp-l2-track);

	gap: 10px;
	padding: 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.pg-modern-player--layout_02 .pg-modern-player__shell {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: transparent;
	border-radius: 0;
	overflow: visible;
	position: relative;
	box-shadow: none;
}

.pg-modern-player--layout_02 .pg-modern-player__body {
	align-items: stretch;
	gap: 0;
	min-height: 168px;
	background: var(--pgp-l2-panel);
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 8px 28px rgba(15, 23, 42, 0.1);
}

.pg-modern-player--layout_02 .pg-modern-player__art {
	width: 168px;
	height: auto !important;
	min-height: 168px;
	flex: 0 0 168px;
	align-self: stretch;
	border-radius: 4px 0 0 4px !important;
	object-fit: cover;
}

.pg-modern-player--layout_02 img.pg-modern-player__art {
	border-radius: 4px 0 0 4px !important;
}

.pg-modern-player--layout_02 .pg-modern-player__art--placeholder {
	background: linear-gradient(135deg, #cfd8e3 0%, #9aa8b8 100%);
	min-height: 168px;
	border-radius: 4px 0 0 4px !important;
}

.pg-modern-player--layout_02 .pg-modern-player__main {
	flex: 1 1 auto;
	min-width: 0;
	padding: 16px 20px 14px;
	gap: 12px;
	justify-content: center;
}

.pg-modern-player--layout_02 .pg-modern-player__heading {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.pg-modern-player--layout_02 .pg-modern-player__show {
	margin: 0;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.3;
	color: #4b5563;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pg-modern-player--layout_02 .pg-modern-player__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.25;
	color: var(--pgp-l2-title);
	letter-spacing: -0.02em;
}

.pg-modern-player--layout_02 .pg-modern-player__progress-wrap {
	width: 100%;
	min-width: 0;
	flex: 0 0 auto;
	height: 10px;
	display: flex;
	align-items: center;
}

.pg-modern-player--layout_02 .pg-modern-player__progress {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 999px;
	background: var(--pgp-l2-track);
	outline: none;
	box-shadow: none;
	cursor: pointer;
}

.pg-modern-player--layout_02 .pg-modern-player__progress::-webkit-slider-runnable-track {
	height: 6px;
	border-radius: 999px;
	background: transparent;
	border: 0;
}

.pg-modern-player--layout_02 .pg-modern-player__progress::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	margin-top: -4px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px var(--pgp-l2-fill);
	cursor: pointer;
	opacity: 0;
	transition: opacity 120ms ease;
}

.pg-modern-player--layout_02 .pg-modern-player__progress:hover::-webkit-slider-thumb,
.pg-modern-player--layout_02 .pg-modern-player__progress:focus::-webkit-slider-thumb,
.pg-modern-player--layout_02 .pg-modern-player__progress:active::-webkit-slider-thumb {
	opacity: 1;
}

.pg-modern-player--layout_02 .pg-modern-player__progress::-moz-range-track {
	height: 6px;
	border-radius: 999px;
	background: transparent;
	border: 0;
}

.pg-modern-player--layout_02 .pg-modern-player__progress::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px var(--pgp-l2-fill);
	cursor: pointer;
	opacity: 0;
	transition: opacity 120ms ease;
}

.pg-modern-player--layout_02 .pg-modern-player__progress:hover::-moz-range-thumb,
.pg-modern-player--layout_02 .pg-modern-player__progress:focus::-moz-range-thumb,
.pg-modern-player--layout_02 .pg-modern-player__progress:active::-moz-range-thumb {
	opacity: 1;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-panel {
	width: 132px;
	height: 36px;
	padding: 0 12px;
	border-radius: 8px;
	border-color: #d4d4d4;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.pg-modern-player--layout_02 .pg-modern-player__volume-panel::after {
	border-right-color: #d4d4d4;
	border-bottom-color: #d4d4d4;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100px;
	height: 6px;
	border-radius: 999px;
	background: var(--pgp-l2-track);
	outline: none;
	box-shadow: none;
	cursor: pointer;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-slider::-webkit-slider-runnable-track {
	height: 6px;
	border-radius: 999px;
	background: transparent;
	border: 0;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 14px;
	height: 14px;
	margin-top: -4px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px var(--pgp-l2-fill);
	cursor: pointer;
	opacity: 0;
	transition: opacity 120ms ease;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-slider:hover::-webkit-slider-thumb,
.pg-modern-player--layout_02 .pg-modern-player__volume-slider:focus::-webkit-slider-thumb,
.pg-modern-player--layout_02 .pg-modern-player__volume-slider:active::-webkit-slider-thumb {
	opacity: 1;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-slider::-moz-range-track {
	height: 6px;
	border-radius: 999px;
	background: transparent;
	border: 0;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-slider::-moz-range-thumb {
	width: 14px;
	height: 14px;
	border: 0;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 2px var(--pgp-l2-fill);
	cursor: pointer;
	opacity: 0;
	transition: opacity 120ms ease;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-slider:hover::-moz-range-thumb,
.pg-modern-player--layout_02 .pg-modern-player__volume-slider:focus::-moz-range-thumb,
.pg-modern-player--layout_02 .pg-modern-player__volume-slider:active::-moz-range-thumb {
	opacity: 1;
}

.pg-modern-player--layout_02 .pg-modern-player__controls {
	display: flex;
	align-items: center;
	gap: 14px;
	width: 100%;
}

.pg-modern-player--layout_02 .pg-modern-player__play {
	width: 48px;
	height: 48px;
	background: #fff;
	color: var(--pgp-l2-play);
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.12);
}

.pg-modern-player--layout_02 .pg-modern-player__play:hover,
.pg-modern-player--layout_02 .pg-modern-player__play:focus-visible {
	color: var(--pgp-l2-play);
	filter: none;
	background: #fff;
}

.pg-modern-player--layout_02 .pg-modern-player__tools {
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 0 0 auto;
}

.pg-modern-player--layout_02 .pg-modern-player__skip {
	width: 28px;
	height: 28px;
	min-width: 28px;
	color: #4b5563 !important;
}

.pg-modern-player--layout_02 .pg-modern-player__skip svg {
	width: 24px;
	height: 24px;
	display: block;
}

.pg-modern-player--layout_02 .pg-modern-player__volume-btn {
	width: 28px;
	height: 28px;
	color: #4b5563 !important;
}

.pg-modern-player--layout_02 .pg-modern-player__speed {
	min-width: 36px;
	height: 26px;
	padding: 0 8px;
	border: 1px solid #b8c0c8;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 600;
	color: #4b5563 !important;
}

.pg-modern-player--layout_02 .pg-modern-player__time {
	margin-left: auto;
	font-size: 12px;
	font-weight: 500;
	color: var(--pgp-l2-muted);
}

.pg-modern-player--layout_02 .pg-modern-player__share-toggle {
	align-self: flex-start;
	height: auto;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent !important;
	color: var(--pgp-l2-muted) !important;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.pg-modern-player--layout_02 .pg-modern-player__share-toggle:hover,
.pg-modern-player--layout_02.is-share-open .pg-modern-player__share-toggle {
	border: 0;
	background: transparent !important;
	color: #1f2937 !important;
}

.pg-modern-player--layout_02 .pg-modern-player__share-panel {
	right: 16px;
	left: auto;
	top: calc(100% + 8px);
	width: min(480px, calc(100% - 32px));
}

.pg-modern-player--layout_02 .pg-modern-player__footer {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 8px 2px 0;
	font-size: 13px;
	color: #4b5563;
}

.pg-modern-player--layout_02 .pg-modern-player__download {
	color: #374151;
	text-decoration: none;
	font-weight: 500;
}

.pg-modern-player--layout_02 .pg-modern-player__download:hover {
	color: #111827;
	text-decoration: underline;
}

.pg-modern-player--layout_02 .pg-modern-player__footer-sep {
	color: #9ca3af;
}

.pg-modern-player--layout_02 .pg-modern-player__recorded {
	color: #4b5563;
}

@media (max-width: 720px) {
	.pg-modern-player--layout_02 .pg-modern-player__shell {
		border-radius: 0;
		overflow: visible;
	}

	.pg-modern-player--layout_02 .pg-modern-player__body {
		flex-direction: column;
		min-height: 0;
		border-radius: 4px;
		overflow: hidden;
	}

	.pg-modern-player--layout_02 .pg-modern-player__art,
	.pg-modern-player--layout_02 .pg-modern-player__art--placeholder {
		width: 100%;
		flex: 0 0 auto;
		min-height: 180px;
		height: 180px !important;
		border-radius: 4px 4px 0 0 !important;
	}

	.pg-modern-player--layout_02 img.pg-modern-player__art {
		border-radius: 4px 4px 0 0 !important;
	}

	.pg-modern-player--layout_02 .pg-modern-player__main {
		padding: 14px 16px 12px;
	}

	.pg-modern-player--layout_02 .pg-modern-player__title {
		font-size: 18px;
		white-space: normal;
	}

	.pg-modern-player--layout_02 .pg-modern-player__controls {
		flex-wrap: wrap;
		gap: 10px;
	}

	.pg-modern-player--layout_02 .pg-modern-player__time {
		margin-left: 0;
		width: 100%;
		order: 3;
	}
}
