body.about-page {
	background-image: url("../../img/core-img/thumbs/AboutPage.jpeg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-color: #111;
}

body.about-page nav a,
body.about-page footer {
	color: #afffeb;
	text-shadow: 0 6px 10px rgba(0, 0, 0, 0.85);
	background-color: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	position: relative;
	z-index: 2;
}


body.about-page main {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 5% 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about-shell {
	width: 100%;
	max-width: 80%;
	background: transparent;
	box-shadow: none;
	padding: 0;
}

.about-panel {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
	column-gap: 3%;
	row-gap: 2%;
	padding: 2%;
	border: 1px solid rgba(255, 255, 255, 0.24);
	border-radius: 1.25rem;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
	box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
}

.about-visual,
.about-content {
	min-width: 0;
}

.about-visual {
	display: flex;
	align-items: stretch;
}

.about-image {
	width: 100%;
	height: 100%;
	min-height: 100%;
	object-fit: cover;
	object-position: center;
	border-radius: 1rem;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.about-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.5%;
	padding: 2% 0;
}

.about-content h1 {
	font-family: "Michroma", sans-serif;
	margin-bottom: 1%;
	font-size: 210%;
	color: #ffffff;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.about-content p {
	font-size: 100%;
	color: rgba(255, 255, 255, 0.92);
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

@media (max-width: 620px) {
	body.about-page main {
		padding: 24px 14px;
	}

	.about-shell {
		max-width: 100%;
	}

	.about-panel {
		grid-template-columns: 1fr;
		row-gap: 14px;
		padding: 14px;
	}

	.about-content {
		order: 1;
		gap: 10px;
		padding: 0;
	}

	.about-content h1 {
		margin-bottom: 0;
		font-size: 165%;
	}

	.about-content p {
		margin: 0;
		line-height: 1.45;
	}

	.about-visual {
		display: flex;
		order: 2;
		margin-top: 0;
	}

	.about-image {
		min-height: 0;
	}
}




