/* ═══════════════════════════════════════════════════════════
   SASU ABCduWeb — Outils que j'utilise (front)
   ═══════════════════════════════════════════════════════════ */

.als-outils-wrap {
	max-width: 1200px;
	margin: 30px auto;
}

/* Disclosure RGPD */
.als-outils-disclosure {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background: #fff8ec;
	border: 1px solid #f5d49a;
	border-left: 4px solid #f39c12;
	border-radius: 10px;
	padding: 16px 20px;
	margin-bottom: 30px;
}
.als-outils-disclosure-icon { font-size: 22px; flex-shrink: 0; }
.als-outils-disclosure p {
	margin: 0;
	font-size: 14px;
	color: #5d5040;
	line-height: 1.6;
}

/* Grille */
.als-outils-grid {
	display: grid;
	grid-template-columns: repeat(var(--als-out-cols, 3), 1fr);
	gap: 22px;
}
@media (max-width: 980px) {
	.als-outils-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
	.als-outils-grid { grid-template-columns: 1fr; }
}

/* Card */
.als-outils-card {
	background: #fff;
	border: 1px solid #e5e5e5;
	border-radius: 14px;
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	transition: transform .2s, box-shadow .2s, border-color .2s;
}
.als-outils-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 28px rgba(0,0,0,.08);
	border-color: #8ab734;
}

.als-outils-card-head {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	margin-bottom: 14px;
}
.als-outils-logo {
	flex-shrink: 0;
	width: 56px;
	height: 56px;
	border-radius: 10px;
	overflow: hidden;
	background: #f7faee;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #eaeaea;
}
.als-outils-logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.als-outils-cat {
	display: inline-block;
	font-size: 11px;
	color: #6a9220;
	background: #f0f6e6;
	padding: 3px 8px;
	border-radius: 10px;
	text-transform: uppercase;
	letter-spacing: .04em;
	font-weight: 700;
	margin-bottom: 4px;
}
.als-outils-name {
	margin: 0;
	font-size: 19px;
	font-weight: 700;
	color: #4d4844;
	line-height: 1.3;
}

/* Étoiles */
.als-outils-rating {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	font-size: 16px;
}
.als-star { color: #f5d49a; line-height: 1; }
.als-star.full { color: #f39c12; }
.als-star.half {
	background: linear-gradient(90deg, #f39c12 50%, #f5d49a 50%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.als-outils-rating-num { font-size: 13px; color: #888; font-weight: 600; margin-left: 4px; }

.als-outils-tagline {
	font-size: 14px;
	color: #555;
	font-style: italic;
	margin: 0 0 14px;
	line-height: 1.5;
}
.als-outils-review {
	font-size: 14px;
	color: #444;
	line-height: 1.65;
	margin-bottom: 16px;
	flex-grow: 1;
}
.als-outils-usecase {
	font-size: 13px;
	color: #4d4844;
	background: #f7faee;
	padding: 8px 12px;
	border-radius: 6px;
	margin-bottom: 10px;
	border-left: 3px solid #8ab734;
}
.als-outils-price {
	font-size: 13px;
	color: #666;
	margin-bottom: 16px;
}

/* CTA */
.als-outils-btn {
	display: block;
	text-align: center;
	background: linear-gradient(135deg, #8ab734, #6a9220);
	color: #fff !important;
	text-decoration: none !important;
	padding: 12px 18px;
	border-radius: 8px;
	font-weight: 700;
	font-size: 14px;
	transition: transform .15s, box-shadow .15s;
	box-shadow: 0 3px 10px rgba(138,183,52,.25);
}
.als-outils-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(138,183,52,.4);
}
.als-outils-affilink {
	display: block;
	text-align: center;
	font-size: 11px;
	color: #999;
	margin-top: 6px;
	font-style: italic;
}
