/* Recrutement Widget Styles */

.lyode-recrutement-widget {
	width: 100%;
}

.lyode-recrutement-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
	justify-content: center;

}

.lyode-recrutement-filter {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.lyode-recrutement-filter--contract,
.lyode-recrutement-filter--location {
	min-width: 160px;
}

.lyode-recrutement-select {
	min-width: 160px;
	border-radius: 4px;
	border: 1px solid #e2e2e2;
	background-color: #ffffff;
	padding: 8px 12px;
	font-size: 14px;
	color: #000000;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #000000 50%), linear-gradient(135deg, #000000 50%, transparent 50%);
	background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
}

.lyode-recrutement-select:focus {
	outline: none;
	border-color: #FECD03;
	box-shadow: 0 0 0 1px #FECD03;
}

.lyode-recrutement-count-row {
	display: flex;
	align-items: baseline;
	gap: 6px;
	margin-bottom: 18px;
	font-size: 20px;
	font-weight: 600;
	color: #000000;
}

.lyode-recrutement-count-number {
	color: #FECD03;
	font-weight: 700;
}

.lyode-recrutement-count-label {
	color: #000000;
}

.lyode-recrutement-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.lyode-recrutement-list--loading {
	opacity: 0.6;
	pointer-events: none;
}

.lyode-recrutement-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 24px;
	background-color: #ffffff;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.lyode-recrutement-card-left {
	display: flex;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
	flex: 1;
}

.lyode-recrutement-card-top {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.lyode-recrutement-type {
    display: inline-block;
    padding: 7px 14px 4px 14px;
    border-radius: 12px;
    background-color: #FECD03;
    color: #000000;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    flex-shrink: 0;
}

.lyode-recrutement-title {
	margin: 0;
	font-size: 16px;
	font-weight: 600;
	color: #000000;
	line-height: 1.35;
}

.lyode-recrutement-link {
	font-size: 16px;
	color: #FECD03;
	text-decoration: none;
}

.lyode-recrutement-link:hover {
	color: #000000;
}

.lyode-recrutement-card-right {
	text-align: right;
	white-space: nowrap;
	flex-shrink: 0;
}

.lyode-recrutement-location {
	font-size: 16px;
	font-weight: 400;
	color: #8D8D8D;
	text-transform: uppercase;
}

.lyode-recrutement-empty {
	margin: 12px 0 0;
	color: #8D8D8D;
	font-size: 14px;
}

@media (max-width: 900px) {
	.lyode-recrutement-card {
		flex-direction: column;
		align-items: flex-start;
	}

	.lyode-recrutement-card-right {
		text-align: left;
	}

	.lyode-recrutement-location {
		font-size: 13px;
	}
}

@media (max-width: 768px) {
	.lyode-recrutement-filters {
		flex-direction: column;
		align-items: stretch;
	}

	.lyode-recrutement-filter--contract,
	.lyode-recrutement-filter--location {
		width: 100%;
	}
}

