/**
 * Widget « Lifestyle — La Famille Moderne (Maame) » — L'Africaine Elementor Addons
 * Préfixe : .laf-lfamily
 */

.laf-lfamily {
	background-color: #384a30;
	padding: 64px 60px;
}

/* --------------------------- En-tête --------------------------- */

.laf-lfamily__head {
	text-align: center;
	margin-bottom: 40px;
}

.laf-lfamily__eyebrow {
	display: block;
	margin-bottom: 10px;
	color: #c9a961;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.laf-lfamily__title {
	margin: 0;
	color: #fff;
	font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.1;
}

/* --------------------------- Grille --------------------------- */

.laf-lfamily__grid {
	display: grid;
	grid-template-columns: 1fr 1.15fr 1fr;
	grid-template-rows: auto auto;
	grid-template-areas:
		"c1 quote img2"
		"img1 quote c2";
	gap: 18px;
}

.laf-lfamily__cell--c1 {
	grid-area: c1;
}

.laf-lfamily__cell--img1 {
	grid-area: img1;
}

.laf-lfamily__cell--quote {
	grid-area: quote;
}

.laf-lfamily__cell--img2 {
	grid-area: img2;
}

.laf-lfamily__cell--c2 {
	grid-area: c2;
}

.laf-lfamily__cell {
	display: flex;
}

.laf-lfamily__cell > * {
	width: 100%;
}

/* --------------------------- Cartes --------------------------- */

.laf-lfamily__card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding: 26px;
}

.laf-lfamily__card--c1 {
	background-color: #3c4a24;
}

.laf-lfamily__card--c2 {
	background-color: #c9a227;
}

.laf-lfamily__card-icon {
	width: 26px;
	height: 26px;
	margin-bottom: 14px;
	fill: currentColor;
	color: #f2d955;
}

.laf-lfamily__card-title {
	margin: 0 0 12px;
	font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.25;
}

.laf-lfamily__card--c1 .laf-lfamily__card-title,
.laf-lfamily__card--c1 .laf-lfamily__card-title a {
	color: #fff;
}

.laf-lfamily__card--c2 .laf-lfamily__card-title,
.laf-lfamily__card--c2 .laf-lfamily__card-title a {
	color: #2a2410;
}

.laf-lfamily__card-title a {
	color: inherit;
	text-decoration: none;
}

.laf-lfamily__card-text {
	margin: 0 0 18px;
	font-size: 13px;
	line-height: 1.6;
}

.laf-lfamily__card--c1 .laf-lfamily__card-text {
	color: #c4cbb6;
}

.laf-lfamily__card--c2 .laf-lfamily__card-text {
	color: #5e5320;
}

.laf-lfamily__card-link {
	margin-top: auto;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
	text-decoration: none;
}

.laf-lfamily__card--c1 .laf-lfamily__card-link {
	color: #f2d955;
}

.laf-lfamily__card--c2 .laf-lfamily__card-link {
	color: #2a2410;
}

.laf-lfamily__card-link:hover {
	text-decoration: underline;
}

/* --------------------------- Images --------------------------- */

.laf-lfamily__img {
	display: block;
	width: 100%;
	min-height: 150px;
	background-color: #24301a;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

/* --------------------------- Citation --------------------------- */

.laf-lfamily__quote {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
	padding: 42px 36px;
	background-color: #fff;
}

.laf-lfamily__quote-mark {
	position: absolute;
	top: 18px;
	right: 26px;
	color: #d8d3c4;
	font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
	font-size: 60px;
	line-height: 1;
}

.laf-lfamily__quote-text {
	margin: 0 0 26px;
	color: #000000;
	font-family: "DM Serif Display", Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-style: italic;
	font-weight: 700;
	line-height: 1.3;
}

.laf-lfamily__quote-foot {
	display: flex;
	align-items: center;
	gap: 12px;
}

.laf-lfamily__quote-avatar {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	flex: 0 0 auto;
}

.laf-lfamily__quote-meta {
	display: flex;
	flex-direction: column;
}

.laf-lfamily__quote-author {
	color: #000000;
	font-size: 14px;
	font-weight: 700;
}

.laf-lfamily__quote-role {
	color: #8a9079;
	font-size: 12px;
}

/* --------------------------- Responsive --------------------------- */

@media (max-width: 991px) {
	.laf-lfamily__grid {
		grid-template-columns: 1fr 1fr;
		grid-template-areas:
			"quote quote"
			"c1 img2"
			"img1 c2";
	}
}

@media (max-width: 767px) {
	.laf-lfamily {
		padding: 44px 22px;
	}

	.laf-lfamily__grid {
		grid-template-columns: 1fr;
		grid-template-areas:
			"quote"
			"c1"
			"img1"
			"img2"
			"c2";
	}

	.laf-lfamily__quote-text {
		font-size: 22px;
	}
}
