/**
 * Widget « Une (Hero) » — L'Africaine Elementor Addons
 * Préfixe : .laf-hero
 */

.laf-hero {
	position: relative;
	display: flex;
	width: 100%;
	min-height: 620px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: #384a30;
	overflow: hidden;
}

.laf-hero__overlay {
	position: absolute;
	inset: 0;
	background-color: rgba(20, 28, 16, 0.55);
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 60%, rgba(0, 0, 0, 0) 100%);
}

.laf-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;
	width: 100%;
	margin: 0 auto;
	padding: 60px;
}

.laf-hero__inner--full {
	max-width: none;
}

.laf-hero__content {
	max-width: 620px;
}

.laf-hero__badge {
	display: inline-block;
	margin-bottom: 22px;
	padding: 8px 16px;
	color: #ffffff;
	background-color: #7a1420;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1.2;
}

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

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

.laf-hero__excerpt {
	margin: 0 0 28px;
	color: #ededed;
	font-size: 16px;
	line-height: 1.6;
}

.laf-hero__cta {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: #f2d955;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.18s ease;
}

.laf-hero__cta-text {
	border-bottom: 2px solid currentColor;
	padding-bottom: 4px;
}

.laf-hero__arrow {
	width: 22px;
	height: 22px;
	fill: #f2d955;
	flex: none;
	transition: transform 0.18s ease, fill 0.18s ease;
}

.laf-hero__cta:hover .laf-hero__arrow {
	transform: translateX(4px);
}

@media (max-width: 767px) {
	.laf-hero__inner {
		padding: 32px 24px;
	}

	.laf-hero__title {
		font-size: 34px;
	}
}
