/* BnW Minimalism Magazine – Interview Post Template */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
	--black:    #0d0d0d;
	--gray-900: #1a1a1a;
	--gray-700: #444;
	--gray-500: #888;
	--gray-300: #d4d4d4;
	--gray-100: #f5f5f5;
	--white:    #fff;
	--serif:    Georgia, 'Times New Roman', serif;
	--sans:     -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--narrow:   680px;
	--wide:     1120px;
}

html { font-size: 16px; -webkit-font-smoothing: antialiased; }

body.bnw-interview-post {
	font-family: var(--sans);
	background: var(--white);
	color: var(--gray-900);
	line-height: 1.7;
}

/* ── Site header ──────────────────────────────────────────────────────────── */

.bnw-ip-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 32px;
	border-bottom: 1px solid var(--gray-300);
}

.bnw-ip-logo {
	font-family: var(--serif);
	font-size: 12px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--black);
	text-decoration: none;
}

.bnw-ip-back {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray-500);
	text-decoration: none;
	transition: color .2s;
}
.bnw-ip-back:hover { color: var(--black); }

/* ── Hero photo ───────────────────────────────────────────────────────────── */

.bnw-ip-hero-photo {
	width: 100%;
	max-height: 72vh;
	overflow: hidden;
	background: var(--gray-100);
}
.bnw-ip-hero-photo img {
	width: 100%;
	height: 100%;
	max-height: 72vh;
	object-fit: cover;
	display: block;
}

/* ── Photographer identity ────────────────────────────────────────────────── */

.bnw-ip-identity {
	text-align: center;
	padding: 56px 24px 48px;
	max-width: var(--wide);
	margin: 0 auto;
}

.bnw-ip-name {
	font-family: var(--serif);
	font-size: clamp(36px, 6vw, 64px);
	font-weight: normal;
	color: var(--black);
	letter-spacing: -1px;
	line-height: 1.1;
	margin-bottom: 16px;
}

.bnw-ip-location {
	font-size: 11px;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: var(--gray-500);
	margin-bottom: 24px;
}

.bnw-ip-social {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	flex-wrap: wrap;
}

.bnw-ip-social a {
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gray-700);
	text-decoration: none;
	padding: 2px 0;
	border-bottom: 1px solid transparent;
	transition: color .2s, border-color .2s;
}
.bnw-ip-social a:hover {
	color: var(--black);
	border-color: var(--black);
}

.bnw-ip-dot {
	color: var(--gray-300);
	padding: 0 14px;
	font-size: 14px;
}

/* ── Divider ──────────────────────────────────────────────────────────────── */

.bnw-ip-rule {
	border: none;
	border-top: 1px solid var(--gray-300);
	max-width: var(--narrow);
	margin: 0 auto 64px;
}

/* ── Q&A ──────────────────────────────────────────────────────────────────── */

.bnw-ip-interview {
	max-width: var(--narrow);
	margin: 0 auto;
	padding: 0 24px;
}

.bnw-ip-qa {
	margin-bottom: 56px;
}

.bnw-ip-question {
	font-family: var(--serif);
	font-size: 20px;
	font-weight: normal;
	font-style: italic;
	color: var(--black);
	line-height: 1.45;
	margin-bottom: 18px;
}

.bnw-ip-answer {
	font-size: 17px;
	color: var(--gray-700);
	line-height: 1.85;
}

/* ── Personal photograph (after Q5) ──────────────────────────────────────── */

.bnw-ip-personal-photo {
	margin-top: 36px;
}

.bnw-ip-personal-photo img {
	width: 100%;
	height: auto;
	display: block;
}

/* ── Gallery section ──────────────────────────────────────────────────────── */

.bnw-ip-gallery {
	max-width: var(--wide);
	margin: 80px auto 0;
	padding: 64px 24px 80px;
	border-top: 1px solid var(--gray-300);
}

.bnw-ip-gallery-heading {
	font-family: var(--serif);
	font-size: 11px;
	font-weight: normal;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: var(--gray-500);
	text-align: center;
	margin-bottom: 40px;
}

.bnw-ip-gallery-grid {
	columns: 2;
	column-gap: 6px;
}

.bnw-ip-gallery-item {
	break-inside: avoid;
	margin-bottom: 6px;
}

.bnw-ip-gallery-item img {
	width: 100%;
	height: auto;
	display: block;
	background: var(--gray-100);
}

@media (min-width: 800px) {
	.bnw-ip-gallery-grid { columns: 3; }
}

/* ── Post footer ──────────────────────────────────────────────────────────── */

.bnw-ip-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	padding: 24px 32px;
	border-top: 1px solid var(--gray-300);
	font-size: 11px;
	letter-spacing: 1px;
	color: var(--gray-500);
}

.bnw-ip-footer a {
	color: var(--gray-700);
	text-decoration: none;
	transition: color .2s;
}
.bnw-ip-footer a:hover { color: var(--black); }

/* ── Responsive ───────────────────────────────────────────────────────────── */

@media (max-width: 600px) {
	.bnw-ip-header  { padding: 16px 20px; }
	.bnw-ip-footer  { padding: 20px; }
	.bnw-ip-identity { padding: 40px 20px 36px; }
	.bnw-ip-interview { padding: 0 20px; }
	.bnw-ip-gallery { padding: 48px 20px 60px; }
	.bnw-ip-question { font-size: 18px; }
	.bnw-ip-answer   { font-size: 16px; }
}
