/* Main theme additions - hero improvements for Michael Crane Live page */

/* Typography: prefer Montserrat (enqueued in functions.php) */
body, button, input, select, textarea {
	font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

h1, h2, h3, .hero-title, .article-title {
	font-family: 'Montserrat', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-weight: 700;
}

/* Ensure the hero section from the template displays well across devices */
.post-hero {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.post-hero::before {
	/* slightly darker overlay on top of artwork for readability */
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.6) 100%);
	z-index: 0;
	pointer-events: none;
}

.post-hero .hero-content { z-index: 1; }

/* tune layout to reduce empty red margin and make the cover more prominent */
.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	/* favor the left artwork column slightly and reduce spacing */
	grid-template-columns: 1.05fr 0.95fr;
	gap: 1.25rem;
	align-items: center;
	position: relative;
	z-index: 1;
	padding: 0.6rem 1.2rem;
}

.hero-left { display: flex; justify-content: flex-end; }
.podcast-cover { max-width: 360px; border-radius: 12px; overflow: hidden; margin: 0; }
.podcast-cover img { display: block; width: 100%; height: auto; }

/* Hero artwork as a real element (full-bleed behind content) */
.post-hero { position: relative; overflow: hidden; }
.post-hero .hero-artwork {
	position: absolute;
	inset: 0; /* top:0; right:0; bottom:0; left:0 */
	z-index: 0;
	display: block;
}
.post-hero .hero-artwork img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* move focus a little right so logo sits visually well inside the cropped area */
	object-position: 28% 50%;
	transform: scale(1.04);
	display: block;
}

.hero-title { font-size: 2.6rem; margin-bottom: 0.6rem; color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,0.45); }
.hero-subtitle { font-size: 1.15rem; color: #f0f0f0; margin-bottom: 1.2rem; text-shadow: 0 1px 6px rgba(0,0,0,0.35); }

/* CTA and social spacing on mobile */
.newsletter-form { margin-top: 1rem; }

@media (max-width: 968px) {
	.post-hero { min-height: 420px; padding: 2rem; }
	.hero-title { font-size: 1.6rem; }
	.hero-subtitle { font-size: 1rem; }
	.podcast-cover { max-width: 260px; }
}

@media (max-width: 480px) {
	.post-hero { min-height: 360px; padding: 1.2rem; }
	.hero-content { grid-template-columns: 1fr; gap: 1.25rem; }
	.podcast-logo h1 { font-size: 1.2rem; }
	.logo-live { font-size: 0.95rem; }
}

/* small utility to ensure episode title overlay contrast */
.episode-title-overlay { text-shadow: 0 2px 8px rgba(0,0,0,0.6); }

