/* ==========================================================================
   Header
   ========================================================================== */

.mv-header {
	position: sticky;
	top: 0;
	z-index: 200;
	background: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.mv-logo-wrap {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1;
	display: flex;
	min-width: 0;
}

.mv-logo {
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--color-text);
}

.mv-logo svg { flex-shrink: 0; }

.mv-logo__word {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 22px;
	line-height: 1;
}

.mv-logo__mide {
	font-weight: 900;
	color: var(--color-accent);
}

.mv-logo__mide::after {
	content: "Vibez";
	font-weight: 400;
	color: var(--color-text);
}

/* When bloginfo(name) already contains the full brand name, hide the
   duplicated ::after and just style the text directly via JS-free CSS:
   the theme ships name "MideVibez" by default so this pseudo-element
   approach only needs the split point handled in header.php markup
   instead — see header.php for the two-span version used in practice. */

/* ==========================================================================
   Top bar (desktop only)
   ========================================================================== */

.mv-topbar__announce {
	font-size: 12px;
	color: #fff;
}

.mv-topbar__links {
	display: flex;
	gap: 20px;
}

.mv-topbar__links a {
	font-size: 11px;
	font-weight: 500;
	color: #fff;
}

.mv-topbar__links a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Desktop header: nav pills, inline search, Submit button
   ========================================================================== */

.mv-nav-desktop a {
	padding: 8px 16px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	color: var(--color-text-muted);
	border-bottom: 2px solid transparent;
	transition: all 0.15s;
	text-transform: none;
	letter-spacing: normal;
}

.mv-nav-desktop a:hover {
	color: var(--color-accent);
}

.mv-nav-desktop a.is-active {
	background: rgba(var(--color-accent-rgb), 0.08);
	color: var(--color-accent);
	font-weight: 700;
	border-bottom-color: var(--color-accent);
}

.mv-nav-desktop__search {
	display: flex;
	align-items: center;
	gap: 8px;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 10px;
	padding: 8px 14px;
	width: 240px;
	flex-shrink: 0;
	color: var(--color-text-faint);
}

.mv-nav-desktop__search input {
	border: none;
	background: transparent;
	font-size: 13px;
	color: var(--color-text);
	outline: none;
	flex: 1;
	min-width: 0;
}

.mv-nav-desktop__submit {
	padding: 9px 22px;
	border-radius: 10px;
	background: var(--color-accent);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(var(--color-accent-rgb), 0.3);
	flex-shrink: 0;
	white-space: nowrap;
}

.mv-nav-desktop__submit:hover {
	background: var(--color-accent-hover);
}

/* Search form — used by get_search_form() on 404 and empty-results pages */
.mv-search-form {
	display: flex;
	gap: 8px;
	align-items: center;
	max-width: var(--container-max);
	margin: 0 auto;
}

.mv-search-form__input {
	flex: 1;
	height: 42px;
	padding: 0 14px;
	border-radius: 10px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	font-size: 14px;
	color: var(--color-text);
	outline: none;
}

.mv-search-form__input:focus-visible {
	border-color: var(--color-accent);
	box-shadow: 0 0 0 3px var(--color-accent-soft);
}

.mv-search-form__submit {
	height: 42px;
	padding: 0 18px;
	border-radius: 10px;
	background: var(--color-accent);
	border: none;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(var(--color-accent-rgb), 0.3);
	flex-shrink: 0;
}

.mv-search-form__submit:hover { background: var(--color-accent-hover); }

/* ==========================================================================
   Badges
   ========================================================================== */

.mv-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 20px;
	letter-spacing: 0.05em;
	background: rgba(var(--color-accent-rgb), 0.08);
	color: var(--color-accent);
	white-space: nowrap;
}

.mv-badge--video,
.mv-badge--videos {
	background: rgba(29, 78, 216, 0.12);
	color: #1d4ed8;
}

.mv-badge--album,
.mv-badge--albums {
	background: rgba(3, 107, 79, 0.12);
	color: #036b4f;
}

/* ==========================================================================
   Hero album/track slider
   ========================================================================== */

.mv-hero-slider {
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
}

.mv-hero-slide {
	position: relative;
	height: 200px;
	background-size: cover;
	background-position: center;
	display: none;
}

