/**
 * Article hero — cover aspect ratio and play button (match Next.js ArticleView).
 *
 * @package AscoltaNews
 */

/* Mobile 1:1, desktop 16:9 — same as ArticleView AspectRatio isMobile ? 4/4 : 16/9 */
.ascolta-article-hero-cover {
	position: relative;
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
}

@media (min-width: 768px) {
	.ascolta-article-hero-cover {
		aspect-ratio: 16 / 9;
	}
}

#play-article-hero.ascolta-hero-play-btn {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
	width: 138px;
	height: 48px;
	min-height: 48px;
	max-height: 48px;
	padding: 0 1.5rem;
	font-size: 1.125rem;
	line-height: 1;
	gap: 0.5rem;
}

#play-article-hero.ascolta-hero-play-btn svg {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}
