/* Section héro */
.assets-hero {
	padding: 28px 0 8px;
	background: transparent;
}
.assets-title {
	font-size: 2rem;
	font-weight: 800;
	margin: 0 0 6px;
}
.assets-desc {
	color: #bfc7d5;
	margin: 0;
}

/* Sections */
.assets-section { padding: 24px 0; }
.assets-h2 {
	font-size: 1.35rem;
	font-weight: 700;
	margin: 0 0 12px;
}

/* Grille + cartes */
.assets-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
}
@media (max-width: 991.98px) {
	.assets-grid { grid-template-columns: 1fr; }
}

.asset-card {
	background: #0F1113;
	border: 1px solid #232627;
	border-radius: 12px;
	padding: 14px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.asset-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}
.asset-card-title { font-weight: 700; }

/* Previews logos */
.asset-preview {
	border-radius: 10px;
	padding: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 160px;
}
.asset-preview-dark {
	background: #181A1B;
	border: 1px solid #232627;
}
.asset-preview-light {
	background: #ffffff;
}
.asset-logo {
	max-width: 80%;
	height: auto;
	display: block;
}

/* Meta + boutons */
.asset-meta { color: #a8b0b9; font-size: .95rem; }
.asset-btn {
	background: transparent;
	color: #fff;
	border: 1px solid #444;
	border-radius: 10px;
	font-weight: 600;
	padding: 6px 12px;
	text-decoration: none;
	transition: border-color .2s, color .2s, background .2s;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}
.asset-btn:hover {
	color: var(--brand-primary);
	border-color: var(--brand-primary);
	background: rgba(34,196,99,0.05);
}
.asset-btn-light {
	background: #fff;
	color: #111;
	border: none;
}
.asset-btn-light:hover {
	background: #1fb55b;
	color: #fff;
}

/* Couleurs */
.assets-colors .asset-card {
	flex-direction: row;
	align-items: center;
	gap: 14px;
}
.color-swatch {
	width: 56px;
	height: 56px;
	border-radius: 10px;
	border: 1px solid rgba(0,0,0,0.15);
	background: var(--swatch, #ccc);
	box-shadow: 0 2px 12px rgba(0,0,0,0.08) inset;
}
.color-info .muted { color: #a8b0b9; }

/* Bannière d’exemple */
.asset-banner {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	border: 1px solid #232627;
	background:
		linear-gradient(135deg, rgba(34,196,99,0.22), rgba(34,196,99,0.08)),
		radial-gradient(1200px 300px at 10% -10%, rgba(34,196,99,0.2), transparent),
		#0F1113;
	min-height: 220px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.asset-banner::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(900px 180px at 85% 120%, rgba(34,196,99,0.16), transparent);
	pointer-events: none;
}
.asset-banner-content {
	position: relative;
	z-index: 1;
	padding: 22px;
}
.asset-banner-content h3 {
	margin: 0 0 6px;
	font-size: 1.6rem;
	font-weight: 800;
}
.asset-banner-content p {
	margin: 0 0 12px;
	color: #cfe9db;
}

/* Utilitaires */
.small { font-size: .9rem; }
.muted { color: #a8b0b9; }
