/**
 * RockSound × Fnac (Awin) — bloc CTA front
 * v2.10 — Espacement titre/prix collé (0 px)
 */
.rsfa-cta {
	--rsfa-red:        #d42121;
	--rsfa-red-hover:  #b81818;
	--rsfa-red-bg-1:   #fff5f5;
	--rsfa-red-bg-2:   #ffe9e9;
	--rsfa-red-border: #f5cdcd;
	--rsfa-red-text:   #8a1a1a;
	--rsfa-grey-soft:  #888;

	margin: 2.5em 0 1.5em;
	padding: 18px 20px;
	background: linear-gradient(180deg, var(--rsfa-red-bg-1) 0%, var(--rsfa-red-bg-2) 100%);
	border: 1px solid var(--rsfa-red-border);
	border-left: 4px solid var(--rsfa-red);
	border-radius: 6px;
	font-family: inherit;
}

.rsfa-cta__inner {
	display: flex;
	gap: 18px;
	align-items: center;
}

.rsfa-cta__image {
	flex: 0 0 146px;
}

.rsfa-cta__image img {
	width: 146px;
	height: 146px;
	object-fit: contain;
	display: block;
	background: #fff;
	border: 1px solid var(--rsfa-red-border);
	border-radius: 4px;
	padding: 4px;
}

.rsfa-cta__body {
	flex: 1 1 auto;
	min-width: 0;
}

/* Titre : marge bas 0 (collé au prix) */
.rsfa-cta__title {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #1f1f1f;
	line-height: 1.15;
}

/* Prix : marge top 0 aussi pour collage parfait */
.rsfa-cta__price {
	margin: 0 0 4px;
	font-size: 18px;
	font-weight: 700;
	color: var(--rsfa-red-text);
	line-height: 1.15;
}

.rsfa-cta__btn {
	display: inline-block;
	padding: 10px 20px;
	background: var(--rsfa-red);
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 700;
	border-radius: 4px;
	transition: background 0.15s ease, transform 0.1s ease;
	border: 0;
	margin-top: 2px;
}

.rsfa-cta__btn:hover,
.rsfa-cta__btn:focus {
	background: var(--rsfa-red-hover);
	transform: translateY(-1px);
}

.rsfa-cta__btn:active {
	transform: translateY(0);
}

.rsfa-cta__partner {
	margin: 8px 0 0;
	font-size: 7px;
	color: var(--rsfa-grey-soft);
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.5;
	font-style: italic;
}

@media (max-width: 480px) {
	.rsfa-cta__inner {
		flex-direction: column;
		align-items: flex-start;
	}
	.rsfa-cta__image {
		flex: 0 0 auto;
	}
	.rsfa-cta__btn {
		width: 100%;
		text-align: center;
	}
}
