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

body.graphic-design-page nav a,
body.graphic-design-page footer {
	color: #f0f0f0;
	text-shadow: 0 6px 10px rgba(0, 0, 0, 0.85);
}

body.graphic-design-page main {
	width: 100%;
	padding: 3% 2%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.design-scroll-shell {
	width: 100%;
	max-width: 80%;
	padding: 2%;
	border-radius: 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.24);
	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);
}

.design-scroll-header h1 {
	font-family: "Michroma", sans-serif;
	font-size: 220%;
	color: #ffffff;
	margin-bottom: 0.8rem;
}

.design-scroll-header p {
	color: rgba(255, 255, 255, 0.92);
	max-width: 76ch;
	margin-bottom: 1.2rem;
}

.design-scroll-stack {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	max-height: 50vh;
	overflow-y: auto;
	padding-right: 0.35rem;
}

.design-scroll-stack::-webkit-scrollbar {
	width: .55rem;
}

.design-scroll-stack::-webkit-scrollbar-thumb {
	background: rgba(255, 184, 143, 0.55);
	border-radius: 999px;
}

.design-column {
	display: grid;
	grid-template-columns: minmax(90px, 20%) minmax(0, 1fr);
	gap: 1.5rem;
	align-items: stretch;
	border-radius: 1rem;
	padding: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.25);
	background: rgba(0, 0, 0, 0.25);
	text-decoration: none;
	color: inherit;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.design-column:hover,
.design-column:focus-visible {
	border-color: rgba(255, 222, 201, 0.9);
	background: rgba(255, 255, 255, 0.16);
	box-shadow: 0 0 0 1px rgba(255, 222, 201, 0.35), 0 12px 26px rgba(0, 0, 0, 0.24);
	transform: translateY(-2px);
}

.design-column:focus-visible {
	outline: 2px solid rgba(255, 222, 201, 0.85);
	outline-offset: 2px;
}

.design-column img {
	width: 100%;
	height: 100%;
	min-height: 5rem;
	object-fit: cover;
	border-radius: 0.8rem;
}

.design-column-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 0.55rem;
	padding-left: 0.45rem;
}

.design-column-content h2 {
	font-family: "Michroma", sans-serif;
	font-size: 150%;
	color: #ffffff;
}

.design-column-content p {
	color: rgba(255, 255, 255, 0.88);
	font-size: 110%;
	line-height: 1.35;
	margin-right: 1rem;
}

@media (max-width: 760px) {
	.design-scroll-shell {
		max-width: 96%;
		padding: 1rem;
	}

	.design-scroll-stack {
		max-height: none;
		overflow: visible;
	}

	.design-column {
		grid-template-columns: 1fr;
	}

	.design-column img {
		height: 12rem;
	}
}





