body.project-page {
	background-image: url("../../img/graphic-design-project-photos/Backround photos/thumbs/tinder.jpeg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	color: #f5f7fb;
}

body.project-page nav,
body.project-page footer,
body.project-page nav a {
	color: #ffffff;
	text-shadow: none;
}

body.project-page main {
	width: 100%;
	padding: 1rem 0 2.8rem;
}

.project-hero {
	padding: 3.8rem 1rem 7.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.project-pill {
	width: min(88vw, 400px);
	padding: 2.2rem 1.4rem;
	border-radius: 1.9rem;
	background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.34);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(10, 14, 22, 0.24);
	text-align: center;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.project-page .back-link {
	color: #f5f7fb;
	text-shadow: none;
    background: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.34);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(10, 14, 22, 0.24);
}

.project-pill h1 {
	font-family: "Michroma", sans-serif;
	font-size: clamp(1.95rem, 2.85vw, 2.45rem);
	line-height: 1;
	margin-bottom: 0.65rem;
}

.project-tools {
	font-family: "Michroma", sans-serif;
	font-size: 1.1rem;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
}

.project-pill .tool-logo {
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	object-fit: cover;
	display: inline-block;
}

.project-section {
	padding: 1.65rem 1rem;
}

.project-shell {
	max-width: 1140px;
	margin: 0 auto;
}

.stack-rows {
	display: grid;
	gap: 1.8rem;
}

.story-row,
.two-column {
	display: grid;
	grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
	gap: 1.8rem;
	align-items: center;
}

.image-card {
	padding: 1.35rem;
	border-radius: 0.85rem;
	min-height: 292px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.image-card img {
	width: min(100%, 740px);
	display: block;
    border-radius: 1rem;
}



.text-card h2 {
	font-family: "Michroma", sans-serif;
	font-size: 1.5rem;
	line-height: 1.07;
	font-weight: 900;
	margin-bottom: 0.92rem;
    padding-top: 1rem;
    padding-left: 1rem;
}

.text-card h3 {
	font-size: 1.1rem;
	margin-top: 0.95rem;
	margin-bottom: 0.35rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.text-card p,
.text-card li {
	font-size: 1.05rem;
	line-height: 1.24;
	max-width: 57ch;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.text-card p + p,
.text-card ul + p,
.text-card p + ul {
	margin-top: 0.6rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
}

.text-card ul {
	padding-left: 1.3rem;
	max-width: 57ch;
    
}

.image-panel {
	border-radius: 1rem;
	overflow: hidden;
}

.image-panel img {
	width: 100%;
	display: block;
	object-fit: cover;
	border-radius: 1rem;
}

.image-panel-poster {
	max-width: 500px;
	justify-self: center;
}

.reflection-copy {
	max-width: 640px;
}

.project-section-last {
	padding-top: 2rem;
}

@media (max-width: 980px) {
	.story-row,
	.two-column {
		grid-template-columns: 1fr;
		gap: 1.1rem;
	}

	.project-hero {
		padding-bottom: 4.2rem;
	}

	.text-card h2 {
		font-size: clamp(1.75rem, 6vw, 2.25rem);
	}

	.text-card p,
	.text-card li {
		font-size: 1rem;
	}
}

@media (max-width: 620px) {
	.project-section {
		padding: 1.15rem 0.75rem;
	}

	.project-pill {
		width: 100%;
		padding: 1.6rem 1.2rem;
	}

	.project-pill h1 {
		font-size: clamp(1.65rem, 8.2vw, 2rem);
	}

	.project-tools {
		font-size: 0.92rem;
	}

	.text-card h2 {
		margin-bottom: 0.5rem;
	}

	.image-card {
		min-height: 220px;
		padding: 1rem;
	}

	.image-card img {
		max-height: 215px;
	}
}

/* Shared glass effect for text blocks */
:is(
  .section-copy,
  .text-card,
  .overview-copy,
  .overview-text,
  .details-copy,
  .reflections-copy,
  .project-copy,
  .project-overview-text,
  .project-description,
  .project-summary,
  .project-list,
  .philosophy-list,
  .challenge-copy
) {
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(10, 14, 22, 0.2);
  padding: 1rem;
}
/* Unified image card style across graphic design pages */
body.project-page .project-section figure {
margin: 0;
padding: 0.6rem;
border-radius: 1rem;
background: rgba(255, 255, 255, 0.16);
border: 1px solid rgba(255, 255, 255, 0.34);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
box-shadow: 0 10px 30px rgba(10, 14, 22, 0.2);
}
/* Unified image radius normalization */
:is(.media-card, .media-card-hero, .poster-card, .red-card, .hero-media-card, .reflection-figure, .product-visual, body.project-page .project-section figure) {
border-radius: 1rem !important;
}

:is(.media-card, .media-card-hero, .poster-card, .red-card, .hero-media-card, .reflection-figure, .product-visual, body.project-page .project-section figure) img,
img.casio-cover-image,
.dual-visuals img,
.grid-visuals-four img,
.reflection-figure img,
.product-visual img {
border-radius: 0.85rem !important;
}




