/* =============================================
   Discography — Archive & Single
   Palette: black bg · white text · yellow (#e5b829) headings/links
   ============================================= */

/* ── Shared wrapper ── */
#music {
	padding: 40px 20px 60px;
}

#music .wrapper {
	max-width: 1400px;
	margin: 0 auto;
}

/* ── Archive: album grid ── */
.music-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	margin-bottom: 60px;
}

@media (max-width: 1000px) {
	.music-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
	.music-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
	.music-grid { grid-template-columns: 1fr; }
}

.music-grid > div {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.music-grid img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 8px;
	display: block;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.music-grid a:hover img {
	opacity: 0.85;
	transform: scale(1.02);
}

.music-grid a {
	text-decoration: none;
	color: inherit;
}

.music-title {
	display: block;
	color: #e5b829;
	font-weight: 600;
	font-size: 0.9rem;
	line-height: 1.3;
}

.music-date {
	color: #aaa;
	font-size: 0.85rem;
}

/* ── Section headings on archive ── */
#music h2.wp-block-post-title {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	margin-bottom: 8px;
}

#music h3.wp-block-post-title {
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	margin: 40px 0 24px;
}

/* ── Single release ── */
.music-single-grid {
	display: grid;
	grid-template-columns: minmax(280px, 48%) 1fr;
	gap: 48px;
	align-items: start;
	margin-bottom: 48px;
}

@media (max-width: 820px) {
	.music-single-grid {
		grid-template-columns: 1fr;
	}
}

.music-left img {
	width: 100%;
	border-radius: 10px;
	display: block;
	box-shadow: 0 6px 30px rgba(0, 0, 0, 0.6);
}

.music-right h2 {
	margin-top: 0;
	font-size: clamp(1.4rem, 3vw, 2rem);
}

.music-label {
	color: #aaa;
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 0 0 20px;
}

/* Buy links / streaming icons */
.music-buy-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 24px;
}

/* Icon links (Apple, Amazon, YouTube) get yellow — but NOT the button */
.music-buy-links a:not(.wp-element-button) {
	color: #e5b829;
	font-size: 1.4rem;
	transition: opacity 0.2s;
}

.music-buy-links a:not(.wp-element-button):hover {
	opacity: 0.75;
}

/* Ensure the Official Store button keeps white text */
.music-buy-links .wp-element-button {
	color: #fff;
}

/* Auto-numbered track list + release notes — matched size/weight */
.release-track-list {
	margin: 0 0 16px;
	padding-left: 22px;
	list-style: decimal;
}

.release-track-list li,
.release-notes-content p,
.release-notes-content li {
	color: #ddd;
	font-size: 0.9rem;
	font-weight: 400;
	line-height: 1.9;
	padding-left: 4px;
}

.release-notes-content p {
	margin: 0 0 4px;
	padding-left: 16px;
	position: relative;
}

.release-notes-content p::before {
	content: '›';
	position: absolute;
	left: 0;
	color: #e5b829;
	font-weight: 600;
}

/* Spotify embed */
.music-spotify-player {
	margin: 20px 0;
}

/* Track listing and notes */
.music-right h3 {
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #e5b829;
	margin: 24px 0 10px;
}

/* Back button */
.back-button {
	text-align: center;
	padding: 24px 0 40px;
}

/* ── Press quotes on single release ── */
.release-press {
	margin-top: 48px;
	grid-column: 1 / -1;
}

.release-press h3 {
	font-size: 1.15rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #e5b829;
	margin: 0 0 24px;
}

.release-press-item {
	margin-bottom: 28px;
	padding-left: 20px;
	border-left: 2px solid #333;
}

.release-press-item blockquote {
	margin: 0;
	font-style: italic;
	color: #ddd;
	line-height: 1.7;
	font-size: 0.95rem;
}

.release-press-item blockquote p {
	margin: 0 0 6px;
}

.release-press-item footer {
	font-size: 0.8rem;
	color: #e5b829;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.release-press-item footer a {
	color: #e5b829;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color 0.2s;
}

.release-press-item footer a:hover {
	border-color: #e5b829;
}
