.profession-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:2rem;
}

.profession-card{
    position:relative;
    aspect-ratio:1/1;
    overflow:hidden;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.profession-card-image{
    width:100%;
    height:100%;
    object-fit:cover;
	object-position:center;
	display:block;
}

.profession-card-overlay{
    position:absolute;
    inset:0;

    display:flex;
	flex-direction:column;
	justify-content:space-between;
	
 	padding:1.5rem;
}

.profession-card-info{
	width:60%;
	min-height:220px;

	background:rgba(245,245,240,0.95);

	padding:1.5rem;
}
 
.profession-card-title{
	margin:0;
	font-size:2rem;
	font-weight:700;
	
	background: #111 !important;
	color: white !important;
}

.profession-card-button{
	align-self: center;

	background: #111;
	color: white;

	padding:1rem 2rem;

	text-decoration: none;
	border-radius: 4px;

	transition: 0.2s ease;
	display: inline-block;
}
 
.profession-card-button:hover{
	background: #333;
}