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

body.portfolio-page nav a,
body.portfolio-page footer {
	color: #f4dfcf;
	text-shadow: 0 6px 10px rgba(0, 0, 0, 0.85);
	background-color: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}


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


.portfolio-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(1%, 1fr));
	gap: 8%;
	background: transparent;
	box-shadow: none;
	padding: 0;
	max-width: 80%;
	flex: 1;
	min-height: 100%;
	align-items: stretch;
	justify-content: center;
	justify-items: center;
	align-content: center;
}

.portfolio-card {
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
	border: 1px solid rgba(255, 255, 255, 0.28);
	border-radius: 1.25rem;
	padding: 6%;
	box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	min-height: 40%;
	height: auto;
	display: flex;
	flex-direction: column;
	overflow: visible;
	width: 120%;
	max-width: 120%;
	backdrop-filter: blur(18px);
	-webkit-backdrop-filter: blur(18px);
	text-decoration: none;
}

.portfolio-card-image {
	display: block;
	width: 100%;
	height: auto;
	min-height: 0;
	max-height: none;
	object-fit: contain;
	object-position: center;
	border-radius: 0.9rem;
	margin-bottom: 0;
	background-color: transparent;
	flex-shrink: 0;
	margin-bottom: 10%;
}

.portfolio-card h3 {
	font-family: "Michroma", sans-serif;
	font-size: 115%;
	color: #ffffff;
	line-height: 1.25;
	text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
	margin-bottom: 5%;
}

.portfolio-card p {
	color: rgba(255, 255, 255, 0.9);
	font-size: 100%;
	line-height: 1.5;
	text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
	margin-bottom: 5%;
}

.portfolio-card:hover {
	transform: translateY(-8px) scale(1.01);
	box-shadow: 0 24px 42px rgba(0, 0, 0, 0.24);
	border-color: rgba(255, 102, 0, 0.7);
}

@media (max-width: 620px) {
	.portfolio-grid {
		grid-template-columns: 1fr;
		gap: 1rem;
		max-width: 92%;
	}

	.portfolio-card {
		width: 100%;
		max-width: 100%;
	}
}




