/**
 * Archivio articoli della PWA.
 */

.ci-pwa-articles {
	display: none;
}

html.ci-pwa-standalone body.ci-pwa-articles-page {
	background: #020617;
}

html.ci-pwa-standalone body.ci-pwa-articles-page #page {
	display: none !important;
}

html.ci-pwa-standalone .ci-pwa-articles {
	display: block;
	min-height: 100dvh;
	padding: 22px 14px calc(84px + env(safe-area-inset-bottom, 0px));
	color: #f8fafc;
	background: #020617;
}

html.ci-pwa-standalone .ci-pwa-articles-head {
	margin-bottom: 22px;
}

html.ci-pwa-standalone .ci-pwa-articles-head > span {
	display: block;
	margin-bottom: 5px;
	color: #c767ff;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

html.ci-pwa-standalone .ci-pwa-articles-head h1 {
	margin: 0 0 7px;
	color: #fff;
	font-size: 30px;
	font-weight: 850;
	line-height: 1;
}

html.ci-pwa-standalone .ci-pwa-articles-head p {
	max-width: 34rem;
	margin: 0;
	color: #aeb7ca;
	font-size: 13px;
	line-height: 1.4;
}

html.ci-pwa-standalone .ci-pwa-articles-count {
	margin-bottom: 10px;
	color: #8f99ae;
	font-size: 11px;
	font-weight: 700;
}

html.ci-pwa-standalone .ci-pwa-articles-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 11px;
}

html.ci-pwa-standalone .ci-pwa-article-card {
	display: flex;
	min-width: 0;
	flex-direction: column;
	overflow: hidden;
	border: 1px solid rgba(100, 116, 139, 0.48);
	border-radius: 8px;
	color: #fff;
	background: #091020;
	text-decoration: none;
}

html.ci-pwa-standalone .ci-pwa-article-image {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #131c31;
}

html.ci-pwa-standalone .ci-pwa-article-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

html.ci-pwa-standalone .ci-pwa-article-image small {
	position: absolute;
	top: 7px;
	left: 7px;
	border: 1px solid rgba(244, 114, 208, 0.72);
	border-radius: 999px;
	padding: 3px 6px;
	color: #f9a8d4;
	background: rgba(2, 6, 23, 0.8);
	font-size: 8px;
	font-weight: 800;
	text-transform: uppercase;
}

html.ci-pwa-standalone .ci-pwa-article-copy {
	display: flex;
	min-height: 118px;
	flex: 1;
	flex-direction: column;
	padding: 9px;
}

html.ci-pwa-standalone .ci-pwa-article-copy strong {
	display: -webkit-box;
	margin-bottom: 5px;
	overflow: hidden;
	color: #fff;
	font-size: 13px;
	font-weight: 800;
	line-height: 1.22;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

html.ci-pwa-standalone .ci-pwa-article-copy > span {
	display: -webkit-box;
	margin-bottom: 9px;
	overflow: hidden;
	color: #aeb7ca;
	font-size: 10px;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

html.ci-pwa-standalone .ci-pwa-article-copy em {
	margin-top: auto;
	overflow: hidden;
	color: #818ca2;
	font-size: 8px;
	font-style: normal;
	line-height: 1.2;
	text-overflow: ellipsis;
	white-space: nowrap;
}

html.ci-pwa-standalone .ci-pwa-articles-empty {
	border: 1px solid rgba(100, 116, 139, 0.42);
	border-radius: 8px;
	padding: 18px;
	background: #091020;
}

html.ci-pwa-standalone .ci-pwa-articles-empty strong {
	display: block;
	margin-bottom: 5px;
	font-size: 16px;
}

html.ci-pwa-standalone .ci-pwa-articles-empty p {
	margin: 0;
	color: #aeb7ca;
	font-size: 12px;
	line-height: 1.4;
}

@media (min-width: 680px) {
	html.ci-pwa-standalone .ci-pwa-articles-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}
