body > footer {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	justify-items: center;
	justify-content: space-between;
	min-block-size: 30vh;
	background-color: #383838;
	margin-block-start: 10px;
	padding-block-start: 15px;
	padding-block-end: 15px;
	grid-row-gap: 30px;
}

body > footer > .contact-details-section {
	line-height: 1.5;
}

body > footer > .contact-details-section a {
	display: block;
}

body > footer > .contact-details-section p {
	margin-block-end: 0.8rem;
}

body > footer > .contact-details-section :is(h2, address) {
	text-align: start;
	inline-size: 290px;
}

body > footer > nav {
	line-height: 2.8;
}

body > footer > nav > a {
	display: block;
}

body > footer h2 {
	color: #ff3333;
	font-size: 1.5rem;
}

body > footer :is(a, p) {
	color: white;
}

@media (max-width: 950px) {
	body > footer {
		grid-template-columns: minmax(0, 1fr);
		justify-items: start;
		padding-inline-start: 0.5rem;
	}
}