@media (min-width: 700px) {
	.mv-hero-slide { height: 280px; }
}
@media (min-width: 1024px) {
	.mv-hero-slide { height: 340px; }
}

.mv-hero-slide.is-active { display: block; }

.mv-hero-slide__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%);
}

.mv-hero-slide__body {
	position: absolute;
	bottom: 16px;
	left: 18px;
	right: 18px;
	color: #fff;
}

.mv-hero-slide__label {
	font-size: 10px;
	font-weight: 700;
	background: rgba(var(--color-accent-rgb), 0.9);
	color: #fff;
	padding: 3px 10px;
	border-radius: 20px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.mv-hero-slide__title {
	font-size: 22px;
	font-weight: 900;
	margin-top: 6px;
	letter-spacing: -0.01em;
	line-height: 1.1;
}

@media (min-width: 700px) {
	.mv-hero-slide__title { font-size: 28px; }
}

.mv-hero-slide__artist {
	font-size: 13px;
	color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 3px rgba(0,0,0,0.5);
	margin-top: 3px;
}

.mv-hero-slide__cta {
	display: none;
}

@media (min-width: 1024px) {
	.mv-hero-slide__cta {
		display: inline-flex;
		align-items: center;
		gap: 4px;
		margin-top: 18px;
		padding: 10px 28px;
		border-radius: 10px;
		background: var(--color-accent);
		color: #fff;
		font-size: 14px;
		font-weight: 700;
		box-shadow: 0 4px 16px rgba(var(--color-accent-rgb), 0.4);
	}
}

.mv-hero-dots {
	position: absolute;
	top: 14px;
	right: 14px;
	display: flex;
	gap: 5px;
}

.mv-hero-dots button {
	width: 6px;
	height: 6px;
	border-radius: 3px;
	background: rgba(255,255,255,0.4);
	border: none;
	padding: 0;
	transition: width 0.3s;
}

.mv-hero-dots button.is-active {
	width: 18px;
	background: #fff;
}

/* ==========================================================================
   Grid cards (Recently Added)
   ========================================================================== */

.mv-grid-card { cursor: pointer; }

.mv-grid-card__art {
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 12px;
	overflow: hidden;
	position: relative;
	margin-bottom: 8px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.12);
	border: 1px solid var(--color-border-soft);
	background-size: cover;
	background-position: center;
	background-color: var(--color-bg-alt);
}

.mv-grid-card__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv-grid-card__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.5) 100%);
}

.mv-grid-card__badge {
	position: absolute;
	top: 8px;
	right: 8px;
}

.mv-grid-card__initial {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 36px;
	font-weight: 900;
	color: rgba(255,255,255,0.55);
	letter-spacing: 0.05em;
}

