/* poster mobile */
.poster {
	position: relative;
	width: 100%;
	min-height: 300dvh;
	overflow: visible;
	opacity: 1;
	transition: opacity 0.5s ease-out;
	will-change: opacity;
}

.poster article {
	position: relative;
	width: 100%;
	min-height: 300dvh;
	overflow: visible;
	z-index: 1
}

.poster figure {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100dvh;
	margin: 0;
	aspect-ratio: auto;
	overflow: hidden;
	z-index: 1;
}

.poster figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.poster .artxt {
	position: absolute;
	top: 100dvh;
	left: 9%;
	width: 82%;
	padding: 0;
	color: rgb(var(--b) / 1);
	border-radius: 1rem;
	z-index: 2;
	gap: 0;
}

.poster .artxt dt {
	width: 100%;
	padding: 0;
}

.poster .artxt dd {
	width: 100%;
	padding: 3rem;
}