.list-jobs-widget {
    display: flex;
    flex-direction: column;
    gap: 30px;
	margin-bottom:25px;
}

.list-jobs-widget-list h2{
	font-family: var(--e-global-typography-secondary-font-family), Sans-serif;
    font-size: var(--e-global-typography-secondary-font-size);
    font-weight: var(--e-global-typography-secondary-font-weight);
    color: var(--e-global-color-secondary);
	margin-bottom: 35px;
}

.list-jobs-widget-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 6px;
	margin-bottom: 40px;
	box-shadow: 0px 3px 6px #00000029;
	height: 100%;
	align-items: stretch;
}

.list-jobs-widget-card-content{
	width:80%;
	padding: 20px 10px;
	display: flex;
    flex-direction: column;
}

.list-jobs-widget-card-img{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #CFCFCF;
	border-radius: 6px 0px 0px 6px;
}

.list-jobs-widget-card-img img {
    max-width: 100px !important;
}

.list-jobs-widget-card-content-text {
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    color: var(--e-global-color-text) ;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6em; 
	margin-bottom: 1.8rem;
}

.list-jobs-widget-card-content-title{
	font-size: var(--e-global-typography-text-font-size);
	font-weight:bold ;
	margin-bottom: 0 !important;
}

.list-jobs-widget-btn {
	padding: 6px 28px;
    width: fit-content;
    font-family: "Open Sans", Sans-serif;
    background-color: #EA6609;
    color: white;
    border-radius: 6px;
    font-weight: bold;
	fill: #FFFFFF;
    color: #FFFFFF;
	transition-duration: 0.3s;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #EA6609;
	margin-bottom: 10px;
}
.list-jobs-widget-btn:hover {
    background-color: #FFFFFF;
    color: #EA6609;
    border-color: #EA6609;
}


@media only screen and (max-width: 767px) {
	.list-jobs-widget-card-img {
		width:35%;
	}
	.list-jobs-widget-card-img img {
    max-width: 90px;
	}
	.list-jobs-widget {
		margin-top:25px;
	}
}