.mv-grid-card__title {
	font-size: 13px;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 3px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.mv-grid-card__meta {
	display: flex;
	align-items: center;
	font-size: 11px;
	color: var(--color-text-faint);
}

/* ==========================================================================
   Trending list
   ========================================================================== */

.mv-trending-list {
	background: var(--color-surface);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.mv-trending-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	border-bottom: 1px solid var(--color-border-soft);
}

.mv-trending-row:last-child { border-bottom: none; }

.mv-trending-rank {
	width: 28px;
	height: 28px;
	border-radius: 8px;
	flex-shrink: 0;
	background: rgba(0,0,0,0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11px;
	font-weight: 900;
	color: var(--color-text-muted);
}

.mv-trending-rank--1 { background: var(--color-accent); color: #fff; }
.mv-trending-rank--2 { background: #C0A060; color: #fff; }
.mv-trending-rank--3 { background: #A08070; color: #fff; }

.mv-trending-info { flex: 1; min-width: 0; }

.mv-trending-title {
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mv-trending-artist {
	font-size: 11px;
	color: var(--color-text-faint);
	margin-top: 1px;
}

.mv-trending-side {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 4px;
}

.mv-trending-hot {
	font-size: 9px;
	font-weight: 700;
}

/* Compact trending row (desktop "Hot Right Now" / "Top 10 Trending"
   sidebar widgets) — no surrounding card bg per-row, denser padding,
   sits inside a .mv-card wrapper instead. */
.mv-trending-row--compact {
	padding: 8px 0;
	border-bottom: 1px solid var(--color-border-soft);
}

.mv-trending-row--compact:last-child {
	border-bottom: none;
}

.mv-trending-row--compact .mv-trending-rank {
	width: 24px;
	height: 24px;
	font-size: 10px;
}

.mv-trending-row--compact .mv-trending-title {
	font-size: 12px;
}

.mv-trending-row--compact .mv-trending-artist {
	font-size: 10px;
}

/* ==========================================================================
   Card — generic reusable sidebar widget wrapper (Hot Right Now, Top 10
   Trending, Newsletter)
   ========================================================================== */

.mv-card {
	background: var(--color-surface);
	border-radius: 16px;
	padding: 18px;
	box-shadow: var(--shadow-sm);
}

.mv-card__title {
	font-size: 15px;
	font-weight: 900;
	color: var(--color-text);
	margin-bottom: 14px;
}

.mv-card__title--eyebrow {
	font-size: 12px;
	font-weight: 700;
	color: var(--color-accent);
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.mv-card__cta {
	display: block;
	width: 100%;
	margin-top: 14px;
	padding: 9px;
	border-radius: 8px;
	background: rgba(var(--color-accent-rgb), 0.08);
	border: 1px solid rgba(var(--color-accent-rgb), 0.2);
	color: var(--color-accent);
	font-size: 12px;
	font-weight: 700;
	text-align: center;
}

.mv-card__cta:hover {
	background: rgba(var(--color-accent-rgb), 0.18);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.mv-footer {
	background: var(--color-footer-bg);
	padding: 36px var(--gutter) 0;
	margin-top: 36px;
	color: #fff;
}

.mv-footer__inner {
	max-width: var(--container-max);
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.mv-footer {
		padding-left: 0;
		padding-right: 0;
	}

	.mv-footer__inner {
		padding: 0 var(--gutter-lg, 48px);
	}
}

.mv-footer .mv-logo__mide::after { color: #fff; }

.mv-footer__tagline {
	font-size: 13px;
	color: rgba(255,255,255,0.62);
	line-height: 1.6;
	margin: 10px 0 28px;
	max-width: 320px;
}

.mv-footer-col-title {
	font-size: 11px;
	font-weight: 700;
	color: #dc7869;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.mv-footer-col a {
	font-size: 13px;
	color: rgba(255,255,255,0.55);
	margin-bottom: 7px;
	display: flex;
	align-items: center;
	gap: 6px;
}

.mv-footer-col a::before {
	content: "";
	width: 3px; height: 3px;
	border-radius: 50%;
	background: rgba(var(--color-accent-rgb), 0.6);
	flex-shrink: 0;
}

.mv-social-row {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.mv-social-btn {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0,0,0,0.3);
	color: #fff;
}

/* ==========================================================================
   Newsletter signup (sidebar card + footer variants)
   ========================================================================== */

.mv-newsletter--card {
	background: linear-gradient(135deg, var(--color-accent), #c45a4a);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(var(--color-accent-rgb), 0.3);
}

.mv-newsletter--card .mv-newsletter__title {
	font-size: 15px;
	font-weight: 900;
	color: #fff;
	margin-bottom: 6px;
}

.mv-newsletter--card .mv-newsletter__text {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.85);
	line-height: 1.6;
	margin-bottom: 14px;
}

.mv-newsletter--card .mv-newsletter__form input {
	width: 100%;
	padding: 9px 12px;
	border-radius: 8px;
	border: none;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 12px;
	outline: none;
	margin-bottom: 8px;
}

.mv-newsletter--card .mv-newsletter__form input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.mv-newsletter--card .mv-newsletter__form button {
	width: 100%;
	padding: 9px;
	border-radius: 8px;
	background: #fff;
	border: none;
	color: var(--color-accent);
	font-size: 12px;
	font-weight: 700;
}

.mv-newsletter--footer .mv-newsletter__text {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.62);
	line-height: 1.6;
	margin-bottom: 14px;
}

.mv-newsletter--footer .mv-newsletter__form input {
	width: 100%;
	padding: 10px 14px;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: #fff;
	font-size: 13px;
	outline: none;
	margin-bottom: 8px;
}

.mv-newsletter--footer .mv-newsletter__form input::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.mv-newsletter--footer .mv-newsletter__form button {
	width: 100%;
	padding: 10px;
	border-radius: 8px;
	background: var(--color-accent);
	border: none;
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	box-shadow: 0 2px 10px rgba(var(--color-accent-rgb), 0.3);
}

.mv-newsletter--footer .mv-newsletter__form button:hover {
	background: var(--color-accent-hover);
}

.mv-footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.07);
	margin-top: 24px;
	padding: 16px 0 28px;
	display: flex;
	flex-direction: column;
	gap: 4px;
	text-align: center;
}

.mv-footer-bottom p {
	font-size: 12px;
	color: rgba(255,255,255,0.58);
	margin: 0;
}

.mv-footer-bottom p:last-child {
	font-size: 11px;
	color: rgba(255,255,255,0.55);
}

.mv-footer-bottom strong { color: #dc7869; font-weight: 600; }

/* ==========================================================================
   Single track: hero, player, track-info table, download/share buttons
   ========================================================================== */

.mv-track-meta {
	padding: 20px var(--gutter);
	background: var(--color-bg);
}

.mv-track-meta h1 {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.25;
	margin-bottom: 14px;
}

.mv-track-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.mv-track-author__avatar {
	width: 40px; height: 40px;
	border-radius: 50%;
	background: var(--color-text);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mv-track-author__name {
	font-size: 14px;
	font-weight: 700;
}

.mv-track-author__date {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-top: 2px;
	font-size: 12px;
	color: var(--color-text-muted);
}

.mv-track-rule {
	height: 2px;
	background: linear-gradient(90deg, var(--color-accent), rgba(var(--color-accent-rgb), 0.3));
	border-radius: 2px;
	margin-top: 16px;
}

/* ==========================================================================
   Album (CPT) hero + tracklist — also reused by single.php's track hero
   for a consistent compact thumbnail-beside-info layout across both.
   ========================================================================== */

.mv-album-hero {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 24px;
}

@media (min-width: 700px) {
	.mv-album-hero {
		margin-bottom: 32px;
	}
}

.mv-album-hero__art {
	width: 168px;
	height: 168px;
	border-radius: 16px;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	background: linear-gradient(135deg, #3d1f08, #7a3d10, #3d1f08);
}

.mv-album-hero__art img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mv-album-hero__art-fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.6);
}

.mv-album-hero__info {
	flex: 1;
	min-width: 200px;
}

@media (min-width: 700px) {
	.mv-album-hero__art {
		width: 220px;
		height: 220px;
	}

	.mv-album-hero__title {
		font-size: 32px;
	}
}

.mv-album-hero__title {
	font-size: 26px;
	font-weight: 500;
	letter-spacing: -0.01em;
	line-height: 1.15;
	margin: 0 0 4px;
}

.mv-album-hero__artist {
	font-size: 15px;
	color: var(--color-text-muted);
	margin: 0 0 16px;
}

.mv-album-hero__actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.mv-tracklist {
	background: var(--color-surface);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
}

.mv-tracklist-row {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 13px 16px;
	border-bottom: 1px solid var(--color-border-soft);
}

.mv-tracklist-row:last-child {
	border-bottom: none;
}

.mv-tracklist-row:hover {
	background: var(--color-bg-alt);
}

.mv-tracklist-row__number {
	width: 22px;
	flex-shrink: 0;
	font-size: 12px;
	color: var(--color-text-faint);
	text-align: center;
}

.mv-tracklist-row__info {
	flex: 1;
	min-width: 0;
}

.mv-tracklist-row__title {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--color-text);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mv-tracklist-row__artist {
	display: block;
	font-size: 12px;
	color: var(--color-text-faint);
	margin-top: 1px;
}

.mv-tracklist-row__duration {
	font-size: 12px;
	color: var(--color-text-faint);
	flex-shrink: 0;
}

.mv-tracklist-row__icon {
	flex-shrink: 0;
	color: var(--color-accent);
}

/* Track info table */
.mv-track-table {
	border-radius: 14px;
	overflow: hidden;
	background: var(--color-surface);
	box-shadow: var(--shadow-sm);
}

.mv-track-table__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 16px;
	border-bottom: 1px solid var(--color-border-soft);
}

.mv-track-table__row:last-child { border-bottom: none; }

.mv-track-table__label { font-size: 14px; color: var(--color-text-faint); }

.mv-track-table__value {
	font-size: 14px;
	font-weight: 600;
	text-align: right;
	max-width: 60%;
}

/* Streaming platform links (Stream on Audiomack / Watch on YouTube / etc) */
.mv-stream-links {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mv-stream-link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 12px 18px;
	border-radius: var(--radius-pill);
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.14);
	transition: transform 0.15s, box-shadow 0.15s;
}

.mv-stream-link:hover,
.mv-stream-link:focus-visible {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.mv-stream-link:active {
	transform: translateY(0);
}

.mv-stream-link__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 21px;
	height: 21px;
}

.mv-stream-link__icon svg {
	width: 100%;
	height: 100%;
}

.mv-stream-link__text {
	display: flex;
	flex-direction: column;
	line-height: 1.25;
}

.mv-stream-link__verb {
	font-size: 12px;
	font-weight: 500;
	opacity: 0.82;
}

.mv-stream-link__name {
	font-size: 16px;
	font-weight: 800;
	letter-spacing: 0.01em;
}

/* Share / download buttons */
.mv-btn-share {
	width: 100%;
	padding: 17px 20px;
	border-radius: 16px;
	background: var(--color-accent);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	box-shadow: 0 4px 24px rgba(var(--color-accent-rgb), 0.35);
	transition: transform 0.15s;
}

.mv-btn-share:active { transform: scale(0.98); }
.mv-btn-share.is-done { background: rgba(var(--color-accent-rgb), 0.8); }

.mv-btn-download {
	width: 100%;
	padding: 16px 20px;
	border-radius: 16px;
	background: linear-gradient(135deg, #fdf2f0, #fae8e5, #fdf2f0);
	border: 1px solid rgba(var(--color-accent-rgb), 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	font-size: 15px;
	font-weight: 700;
	box-shadow: 0 2px 12px rgba(0,0,0,0.08);
	transition: all 0.3s;
	position: relative;
	overflow: hidden;
}

.mv-btn-download.is-done {
	background: var(--color-surface);
	border-color: rgba(var(--color-accent-rgb), 0.5);
	transform: scale(0.98);
	color: var(--color-accent);
}

.mv-btn-download__icon {
	width: 32px; height: 32px;
	border-radius: 50%;
	background: rgba(var(--color-accent-rgb), 0.08);
	border: 1px solid rgba(var(--color-accent-rgb), 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: var(--color-accent);
}

.mv-btn-download__text { text-align: left; }
.mv-btn-download__filesize {
	font-size: 11px;
	color: rgba(var(--color-accent-rgb), 0.8);
	margin-top: 1px;
	letter-spacing: 0.05em;
}

.mv-btn-download__free {
	margin-left: auto;
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	color: var(--color-accent);
	font-weight: 600;
	letter-spacing: 0.06em;
}

.mv-pulse-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	background: var(--color-accent);
	animation: mv-pulse 1.5s infinite;
}

@keyframes mv-pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.4; }
}

/* About card */
.mv-about-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border-soft);
	border-radius: 14px;
	padding: 18px;
	box-shadow: var(--shadow-sm);
}

.mv-about-card p {
	font-size: 14px;
	color: var(--color-text-muted);
}

/* ==========================================================================
   Responsive embeds (YouTube etc. inserted into post content) — forces
   any iframe/object/embed to fill a fixed-aspect-ratio container instead
   of rendering at whatever fixed pixel width the embed provider's oEmbed
   response hardcoded, which would otherwise overflow narrow screens.
   ========================================================================== */

.mv-embed-wrap {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%; /* 16:9 */
	overflow: hidden;
	border-radius: 12px;
	margin: 1.5em 0;
	background: #000;
}

.mv-embed-wrap iframe,
.mv-embed-wrap object,
.mv-embed-wrap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Player bar */
.mv-player {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 18px;
	padding: 18px 18px 16px;
	box-shadow: var(--shadow-md);
}

.mv-player__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 18px;
	gap: 12px;
}

.mv-player__title {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 22px;
	font-weight: 800;
}

.mv-player__explicit {
	font-size: 9px;
	font-weight: 700;
	background: rgba(0,0,0,0.1);
	color: var(--color-text-muted);
	padding: 2px 5px;
	border-radius: 4px;
}

.mv-player__artist { font-size: 15px; color: var(--color-text-faint); margin-top: 3px; }

.mv-player__play {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 20px rgba(var(--color-accent-rgb), 0.4), 0 3px 12px rgba(0,0,0,0.15);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
	transition: transform 0.15s;
}

.mv-player__play[aria-pressed="true"] { transform: scale(0.93); }

.mv-player__bar {
	height: 5px;
	border-radius: 10px;
	background: rgba(0,0,0,0.1);
	position: relative;
	margin-bottom: 10px;
	cursor: pointer;
}

.mv-player__progress {
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 0%;
	border-radius: 10px;
	background: linear-gradient(90deg, var(--color-accent), #e08a7d);
}

.mv-player__handle {
	position: absolute;
	top: 50%;
	left: 0%;
	transform: translate(-50%, -50%);
	width: 13px; height: 13px;
	border-radius: 50%;
	background: var(--color-accent);
	box-shadow: 0 0 6px rgba(var(--color-accent-rgb), 0.6);
}

.mv-player__times {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: var(--color-text-faint);
	font-weight: 500;
}

/* Tags */
.mv-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.mv-tag {
	font-size: 12px;
	font-weight: 600;
	color: var(--color-text-muted);
	background: rgba(0,0,0,0.03);
	border: 1px solid var(--color-border-soft);
	border-radius: 20px;
	padding: 6px 14px;
	letter-spacing: 0.04em;
}

.mv-tag--accent {
	color: var(--color-accent);
	background: rgba(var(--color-accent-rgb), 0.08);
	border-color: rgba(var(--color-accent-rgb), 0.25);
}

/* Related carousels */
.mv-carousel {
	display: flex;
	gap: 14px;
	overflow-x: auto;
	padding-bottom: 4px;
	scrollbar-width: none;
}
.mv-carousel::-webkit-scrollbar { display: none; }

.mv-carousel-card { flex-shrink: 0; width: 148px; }

.mv-carousel-card__art {
	width: 148px; height: 148px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	margin-bottom: 8px;
	border: 1px solid var(--color-border-soft);
	box-shadow: var(--shadow-sm);
	background-size: cover;
	background-position: center;
	overflow: hidden;
}

.mv-carousel-card__art img { width: 100%; height: 100%; object-fit: cover; }

.mv-carousel-card__title {
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mv-carousel-card__sub {
	font-size: 11px;
	color: var(--color-text-faint);
	margin-top: 2px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mv-playlist-card__art {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	padding: 12px;
	color: #fff;
}

.mv-playlist-card__eyebrow {
	font-size: 12px;
	font-weight: 600;
	color: rgba(255,255,255,0.8);
	letter-spacing: 0.05em;
}

.mv-playlist-card__name {
	font-size: 24px;
	font-weight: 900;
	line-height: 1.05;
}

/* ==========================================================================
   Comments
   ========================================================================== */

.mv-comments-count { font-size: 12px; color: var(--color-text-faint); margin-bottom: 18px; }

/* WordPress's own default comment_form() notices — previously unstyled */
.comment-notes,
.logged-in-as {
	font-size: 12px;
	color: var(--color-text-faint);
	margin: 0 0 14px;
}

.logged-in-as a {
	color: var(--color-accent);
	text-decoration: underline;
}

.mv-comment-form {
	display: flex;
	gap: 10px;
	margin-bottom: 24px;
	align-items: flex-start;
	max-width: 100%;
}

.mv-comment-form__avatar {
	width: 36px; height: 36px;
	border-radius: 50%;
	background: var(--color-text);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2px;
}

.mv-comment-form__name {
	display: block;
	width: 100%;
	padding: 9px 14px;
	margin-bottom: 8px;
	border-radius: 10px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	font-size: 13px;
	font-family: var(--font-primary);
	color: var(--color-text);
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.mv-comment-form__name:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 1px;
}

.mv-comment-form textarea {
	width: 100%;
	padding: 12px 14px;
	border-radius: 12px;
	border: 1px solid var(--color-border);
	background: var(--color-surface);
	font-size: 13px;
	color: var(--color-text);
	resize: vertical;
	min-height: 72px;
	box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.mv-comment-form__submit {
	margin-top: 8px;
	padding: 8px 20px;
	border-radius: 8px;
	background: var(--color-accent);
	border: none;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(var(--color-accent-rgb), 0.3);
}

.mv-comments-section {
	max-width: 100%;
	overflow-x: hidden;
}

.mv-comments {
	max-width: 100%;
}

.mv-comment {
	display: flex;
	gap: 12px;
	margin-bottom: 20px;
	min-width: 0;
	max-width: 100%;
}

.mv-comment__avatar {
	width: 38px; height: 38px;
	border-radius: 50%;
	background: rgba(0,0,0,0.07);
	flex-shrink: 0;
	overflow: hidden;
}

.mv-comment__avatar img { width: 100%; height: 100%; object-fit: cover; }

.mv-comment__head {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 4px;
	flex-wrap: wrap;
}

.mv-comment__name { font-size: 13px; font-weight: 700; }

.mv-comment__badge {
	font-size: 10px;
	background: var(--color-accent);
	color: #fff;
	padding: 1px 7px;
	border-radius: 20px;
	font-weight: 600;
}

.mv-comment__time { font-size: 11px; color: var(--color-text-faint); margin-left: auto; }

.mv-comment__text {
	font-size: 13px;
	color: var(--color-text-muted);
	line-height: 1.6;
	overflow-wrap: break-word;
	word-break: break-word;
	min-width: 0;
}

.mv-comment__actions { display: flex; gap: 16px; margin-top: 8px; }

/* WordPress's own reply-nesting wrapper — cap how far indentation can
   go so a long thread of replies never pushes content wide enough to
   overflow the main column (which would visually run into the sidebar
   on desktop, or off-screen on mobile). */
.mv-comments .children {
	list-style: none;
	margin: 12px 0 0;
	padding-left: 20px;
	max-width: 100%;
	border-left: 2px solid var(--color-border-soft);
}

@media (max-width: 480px) {
	.mv-comments .children {
		padding-left: 12px;
	}

	.mv-comment {
		gap: 8px;
	}

	.mv-comment__avatar {
		width: 32px; height: 32px;
	}
}

.mv-comment__actions button {
	display: flex;
	align-items: center;
	gap: 5px;
	background: none;
	border: none;
	font-size: 12px;
	color: var(--color-text-faint);
	padding: 0;
}

.mv-comment__actions a {
	font-size: 12px;
	color: var(--color-text-faint);
	text-decoration: none;
}

.mv-comment__actions a:hover {
	color: var(--color-accent);
}

/* ==========================================================================
   Generic content (archives, search, 404, pages)
   ========================================================================== */

.mv-page-header {
	padding: 28px var(--gutter) 0;
}

.mv-post-list-item {
	display: flex;
	gap: 14px;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-border-soft);
}

.mv-post-list-item__thumb {
	width: 96px; height: 96px;
	border-radius: 12px;
	flex-shrink: 0;
	overflow: hidden;
	background: var(--color-bg-alt);
}

.mv-post-list-item__thumb img { width: 100%; height: 100%; object-fit: cover; }

.mv-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 28px var(--gutter);
	flex-wrap: wrap;
}

.mv-pagination a,
.mv-pagination span {
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 700;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	color: var(--color-text);
	transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.mv-pagination a:hover {
	background: rgba(var(--color-accent-rgb), 0.08);
	border-color: rgba(var(--color-accent-rgb), 0.3);
	color: var(--color-accent);
}

.mv-pagination a:focus-visible {
	outline: 2px solid var(--color-accent);
	outline-offset: 2px;
}

.mv-pagination .dots {
	background: transparent;
	border-color: transparent;
	color: var(--color-text-faint);
	cursor: default;
	min-width: 24px;
	padding: 0;
}

@media (max-width: 480px) {
	.mv-pagination {
		gap: 6px;
	}

	.mv-pagination a,
	.mv-pagination span {
		min-width: 44px;
		padding: 0 10px;
		font-size: 12px;
	}
}

.mv-pagination .current {
	background: var(--color-accent);
	color: #fff;
	border-color: var(--color-accent);
	cursor: default;
}

.mv-404 {
	padding: 60px var(--gutter);
	text-align: center;
}

.mv-404__code {
	font-size: 72px;
	font-weight: 900;
	color: var(--color-accent);
	line-height: 1;
}
