.ldp-release {
	--ldp-primary: #c9a14a;
	--ldp-secondary: #ffffff;
	box-sizing: border-box;
	color: inherit;
	margin: 0 auto;
	max-width: 1120px;
	width: 100%;
}

.ldp-release *,
.ldp-release *::before,
.ldp-release *::after {
	box-sizing: border-box;
}

.ldp-release-layout {
	align-items: start;
	display: grid;
	gap: 32px;
	grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
}

.ldp-release-cover img,
.ldp-release-artwork img {
	display: block;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	width: 100%;
}

.ldp-release-cover img {
	border-radius: 6px;
}

.ldp-release-main {
	min-width: 0;
}

.ldp-release-header {
	margin: 0 0 16px;
}

.ldp-release-title {
	font-size: clamp(2rem, 4vw, 4rem);
	line-height: 1;
	margin: 0;
}

.ldp-release-subtitle {
	font-size: 1.1rem;
	margin: 10px 0 0;
}

.ldp-release-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 18px;
}

.ldp-release-meta span {
	border: 1px solid var(--ldp-primary);
	border-radius: 999px;
	display: inline-flex;
	font-size: 0.85rem;
	line-height: 1.2;
	opacity: 0.92;
	padding: 6px 10px;
}

.ldp-release-short-description {
	margin: 0 0 20px;
}

.ldp-release-short-description > :first-child,
.ldp-release-long-description > :first-child {
	margin-top: 0;
}

.ldp-release-short-description > :last-child,
.ldp-release-long-description > :last-child {
	margin-bottom: 0;
}

.ldp-release-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.ldp-release-button {
	align-items: center;
	background: var(--ldp-primary);
	border: 1px solid var(--ldp-primary);
	border-radius: 6px;
	color: #111;
	display: inline-flex;
	gap: 7px;
	justify-content: center;
	line-height: 1.2;
	padding: 10px 14px;
	text-decoration: none;
	transition: filter 160ms ease, transform 160ms ease;
}

.ldp-release-button:hover,
.ldp-release-button:focus {
	color: #111;
	filter: brightness(1.06);
	transform: translateY(-1px);
}

.ldp-release-button-action {
	font-weight: 700;
}

.ldp-release-button-platform {
	opacity: 0.84;
}

.ldp-release-section {
	margin-top: 36px;
}

.ldp-release-details h3 {
	font-size: 1.2rem;
	margin: 0 0 14px;
}

.ldp-release-details dl {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	margin: 0;
}

.ldp-release-detail {
	border-top: 1px solid rgba(128, 128, 128, 0.28);
	padding-top: 10px;
}

.ldp-release-detail dt {
	font-size: 0.78rem;
	font-weight: 700;
	opacity: 0.72;
}

.ldp-release-detail dd {
	margin: 3px 0 0;
}

@media (max-width: 900px) {
	.ldp-release-layout {
		gap: 24px;
		grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
	}

	.ldp-release-details dl {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 680px) {
	.ldp-release-layout {
		grid-template-columns: 1fr;
	}

	.ldp-release-buttons {
		display: grid;
		grid-template-columns: 1fr;
	}

	.ldp-release-button {
		width: 100%;
	}
}
