.job-feed-grid {
    display: block;
}

.job-card {
    display: block;
    text-decoration: none;
    color: inherit;
	background: white;
}

.job-card-inner {
    padding: 25px;
    height: 100%;
    transition: 0.3s ease;
    background: #fff;
	box-shadow: 0 0 16px 3px rgba(17, 51, 59, 0.12);
}

.job-card:hover .job-card-inner {
    transform: translateY(-4px);
}

.job-card {
	text-decoration: none !important;
}

.job-pay {
	background: #bb8a96;
	font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5;
	width: max-content;
	padding: 3px 8px;
	border-radius: 5px;
	color: #ffffff;
}

.job-card-inner {
	display: grid;
	grid-template-columns: 1fr auto;
}

.job-card-inner .job-overview {
	grid-column: -1/1 !important;
}

.job-title {
    margin-bottom: 10px;
	line-height: 1;
    padding-right: 50px;
}

.job-subtitle {
	text-transform: uppercase;
	    font-weight: 700;
	color: #bb8a96;
	line-height: 1;
    padding-bottom: 5px !important;
}

.job-subtitle, .job-location {
	font-size: 0.8rem;
}

.job-company,
.job-location,
.job-pay, 
.job-subtitle {
    margin-bottom: 0 !important;
}

.job-location, .job-overview {
	color: #143849 !important;
}

.job-overview {
    margin-top: 30px;
	border-top: 1px solid #297f93;
    padding-top: 20px;
    margin-top: 30px;
}

.job-location:before {
	content:"\f3c5";
	position: relative;
	margin-right: 4px;
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 0.85em;
    top: -1px;
    margin-left: 1px;
}

.job-card-inner .right {
	height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end; 
}


.single-job .job-subtitle, .single-job .job-location {
	font-size: 16px !important;
}

.single-job .job-subtitle {
	padding-bottom: 15px !important;
}

.single-job .job-pay {
	font-size: 14px !important;
	margin-top: 20px !important;
}

.job-read-more {
	width: max-content;
	margin-top: 20px;
	display: inline-block;
	color: #ffffff;
	padding-top: 8px;
    padding-right: 22px;
    padding-bottom: 8px;
    padding-left: 22px;
	border-radius: 40px;
    font-weight: 700;
    font-size: 12px;
	line-height: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background-color: var(--ast-global-color-3);
}

.job-read-more:hover {
    color: var(--ast-global-color-4);
    background: var(--ast-global-color-2);
}

@media (max-width: 992px) {

    .job-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 921px) {
	.job-card-inner {
    display: block; 
	}
	.job-card-inner .left {
	margin-bottom: 15px; 
}
	.job-overview {margin-top: 20px;}
}

@media (max-width: 767px) {
    .job-feed-grid {
        grid-template-columns: 1fr;
    }
}