.job__container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: start;
	grid-gap: var(--universal-gap);
	margin-top: var(--universal-gap);
	width: 100%;
}

.job__links {
	margin-top: var(--universal-gap);
}

.job__link {
	margin-bottom: calc(var(--universal-gap) / 2 );
	text-transform: uppercase;
}

.job__features {
	display: flex;
	flex-direction: column;
	gap: var(--universal-gap);
	width: 100%;
	height: fit-content;
}

.job__feature {
	display: block;
  	margin: 0 auto;
  	/* position: relative; */
  	width: 100%;
  	height: 100%;
  	background: transparent;
  	box-sizing: border-box;
  	-webkit-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
  	-moz-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
}

.job__feature--primary {
	max-width: 450px;
	margin-right: 0;
}

.job__feature--secondary {
	max-width: 300px;
}

.job__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1.15;
	-webkit-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
	  -moz-clip-path: polygon(0% 50%, 25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%);
}

@media screen and (max-width: 1300px) {
	.job__container {
		grid-template-columns: 1fr;
	}
	
	.job__features {
		display: none;
	}
}
