article.job-card {
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	border-top: 1px solid #000;
	padding: 10px 0;
	font-size: 14px;
}
@media screen and (min-width: 768px) {
	article.job-card {
		display: grid;
		grid-template-columns: 50px min(200px, 25%) repeat(4, auto);
		grid-template-rows: repeat(3, auto);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
		border-top: 1px solid #000;
		padding: 10px 0;
		font-size: 14px;
	}
}
article.job-card > div {
	overflow: hidden;
	transition: max-height 1s;
}
.job-meta {
	grid-area: 2 / 2 / 4 / 2;
	-ms-flex-order: 3;
	order: 3;
}
.job-tags p {
	margin-bottom: 0;
	text-align: center;
}
@media screen and (min-width: 768px) {
	.job-tags p {
		text-align: left;
	}
}
.job-description {
	grid-area: 2 / 3 / 4 / 7;
	margin-left: 30px;
	-ms-flex-order: 2;
	order: 2;
}
a.job-heading {
	grid-area: 1 / 1 / 2 / 7;
	display: flex;
	text-decoration: none;
	color: #000;
	padding: 5px;
	align-items: center;
	transition: margin-bottom 0.3s;
}
a.job-heading:hover {
	text-decoration: none;
	color: #000;
}
.job-card.active a.job-heading {
	margin-bottom: 20px;
}
a.job-heading h3 {
	flex: 1 1 auto;
	font-size: 24px;
	font-weight: bold;
	margin-left: 11px;
	margin-bottom: 0;
}
a.job-heading div.location {
	flex: 1 1 auto;
	font-size: 24px;
	font-weight: bold;
	text-align: right;
	display: none;
}
@media screen and (min-width: 768px) {
	span.mobile-location {
		display: none;
	}
	a.job-heading div.location {
		display: block;
	}
}
.job-card a div.active-arrow {
	flex: 0 0;
	transition: transform 0.5s;
}
div.active-arrow span {
	font-size: 30px;
	line-height: 30px;
}
.job-card.active a div.active-arrow {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.interest-buttons {
	margin: 20px auto;
	max-width: 80%;
}
@media screen and (min-width: 768px) {
	.interest-buttons {
		max-width: none;
	}
}
.interest-buttons a {
	display: block;
	margin: 10px auto;
	text-decoration: none;
	color: #000;
	border: 2px solid #000;
	padding: 10px;
	border-radius: 20px;
	text-align: center;
	font-weight: bold;
}
.interest-buttons a:hover {
	background-color: #000;
	color: #fff;
}
