.contact-cover {
    display: grid;
    grid-template-columns: 339px 329px 1fr;
    gap: 20px;
    grid-template-areas: "phone img detail"
        "email img detail";
	margin-bottom: 75px;

	@media (max-width: 768px) {
		display: flex;
        flex-direction: column;
	}

	& .contact-phone, .contact-email {
		background-color: #fff;
		border-radius: 20px;
		padding: 25px;
		padding-top: 75px;
		line-height: 170%;
		background-position: 25px 25px;
		background-repeat: no-repeat;

		&.contact-phone {
			background-image: url(icon-call.png);
			@media (max-width: 768px) {
				order: 1;
			}
		} 
		&.contact-email {
			background-image: url(icon-mail.png);
			@media (max-width: 768px) {
				order: 2;
			}
		} 

		& a {
			display: inline-block;
			width: 100%;
			font-size: 30px;
			font-weight: 600;
			color: #194276 !important;
			padding: 15px 0;
			&:hover {
				text-decoration: underline !important;
			}
		}
		& strong {
			font-size: 14px;
			font-weight: 800;
		}
		& span {
			font-size: 14px;
			font-weight: 600;
			color: #8A8A8A;
		}
	}
	& .contact-img {
		grid-area: img;
		border-radius: 20px;
        background-size: cover;
		background-position: center;
		@media (max-width: 768px) {
			order: 3;
			aspect-ratio: 35 / 27;
		}
	}
	& .contact-detail {
		grid-area: detail;
		background-color: #fff;
		border-radius: 20px;
		padding: 25px;

		@media (max-width: 768px) {
			order: 4;
		}

		& h2 {
			text-align: left;
			padding-bottom: 25px;
		}

		& dl {
			font-size: 14px;
			font-weight: 500;

			& dt {
				float: left;
				margin-right: 5px;
				line-height: 200%;
				font-weight: 500;
                color: #8A8A8A;
			}
			& dd {
				line-height: 200%;
			}
		}
	}
}