.contact-component
{
	display: grid;
	grid-template-columns: 300px;
	gap: 2rem;	
	place-content: center;
	width: 100%;
	margin-top: 2rem;
}
.contact-component--item
{
	padding: 0;
	text-decoration: none;
	background-color: #fff;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px !important;
	border: 0 solid rgba(0, 0, 0, 0.125);
	display: flex;
	flex-direction: column;	
	max-width: 500px;
	margin-bottom: 1rem;
	overflow: hidden;
	
}
.contact-component--item h3
{	
	border-bottom: 1px solid #f1f0eb;
	margin-bottom: 0.3rem;
}

.contact-component--item .contact-component--imageWrapper img
{	
	width: 350px !important;
	object-fit: cover;
	border:none;
	border-top-left-radius: 5px;
    border-top-right-radius: 5px;
	object-position: top;
	aspect-ratio: 1 / 1;
	box-shadow: none !important;
	-webkit-box-shadow:none !important;
	margin-bottom: 0;

}
.contact-component--imageWrapper{
    position: relative;
    overflow: hidden;    
    flex-shrink: 0;
}
.contact-component--body{
    
	padding:20px;
	word-break: break-word;
}
.contact-component--title
{
	margin-bottom: 20px;
	opacity: 0.90;
}
@media (min-width:  768px) {
	.contact-component
	{
		grid-template-columns: 50%;
		place-content: center;		
	}
}

@media (min-width:  979px) {
	.contact-component
	{
		grid-template-columns: 35% 35%;
		width: auto;
	}
	.contact-component--item
	{
		width: 100%;
	}
	.contact-component--item .contact-component--imageWrapper img
	{
		width: 500px !important;
	}
}
@media (min-width:  768px) {
	p.contact-component--preamble{

		text-align: center;
	}
}