:root {
	--osh-bg: #f2f2f0;
	--osh-dark: #0f131a;
	--osh-muted: #8d8d8d;
	--osh-text: #1d1d1d;
	--osh-card: #ffffff;
	--osh-gold: #8f6843;
}

body {
	background: var(--osh-bg);
	color: var(--osh-text);
	font-family: sans-serif;
	line-height: 1.55;
}

.site-header-custom .container,
.site-footer-custom .container {
	max-width: 1280px;
}


/* HERO */
.hero-main {
	position: relative;
	height: 90vh;
	overflow: hidden;
	margin: 0px;
}

/* BG IMAGE */
.hero-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: fill;
	object-position: center;
	/* slight zoom */
	z-index: -1;
}

/* OVERLAY (light dark for readability) */
.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
	z-index: 1;
}

/* CONTENT LAYER */
.hero-main .container {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/* FLOATING BOXES POSITION */
.hero-books {
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
}

/* BOX */
.hero-book-box {
	background: rgba(255, 255, 255, 0.3);
	backdrop-filter: blur(4px);
	padding: 30px;
	color: #fff;
	text-align: center;
}

/* BADGE */
.hero-book-box span {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	background: #ffffff;
	padding: 8px 18px;
	border-radius: 20px;
	display: inline-block;
	margin-bottom: 20px;
	color: #d97706;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* TITLE */
.hero-book-box h5 {
	font-size: 24px;
	margin: 0;
	font-family: "Playfair Display";
	line-height: 59.4px;
}

/* SCROLL ICON */
.scroll-icon {
	position: absolute;
	bottom: 5px;
	left: 50%;
	transform: translateX(-50%);
}

.scroll-icon span {
	display: inline-block;
	width: 22px;
	height: 35px;
	border: 2px solid #fff;
	border-radius: 20px;
	position: relative;
}

.scroll-icon span::after {
	content: "";
	position: absolute;
	top: 6px;
	left: 50%;
	width: 4px;
	height: 6px;
	background: #fff;
	transform: translateX(-50%);
	border-radius: 2px;
	animation: scroll 1.5s infinite;
}

@keyframes scroll {
	0% {
		opacity: 1;
		top: 6px;
	}

	100% {
		opacity: 0;
		top: 18px;
	}
}

@media (max-width: 768px) {

	.hero-books {
		top: 20%;
	}

	.hero-book-box {
		margin-bottom: 10px;
	}

	.hero-img {
		object-fit: cover;
	}

	.hero-books {
		position: absolute;
		top: 30%;
		transform: none;
		width: 100%;
		left: 12px;
	}
}

/* DEFAULT (HERO STATE - TRANSPARENT) */
/* Always-fixed header — no position-swap on scroll = no layout jerk.
   Only the bg color cross-fades when sticky. */
.site-header-custom {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(0, 0, 0, 0.55);
	border-bottom: none;
	transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	padding: 14px 0;
	min-height: 84px;
	display: flex;
	align-items: center;
}

.site-header-custom > .container {
	display: flex;
	align-items: center;
	width: 100%;
}

/* Reset the navbar to a simple flex row — no absolute positioning of
   children. Logo sits naturally on the left, nav on the right. */
.site-header-custom .navbar {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	min-height: 0;
}

.site-header-custom .navbar-brand {
	margin: 0;
	display: flex;
	align-items: center;
}

.site-header-custom .navbar-collapse {
	flex: 0 0 auto;
	width: auto;
	justify-content: flex-end;
}

/* TEXT WHITE ON HERO */
.site-header-custom .nav-link,
.site-header-custom .navbar-brand a {
	color: #ffffff;
}


/* BRAND */
.osh-brand-text {
	font-size: 2rem;
	font-style: italic;
	color: #ffffff;
	letter-spacing: -0.01em;
	text-decoration: none;
}

/* (legacy nav padding rules removed — handled in the unified flex layout above) */
.site-header-custom .navbar-brand {
	margin-right: 28px;
}

.osh-main-nav {
	margin-inline: auto;
}

.osh-main-nav .nav-link {
	font-family: sans-serif;
	font-size: 11px;
	padding: 0.35rem 0.8rem;
	color: #ffffff;
}

/* ===== STICKY STATE ===== */
.site-header-custom.is-sticky {
	position: fixed;
	background-color: #f6f6f4;
	border-bottom: 1px solid #e6e6e4;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
	opacity: 1;
	/* No "fadeIn" animation here — it caused a visible drop-in jerk that
	   compounded with the body padding-top change. The transition on
	   .site-header-custom (background-color/border/box-shadow) handles the
	   visual change smoothly on its own. */
}

/* default hidden sticky logo */
.osh-logo-sticky {
	display: none;
}

/* header sticky  */
.site-header-custom.is-sticky .osh-logo-default {
	display: none;
}

.site-header-custom.is-sticky .osh-logo-sticky {
	display: block;
}

@media (max-width: 768px) {

	/* Hide default logo */
	.osh-logo-default {
		display: none !important;
	}

	/* Show sticky logo */
	.osh-logo-sticky {
		display: block !important;
	}

	.osh-mobile-menu .osh-logo-sticky{
		width: 60%;
	}
	.site-header-custom.is-sticky{
	    padding-bottom: 7px;
        padding-top: 30px;
	}
	/* Optional: size fix */
	.site-header-custom.is-sticky .osh-logo-sticky img {
		height: 40px;
		width: auto;
	}
}

/* TEXT DARK AFTER SCROLL */
.site-header-custom.is-sticky .nav-link,
.site-header-custom.is-sticky .navbar-brand a,
.site-header-custom.is-sticky .osh-brand-text {
	color: #000;
}

.site-header-custom.is-sticky .navbar-nav li a {
	color: #000;
}

.site-header-custom.is-sticky .navbar-nav li a:hover {
	color: #ffa952;
}

.site-header-custom.is-sticky .navbar-nav li a:active {
	color: #ffa952;
}

.navbar-toggler {
	background-color: transparent !important;
}

/* NAV WRAPPER */
.osh-main-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* REMOVE DEFAULT UL */
.osh-main-nav ul {
	display: flex;
	gap: 28px;
	margin: 0;
	padding: 0;
	list-style: none;
}

/* MENU ITEMS */
.osh-main-nav li {
	list-style: none;
}

/* LINKS */
.osh-main-nav a {
	text-decoration: none;
	font-family: sans-serif;
	font-size: 15px;
	color: #ffffff;
	padding: 6px 0;
	position: relative;
	transition: all 0.3s ease;
}

/* HOVER EFFECT */
.osh-main-nav a:hover {
	color: #ffa952;
}

/* ACTIVE LINK (underline like image) */
.osh-main-nav .current-menu-item>a,
.osh-main-nav .current_page_item>a {
	color: #ffa952;
}

.osh-main-nav .current-menu-item>a::after,
.osh-main-nav .current_page_item>a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 1px;
	background: #ffa952;
}

/* CENTER NAVBAR */
.site-header-custom .navbar-collapse {
	justify-content: right;
}

/* ANIMATION */
@keyframes oshFadeIn {
	from {
		transform: translateY(-10px);
		opacity: 0.9;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Header is always-fixed, so body always reserves space for it.
   No layout shift on scroll because nothing changes — only the header bg
   color cross-fades. The .has-sticky-header class is now purely a hook
   the bg-cross-fade rule can target; it doesn't change padding. */
body {
	padding-top: 84px;
}

/* Heroes go EDGE-TO-EDGE (break out of GP's 1200px container) AND sit
   UNDER the always-fixed header. The header overlaps the hero with its
   semi-transparent dark bg until scroll, then cross-fades to white.

   Permissive selectors: these heroes can appear inside .site-main
   (homepage), inside .osh-single article (single posts), or as direct
   children of the wrapping content div (inner pages). One rule covers
   all locations. */
.hero-main,
.hero-section,
.video-hero,
.osh-single__hero,
.osh-overlook-single__hero {
	width: 100vw;
	max-width: none;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: -84px;
}

.separate-containers .site-main {
	margin: 0px;
}

/* (legacy desktop @media-only absolute-position rule for .site-logo removed.
   The flex layout handles positioning at all breakpoints now.) */

.site-logo img {
	max-height: 50px;
	width: auto;
}

.osh-hero {
	min-height: 360px;
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 0px
}

.osh-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(7, 12, 19, 0.6);
}

.osh-hero {
	position: relative;
	height: 70vh;
	/* ✅ FIX HEIGHT */
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

/* Thumbnail */
.osh-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 1;
}

.osh-hero {
	position: relative;
	height: 90vh;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
}

/* Video */
.osh-hero-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
}

/* Overlay */
.osh-hero-overlay {
	position: absolute;
	inset: 0;
	/* background: rgba(7, 12, 19, 0.6); */
	z-index: 2;
}

/* Parent */
.osh-hero-content {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	padding: 0 40px;
}

/* ✅ TEXT LEFT */
.osh-text {
	position: absolute;
	left: 150px;
	bottom: 60px;
	max-width: 600px;
	text-align: left;
	color: #fff;
}

/* Heading */
.osh-text h1 {
	font-size: 3rem;
	line-height: 1.1;
	margin-bottom: 10px;
}

@media (max-width: 768px) {

	.osh-hero-content {
		height: 100%;
		position: relative;
	}

	.osh-text {
		position: absolute;
		left: 20px;
		right: 20px;
		bottom: 20px;
		/* ✅ always bottom */
		text-align: left;
	}

	.osh-text h1 {
		font-size: 2rem;
		line-height: 1.2;
	}

	.osh-text p {
		font-size: 14px;
	}
}

/* Paragraph */
.osh-text p {
	font-size: 15px;
}

/* Hide text */
.osh-hero-content.hide-text h1,
.osh-hero-content.hide-text p {
	opacity: 0;
}

.osh-play,
.osh-stop {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background: transparent;
	color: #fff;
	font-size: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
}

/* stop hidden by default */
.osh-stop {
	opacity: 0;
	pointer-events: none;
}

/* show on hover */
.osh-stop.show {
	opacity: 1;
	pointer-events: auto;
}

#oshHeroVideoModal .modal-content {
	border: 0;
}

.osh-hero h1 {
	font-size: 3rem;
	line-height: 1.05;
	margin-bottom: 12px;
	font-family: serif;
}

.osh-content {
	font-size: 21px;
	font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

.osh-content-block {
	padding: 76px 0;
	background-color: #fff;
}

.osh-person-section {
	background: #f2f2f2;
	padding: 80px 0;
}

.osh-person-content {
	max-width: 600px;
}

/* TITLE */
.osh-person-title {
	font-size: 48px;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 10px;
	line-height: 1.2;
	font-family: sans-serif;
}

/* ROLE */
.osh-person-role {
	font-size: 14px;
	letter-spacing: 2px;
	color: #8c6b4f;
	text-transform: uppercase;
	margin-bottom: 30px;
}

/* BIO TEXT */
.osh-person-bio {
	font-size: 18px;
	line-height: 1.8;
	color: #4f453e;
	font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
	margin-bottom: 25px;
}

/* QUOTE */
.osh-person-quote {
	font-size: 18px;
	font-style: italic;
	color: #7a6f66;
	margin-bottom: 30px;
	line-height: 1.7;
}

/* LINK */
.osh-person-link {
	font-size: 16px;
	color: #8c6b4f;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.osh-person-link:hover {
	color: #000;
}

/* IMAGE */
.osh-portrait img {
	width: 100%;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.osh-content-block h2,
.osh-content-block h3 {
	font-size: 2rem;
	line-height: 1.1;
	font-family: "Noto Serif", serif;
}

.osh-label {
	font-size: 10px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--osh-muted);
	margin-bottom: 10px;
	display: block;
}

.osh-portrait {
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	background: #ddd;
}

.osh-portrait img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 1/1;
}

.osh-book-section {
	background: #fff;
	padding: 100px 0;
	text-align: center;
}

/* BADGE */
.osh-book-badge {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 20px;
	background: #e9e4df;
	color: #8c6b4f;
	font-size: 12px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 30px;
}

/* TITLE */
.osh-book-title {
	font-size: 32px;
	line-height: 1.1;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 25px;
	font-family: "Noto Serif", serif;
}

/* DESCRIPTION */
.osh-book-desc {
	max-width: 700px;
	margin: 0 auto 40px;
	font-size: 18px;
	line-height: 1.7;
	color: #4f453e;
	font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* BUTTON WRAPPER */
.osh-book-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

/* PRIMARY BUTTON */
/* Button */
.osh-btn-primary {
	position: relative;
	background: #6f523b;
	color: #fff;
	padding: 16px 28px;
	font-size: 16px;
	text-decoration: none;
	font-weight: 500;
	display: inline-block;
}

/* Badge */
.osh-badge {
	position: absolute;
	top: -25px;
	right: 0px;
	background: #1b5e20;
	color: #fff;
	font-size: 11px;
	padding: 4px 8px;
	white-space: nowrap;
}

.osh-btn-primary:hover {
	background: #5a3f2c;
	color: #fff;
}

/* OUTLINE BUTTON */
.osh-btn-outline {
	background: transparent;
	border: 1px solid #d6cdc5;
	color: #333;
	padding: 16px 28px;
	font-size: 16px;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.3s ease;
}

.osh-btn-outline:hover {
	border-color: #6f523b;
	color: #6f523b;
}

.osh-conversation {
	background: #f6f4f2;
	padding: 100px 0;
	text-align: center;
}

/* TITLE */
.osh-conv-title {
	font-size: 32px;
	font-style: italic;
	font-family: sans-serif;
	color: #5a4634;
	margin-bottom: 60px;
}

/* CARD */
.osh-card {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	text-align: left;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
	border: 1px solid #eee;
	transition: all 0.3s ease;
	height: 100%;
}

.osh-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ICON */
.osh-icon {
	margin-bottom: 20px;
}

.osh-icon svg {
	width: 28px;
	height: 28px;
	stroke: #7a5c43;
	stroke-width: 1.4;
}

/* TITLE */
.osh-card h4 {
	font-size: 20px;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 10px;
	font-family: sans-serif;
}

/* TEXT */
.osh-card p {
	font-size: 15px;
	color: #555;
	line-height: 1.6;
	margin: 0;
}

.author-content .osh-label {
	font-size: 18px;
	font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

.author-content h2 {
	font-size: 32px;
	padding: 5px 0;
	font-family: "Noto Serif", serif;
}

.author-content p {
	font-size: 18px;
	color: #4f453e;
	font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

.site-footer-custom {
	background: #e9e7e4;
	padding: 110px 0 30px;
	color: #3d3d3d;
}

/* BRAND */
.osh-footer-brand {
	font-family: sans-serif;
	font-size: 40px;
	font-style: italic;
	color: #1f1f1f;
	margin-bottom: 18px;
}

/* TEXT */
.osh-footer-about {
	max-width: 460px;
	font-size: 15px;
	line-height: 1.8;
	color: #4a4a4a;
	margin-bottom: 28px;
	font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
}

/* SOCIAL */
.osh-footer-social {
	display: flex;
	gap: 14px;
}

.osh-footer-social a {
	width: 42px;
	height: 42px;
	border: 1px solid #d6d1cb;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.osh-footer-social a:hover {
	border-color: #7a5c43;
}

/* MENU TITLES */
.widget-title {
	font-size: 11px;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	margin-bottom: 18px;
	color: #7a6f66;
}

/* LINKS */
.osh-footer-links li {
	margin-bottom: 12px;
}

.osh-footer-links a {
	font-size: 16px;
	color: #2f2f2f;
	text-decoration: none;
}

.osh-footer-links a:hover {
	color: #7a5c43;
}

/* BOTTOM */
.site-footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 70px;
	padding-top: 20px;
	border-top: 1px solid #d6d1cb;
	font-size: 11px;
	letter-spacing: 0.12em;
	color: #7a7a7a;
}

/* LEGAL */
.osh-footer-legal-links {
	display: flex;
	gap: 26px;
}

.osh-footer-legal-links a {
	color: #7a7a7a;
	text-decoration: none;
}

.osh-footer-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.osh-footer-menu li {
	margin-bottom: 10px;
}

.osh-footer-menu a {
	text-decoration: none;
	color: #444;
	font-size: 15px;
	transition: 0.3s;
}

.osh-footer-menu a:hover {
	color: #7a5c43;
	padding-left: 4px;
}

/* Headings */
.widget-title {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 15px;
	color: #888;
}

/* Responsive spacing */
@media (max-width: 768px) {
	.osh-footer-menu li {
		margin-bottom: 8px;
	}
}

/* ===== MOBILE HEADER FIX ===== */
@media (max-width: 991px) {

	.site-header-custom {
		position: relative;
		background: #f6f6f4;
		z-index: 999;
	}

	/* TOGGLER FIX (NO MOVEMENT) */
	.osh-toggler {
		border: none;
		outline: none;
		box-shadow: none;
		position: relative;
		z-index: 1001;
	}

	.navbar-toggler:focus {
		box-shadow: none;
	}

	/* ICON COLOR */
	.navbar-toggler-icon {
		filter: invert(0);
	}

	/* ===== OFFCANVAS MENU STYLE ===== */
	.osh-mobile-menu {
		width: 280px;
		background: #f6f6f4;
		padding: 20px;
	}

	/* MENU LINKS */
	.osh-mobile-nav {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.osh-mobile-nav li {
		margin-bottom: 18px;
	}

	.osh-mobile-nav a {
		font-size: 18px;
		color: #444;
		text-decoration: none;
		font-weight: 500;
		display: block;
		transition: 0.3s;
	}

	.osh-mobile-nav a:hover {
		color: #000;
		padding-left: 5px;
	}

	/* HEADER FIX */
	body.has-sticky-header {
		padding-top: 0;
	}

	.site-logo {
		position: static !important;
		transform: none !important;
	}
}

/* book tairl  */
/* HERO SECTION */
.hero-section {
	position: relative;
	padding: 200px 135px 110px;
	display: flex;
	align-items: center;
	min-height: 480px;
}

.hero-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -1;
}

.hero-section .overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.hero-section .container{
	z-index:1;
}
.hero-content {
	position: relative;
	max-width: 600px;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.small-text {
	letter-spacing: 3px;
	font-size: 13px;
	font-weight: 600;
	opacity: 1;
	color:#E8C794;
	text-transform: uppercase;
}

.hero-title {
	font-size: 48px;
	font-weight: 400;
	line-height: 1.1;
	margin: 20px 0;
	color: #ffffff;
}

.hero-title span {
	color: #E8C794;
}

.hero-desc {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 450px;
	line-height: 1.6;
}


/* VIDEO SECTION */
.video-section {
	background: #f4f4f4;
}

.video-wrapper {
	max-width: 900px;
	border-radius: 20px;
	overflow: hidden;
}

.video-thumbnail {
	position: relative;
}

.video-thumbnail img {
	width: 100%;
	border-radius: 20px;
}

/* PLAY BUTTON */
.play-btn {
	position: absolute;
	top: 30%;
	right: 0;
	transform: translate(-50%, -50%);

	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(5px);

	display: flex;
	align-items: center;
	justify-content: center;

	color: white;
	font-size: 24px;
	cursor: pointer;
}

/* WATCH TEXT */
.watch-text {
	position: absolute;
	bottom: 20px;
	width: 100%;
	text-align: center;
	color: #fff;
	letter-spacing: 2px;
	font-size: 12px;
}

/* SECTION */
/* CARD WRAPPER */
.more-books-btn {
	display: inline-block;
	background-color: #7b5a3c;
	/* brown color */
	color: #fff;
	padding: 18px 40px;
	font-size: 20px;
	text-decoration: none;
	border-radius: 2px;
	transition: 0.3s ease;
}

/* HOVER */
.more-books-btn:hover {
	background-color: #6a4d33;
	color: #fff;
}

.book-card-new {
	background: #f5f5f5;
	border-radius: 16px;
	overflow: hidden;
	transition: 0.3s ease;
}

/* IMAGE */
.book-img {
	background: #e6d5be;
	padding: 30px;
	text-align: center;
}

.book-img img {
	max-width: 180px;
	height: auto;
}

/* CONTENT */
.book-content {
	padding: 20px;
}

/* HOVER EFFECT */
.book-card-new:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.watch-btn {
	display: inline-block;
	background: #7b5a3c;
	color: #fff;
	padding: 12px 25px;
	font-size: 14px;
	text-decoration: none;
	border-radius: 4px;
	letter-spacing: 1px;
	transition: 0.3s ease;
}

/* HOVER */
.watch-btn:hover {
	background: #5f452f;
	color: #fff;
}

@media (max-width: 768px) {
	.hero-section {
		padding: 130px 20px 70px;
		min-height: 380px;
	}

	.hero-title {
		font-size: 36px;
	}

	.hero-desc {
		font-size: 13px;
	}

	.video-wrapper {
		border-radius: 12px;
	}

	.play-btn {
		width: 50px;
		height: 50px;
		font-size: 18px;
	}
}

/* community page */
/* SECTION BG */
.audio-section {
	background: #f8f8f8;
}

/* TITLE */
.audio-title {
	font-size: 32px;
	font-weight: 500;
	margin-bottom: 5px;
}

.audio-subtitle {
	color: #888;
	font-size: 14px;
}

/* CARD */
.audio-card {
	background: #ebe7e3;
	padding: 20px;
	border-radius: 14px;
	position: relative;
	height: 130px;
	transition: 0.3s ease;
}

/* PLAY BUTTON */
.audio-card .play-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #7b5a3c;
	color: #fff;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
	padding: 0px;
	cursor: pointer;
}

/* 🔥 Sirf icon ka size bada */
.audio-card .play-btn .play-icon {
	width: 22px;
	/* increase this */
	height: 22px;
}

/* TITLE */
.audio-card h4 {
	font-size: 14px;
	margin: 0;
}

/* TIME */
.audio-card span {
	font-size: 12px;
	color: #777;
}

/* HOVER */
.audio-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* SECTION */
.endorsers-section {
	background: #f3f3f3;
}

/* TITLE */
.endorsers-title {
	font-size: 36px;
	font-weight: 500;
	color: #1a1a1a;
}

/* CARD */
.endorser-card {
	background: #fff;
	border-radius: 14px;
	padding: 22px;
	border: 1px solid #e8e8e8;
	height: 100%;
	transition: 0.3s ease;
}

/* IMAGE */
.endorser-img {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

/* NAME */
.endorser-top h4 {
	font-size: 15px;
	margin: 0;
	font-weight: 500;
}

/* ROLE */
.endorser-top span {
	font-size: 12px;
	color: #888;
}

/* QUOTE */
.endorser-quote {
	margin-top: 15px;
	font-size: 13px;
	color: #777;
	line-height: 1.7;
	font-style: italic;
}

/* HOVER */
.endorser-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* SECTION */
.blog-section {
	background: #f5f5f5;
}

/* SECTION */
.quote-section {
	position: relative;
	padding: 120px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}

/* DARK OVERLAY */
.quote-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.65);
}

/* CONTENT */
.quote-content {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: auto;
}

/* TEXT */
.quote-text {
	font-size: 28px;
	font-style: italic;
	color: #fff;
	line-height: 1.6;
	margin: 20px 0;
	font-weight: 400;
}

/* AUTHOR */
.quote-author {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 20px;
}

/* DECORATIVE LINE */
.quote-line {
	display: block;
	width: 40px;
	height: 2px;
	background: rgba(255, 255, 255, 0.6);
	margin: 0 auto;
}

/* SECTION */
.awards-section {
	background: #f3f3f3;
}

/* TITLE */
.awards-title {
	font-size: 30px;
	font-weight: 500;
	color: #1a1a1a;
}

/* CARD */
.award-card {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
	cursor: pointer;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.award-card img {
	width: 100%;
	height: 220px;
	object-fit: contain;
	display: block;
	transition: 0.4s ease;
}

/* OVERLAY */
.award-overlay {
	position: absolute;
	inset: 0;
	padding: 18px;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.75),
			rgba(0, 0, 0, 0.2),
			transparent);

	color: #fff;
}

/* TAG */
.award-tag {
	font-size: 10px;
	letter-spacing: 2px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 5px;
}

/* TITLE */
.award-overlay h4 {
	font-size: 15px;
	font-weight: 400;
	margin: 0;
}

/* HOVER EFFECT */
.award-card:hover img {
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.col-md-3 {
		width: 50%;
	}

	.endorsers-title {
		font-size: 26px;
	}

	.endorser-card {
		padding: 18px;
	}

	.endorser-top h4 {
		font-size: 14px;
	}

	.endorser-quote {
		font-size: 12px;
	}

	.quote-section {
		padding: 80px 20px;
	}

	.quote-text {
		font-size: 20px;
	}

	.quote-author {
		font-size: 12px;
	}
}

/* CARD */
.blog-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	transition: 0.3s ease;
}

/* IMAGE */
.blog-img img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

/* CONTENT */
.blog-content {
	padding: 20px;
}

/* DATE */
.blog-date {
	font-size: 11px;
	letter-spacing: 2px;
	color: #aaa;
	display: block;
	margin-bottom: 10px;
}

/* TITLE */
.blog-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}

.blog-title a {
	text-decoration: none;
	color: #333;
}

/* EXCERPT */
.blog-excerpt {
	font-size: 13px;
	color: #777;
	line-height: 1.6;
}

/* HOVER */
.blog-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* SECTION */
.featured-blog {
	background: #f5f5f5;
}

/* IMAGE */
.featured-img img {
	width: 100%;
	height: 420px;
	object-fit: cover;
	border-radius: 12px;
}

/* CONTENT */
.featured-content {
	padding: 20px 30px;
}

/* BADGE */
.featured-content .badge {
	font-size: 11px;
	letter-spacing: 2px;
	color: #999;
	display: block;
	margin-bottom: 10px;
}

/* DATE */
.featured-content .date {
	font-size: 12px;
	color: #bbb;
	display: block;
	margin-bottom: 10px;
}

/* TITLE */
.featured-content .title {
	font-size: 28px;
	font-weight: 500;
	margin-bottom: 10px;
}

/* EXCERPT */
.featured-content .excerpt {
	font-size: 14px;
	color: #777;
	margin-bottom: 20px;
}

/* LINK */
.read-more {
	text-decoration: none;
	color: #333;
	font-size: 14px;
	transition: 0.3s;
}

.read-more:hover {
	color: #7b5a3c;
}

@media (max-width: 768px) {
	.blog-img img {
		height: 180px;
	}
}

/* SECTION */
.podcast-section {
	background: #f2f2f2;
	padding: 80px 0;
}

/* CARD */
.podcast-card {
	max-width: 860px;
	margin: auto;
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* HEADER */
.podcast-header {
	padding: 28px;
	background: linear-gradient(135deg, #1c1c1c, #3a3a3a);
}

.podcast-cover {
	width: 90px;
	height: 90px;
	border-radius: 14px;
	object-fit: cover;
}

/* INFO */
.podcast-info {
	margin-left: 18px;
	color: #fff;
}

.podcast-label {
	font-size: 11px;
	letter-spacing: 3px;
	opacity: 0.7;
}

.podcast-title {
	font-size: 28px;
	font-weight: 500;
	margin: 6px 0;
}

.podcast-author {
	font-size: 14px;
	opacity: 0.7;
}

/* BODY */
.podcast-body {
	padding: 30px;
}

.episode-label {
	font-size: 11px;
	letter-spacing: 3px;
	color: #a48b6a;
}

.episode-title {
	font-size: 22px;
	margin: 10px 0;
}

.episode-desc {
	font-size: 15px;
	color: #888;
}

/* AUDIO ROW */
.audio-row {
	display: flex;
	gap: 18px;
	align-items: center;
	margin-top: 25px;
}

/* PLAY BUTTON */
.podcast-play-btn {
	width: 58px;
	height: 58px;
	background: #8b6b4a;
	border-radius: 50%;
	border: none;
	position: relative;
}

/* triangle */
.podcast-play-btn::before {
	content: "";
	position: absolute;
	left: 23px;
	top: 19px;
	border-left: 14px solid #fff;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

/* PROGRESS */
.progress-wrapper {
	flex: 1;
}

.progress-bar {
	height: 6px;
	background: #e5e5e5;
	border-radius: 10px;
	position: relative;
}

.progress-fill {
	width: 40%;
	height: 100%;
	background: #8b6b4a;
	border-radius: 10px;
}

/* TIME */
.time-row {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #aaa;
	margin-top: 6px;
}

/* FOOTER */
.podcast-footer {
	display: flex;
	padding: 20px 30px;
	border-top: 1px solid #eee;
	font-size: 13px;
	color: #999;
}

.podcast-footer a {
	margin-left: 12px;
	padding: 8px 14px;
	background: #f3f3f3;
	border-radius: 20px;
	text-decoration: none;
	color: #666;
	font-size: 13px;
}

/* SECTION */
.episodes-section {
	background: #f2f2f2;
	padding: 80px 0;
}

/* HEADING */
.episodes-heading {
	font-size: 36px;
	font-weight: 500;
	margin-bottom: 40px;
	color: #1a1a1a;
}

/* CARD */
.episode-card {
	display: flex;
	gap: 20px;
	padding: 24px 20px;
	border-top: 1px solid #e5e5e5;
	align-items: flex-start;
}

/* LAST BORDER ROUND EFFECT */
.episode-card:last-child {
	border-bottom: 1px solid #e5e5e5;
	border-radius: 0 0 14px 14px;
}

/* PLAY BUTTON */
.episode-play-btn {
	width: 48px;
	height: 48px;
	background: #8b6b4a;
	border-radius: 50%;
	border: none;
	position: relative;
	flex-shrink: 0;
}

/* TRIANGLE */
.episode-play-btn::before {
	content: "";
	position: absolute;
	left: 18px;
	top: 18px;
	border-left: 12px solid #fff;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
}

/* CONTENT */
.episode-content {
	flex: 1;
}

/* META */
.episode-meta {
	font-size: 11px;
	letter-spacing: 2px;
	color: #a48b6a;
	margin-bottom: 6px;
}

.ep-date {
	color: #bbb;
	margin-left: 10px;
}

/* TITLE */
.ep-title {
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 6px;
	color: #1a1a1a;
}

/* DESC */
.ep-desc {
	font-size: 14px;
	color: #888;
	line-height: 1.6;
}

/* HOVER */
.episode-card:hover {
	background: #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* SECTION */
.insights-section {
	background: #f3f3f3;
}

/* CARD */
.insight-card {
	background: #ffffff;
	padding: 28px;
	border-radius: 14px;
	border: 1px solid #e8e8e8;
	height: 100%;
	transition: 0.3s ease;
}

/* TAG */
.tag {
	font-size: 11px;
	letter-spacing: 3px;
	color: #a48b6a;
	position: relative;
	padding-left: 22px;
	display: inline-block;
	margin-bottom: 10px;
}

/* LINE */
.tag::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 14px;
	height: 2px;
	background: #a48b6a;
}

/* DARK VARIANT */
.tag.dark {
	color: #333;
}

.tag.dark::before {
	background: #333;
}

/* TITLE */
.insight-card h3 {
	font-size: 22px;
	margin-bottom: 10px;
	font-weight: 500;
	color: #1a1a1a;
}

/* TEXT */
.insight-card p {
	font-size: 14px;
	color: #777;
	line-height: 1.7;
}

/* HOVER */
.insight-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

/* MOBILE */
@media (max-width: 768px) {

	.insight-card {
		padding: 22px;
	}

	.insight-card h3 {
		font-size: 18px;
	}

	.insight-card p {
		font-size: 13px;
	}
}

/* TABLET */
@media (max-width: 992px) {
	.insight-card {
		padding: 24px;
	}
}

/* SECTION */
.featured-video-section {
	background: #fff;
	padding: 80px 0;
}

/* VIDEO BOX */
.video-box {
	position: relative;
	max-width: 1100px;
	margin: auto;
	border-radius: 18px;
	overflow: hidden;
	background: #d8d0c7;
	box-shadow: 0 25px 40px rgba(0, 0, 0, 0.08);
}

/* IFRAME */
.video-box iframe {
	width: 100%;
	height: 520px;
	border: none;
}

/* OVERLAY */
.video-overlay {
	position: absolute;
	inset: 0;
	background: rgba(216, 208, 199, 0.9);

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	text-align: center;
	transition: 0.3s ease;
}

/* PLAY BUTTON */
.play-circle {
	width: 90px;
	height: 90px;
	background: rgba(139, 107, 74, 0.25);
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	font-size: 28px;
	color: #8b6b4a;
	margin-bottom: 15px;
}

/* TEXT */
.video-title {
	font-size: 18px;
	color: #8b6b4a;
	margin: 0;
}

.video-sub {
	font-size: 13px;
	color: #aaa;
}

/* HOVER → hide overlay */
.video-box:hover .video-overlay {
	opacity: 0;
	pointer-events: none;
}

/* BUTTON */
.yt-btn {
	display: inline-block;
	background: #ff0000;
	color: #fff;
	padding: 14px 26px;
	border-radius: 30px;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
	transition: 0.3s ease;
}

.yt-btn:hover {
	background: #cc0000;
	color: #fff;
}

@media (max-width: 768px) {

	.video-box iframe {
		height: 280px;
	}

	.play-circle {
		width: 60px;
		height: 60px;
		font-size: 20px;
	}

	.video-title {
		font-size: 16px;
	}

	.yt-btn {
		padding: 12px 20px;
		font-size: 13px;
	}
}

/* SECTION */
.all-videos-section {
	background: #f3f3f3;
}

/* HEADING */
.videos-heading {
	font-size: 34px;
	font-weight: 500;
	color: #1a1a1a;
}

/* CARD */
.video-card {
	background: #ffffff;
	padding: 22px;
	border-radius: 14px;
	border: 1px solid #e8e8e8;
	gap: 16px;
	transition: 0.3s ease;
}

/* ICON */
.video-icon {
	width: 48px;
	height: 48px;
	background: #8b6b4a;
	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	flex-shrink: 0;
}

/* CONTENT */
.video-content h4 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 4px;
	color: #1a1a1a;
}

.video-content p {
	font-size: 13px;
	color: #888;
	margin-bottom: 6px;
}

.video-content span {
	font-size: 12px;
	color: #bbb;
}

/* HOVER */
.video-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* MOBILE */
@media (max-width: 768px) {

	.videos-heading {
		font-size: 26px;
	}

	.video-card {
		padding: 18px;
	}

	.video-content h4 {
		font-size: 15px;
	}

	.video-content p {
		font-size: 12px;
	}
}

/* SECTION */
.image-grid-section {
	padding: 50px 0;
}

/* CARD */
.grid-card {
	position: relative;
	height: 320px;
	overflow: hidden;
}

/* IMAGE */
.grid-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* OVERLAY */
.overlay {
	position: absolute;
	inset: 0;
	padding: 30px;

	display: flex;
	flex-direction: column;
	justify-content: flex-end;

	color: #fff;

	background: linear-gradient(to top,
			rgba(0, 0, 0, 0.7),
			rgba(0, 0, 0, 0.2),
			transparent);
}

/* LIGHT OVERLAY (bottom-left card) */
.overlay.light {
	background: linear-gradient(to top,
			rgba(255, 255, 255, 0.9),
			rgba(255, 255, 255, 0.4),
			transparent);

	color: #333;
}

/* TEXT */
.overlay small {
	font-size: 10px;
	letter-spacing: 3px;
	opacity: 0.8;
}

.overlay h3 {
	font-size: 22px;
	margin: 5px 0;
	font-weight: 500;
}

.overlay p {
	font-size: 13px;
	opacity: 0.9;
}

/* HOVER EFFECT */
.grid-card img {
	transition: 0.5s ease;
}

.grid-card:hover img {
	transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {

	.grid-card {
		height: 220px;
	}

	.overlay {
		padding: 20px;
	}

	.overlay h3 {
		font-size: 18px;
	}

	.overlay p {
		font-size: 12px;
	}
}

/* SECTION */
.book-cta-section {
	padding: 80px 0;
	position: relative;
	overflow: hidden;

	background: linear-gradient(180deg, #8B6C55 0%, #9D7C63 50%, #6D5443 100%);
}

/* SOFT CIRCLES (design effect) */
.book-cta-section::before,
.book-cta-section::after {
	content: "";
	position: absolute;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.08);
}

/* LEFT CIRCLE */
.book-cta-section::before {
	width: 200px;
	height: 200px;
	left: -60px;
	bottom: -60px;
}

/* RIGHT CIRCLE */
.book-cta-section::after {
	width: 260px;
	height: 260px;
	right: -80px;
	top: -80px;
}

/* WRAPPER */
.cta-wrapper {
	position: relative;
	z-index: 2;
}

/* LABEL */
.cta-label {
	font-size: 11px;
	letter-spacing: 3px;
	color: rgba(255, 255, 255, 0.6);
}

/* TITLE */
.cta-title {
	font-size: 40px;
	color: #fff;
	margin: 8px 0;
	font-weight: 500;
}

/* DESC */
.cta-desc {
	color: rgba(255, 255, 255, 0.75);
	font-size: 15px;
	max-width: 420px;
}

/* BUTTONS */
.cta-buttons {
	display: flex;
	gap: 12px;
}

/* PRIMARY BUTTON */
.btn-primary-cta {
	background: #fff;
	color: #6D5443;
	padding: 12px 22px;
	border-radius: 30px;
	font-size: 14px;
	text-decoration: none;
	box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
	transition: 0.3s;
}

/* SECONDARY BUTTON */
.btn-secondary-cta {
	border: 1px solid rgba(255, 255, 255, 0.5);
	color: #fff;
	padding: 12px 22px;
	border-radius: 30px;
	font-size: 14px;
	text-decoration: none;
	transition: 0.3s;
}

/* HOVER */
.btn-primary-cta:hover {
	background: #f5f5f5;
}

.btn-secondary-cta:hover {
	background: rgba(255, 255, 255, 0.1);
}

/* SECTION */
.books-section {
	background: #f3f3f3;
}

/* BOX */
.book-box {
	background: #ebe7e3;
	padding: 50px 40px;
	border-radius: 10px;
	height: 100%;
}

/* BADGE */
.badge-new {
	display: inline-block;
	background: #ded8d2;
	color: #8b6b4a;
	font-size: 11px;
	letter-spacing: 3px;
	padding: 10px 18px;
	border-radius: 30px;
	margin-bottom: 20px;
}

/* TITLE */
.book-title {
	font-size: 40px;
	font-weight: 500;
	color: #1a1a1a;
	margin-bottom: 15px;
}

/* DESC */
.book-desc {
	font-size: 14px;
	color: #6f6f6f;
	max-width: 500px;
	margin: 0 auto 25px;
	line-height: 1.7;
}

/* BUTTON WRAPPER */
.book-buttons {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
}

/* DARK BUTTON */
.btn-dark-custom {
	background: #1a1a1a;
	color: #fff;
	padding: 12px 22px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* LIGHT BUTTON */
.btn-light-custom {
	border: 1px solid #d6d0ca;
	color: #333;
	padding: 12px 22px;
	border-radius: 30px;
	text-decoration: none;
	font-size: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
}

/* ICON */
.icon {
	font-size: 14px;
}

/* HOVER */
.btn-dark-custom:hover {
	background: #000;
	color: #ffffff;
}

.icon-white {
	filter: brightness(0) invert(1);
}

.btn-light-custom:hover {
	background: #fff;
}

/* HERO BASE */
.video-hero {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	padding: 20px;
	background-color: transparent;
	margin: 0;
	margin-top: 80px;
}

/* VIDEO WRAPPER */
.video-hero__media {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translate(-50%, -50%);
}

/* FULL COVER IFRAME */
.video-hero__media iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	/* 16:9 ratio */
	height: 100%;
	transform: translate(-50%, -50%);
	/* pointer-events removed so the user can use YouTube's native controls
	   (play/pause, mute/unmute, fullscreen, etc.). */
}

@media (max-aspect-ratio: 16/9) {
	.video-hero__media iframe {
		width: 100%;
		height: 100%;
	}
}

/* ============================================================
   SINGLE POST — editorial layout
   ============================================================ */

.osh-single {
	background: #ffffff;
}

/* HERO with featured image */
.osh-single__hero {
	position: relative;
	min-height: 60vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	color: #ffffff;
	padding: 100px 0 80px;
	margin-top: 0;
}

.osh-single__hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.75) 100%);
	z-index: 1;
}

.osh-single__hero-inner {
	position: relative;
	z-index: 2;
}

/* HEADER (no image fallback) */
.osh-single__header {
	background: #f7f5f2;
	padding: 80px 0 60px;
	border-bottom: 1px solid #ece8e2;
}

/* BACK LINK */
.osh-single__back {
	display: inline-block;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
	margin-bottom: 24px;
	transition: opacity 0.2s ease;
}

.osh-single__back:hover {
	opacity: 0.6;
	color: #ffffff;
}

.osh-single__back--dark {
	color: #6b6b6b;
}

.osh-single__back--dark:hover {
	color: #2b2b2b;
	opacity: 1;
}

/* TITLE */
.osh-single__title {
	font-family: "Playfair Display", "Noto Serif", Georgia, serif;
	font-size: clamp(2rem, 5vw, 3.5rem);
	line-height: 1.15;
	font-weight: 600;
	margin: 0 0 20px;
	max-width: 800px;
	color: #ffffff;
}

.osh-single__title--dark {
	color: #1a1a1a;
}

/* META */
.osh-single__meta {
	font-size: 14px;
	letter-spacing: 0.05em;
	color: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}

.osh-single__meta--dark {
	color: #6b6b6b;
}

.osh-single__dot {
	opacity: 0.6;
}

/* ARTICLE BODY */
.osh-single__body {
	padding: 80px 0;
	background: #ffffff;
}

.osh-single__article {
	max-width: 720px;
	margin: 0 auto;
	font-family: "Source Sans Pro", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 1.125rem;
	line-height: 1.8;
	color: #2b2b2b;
}

.osh-single__article p {
	margin: 0 0 1.6em;
}

.osh-single__article p:first-of-type::first-letter {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 4.5em;
	line-height: 0.8;
	float: left;
	margin: 8px 12px 0 0;
	color: #d97706;
	font-weight: 600;
}

.osh-single__article h2,
.osh-single__article h3 {
	font-family: "Playfair Display", "Noto Serif", Georgia, serif;
	font-weight: 600;
	color: #1a1a1a;
	margin: 2.2em 0 0.8em;
	line-height: 1.25;
}

.osh-single__article h2 {
	font-size: 2rem;
}

.osh-single__article h3 {
	font-size: 1.5rem;
}

.osh-single__article blockquote {
	border-left: 4px solid #d97706;
	margin: 2em 0;
	padding: 0.5em 0 0.5em 1.5em;
	font-style: italic;
	font-size: 1.25rem;
	color: #4a4a4a;
}

.osh-single__article a {
	color: #d97706;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.osh-single__article img {
	max-width: 100%;
	height: auto;
	border-radius: 4px;
	margin: 1.5em 0;
}

.osh-single__article ul,
.osh-single__article ol {
	margin: 0 0 1.6em;
	padding-left: 1.5em;
}

.osh-single__article li {
	margin: 0.5em 0;
}

/* AUTHOR */
.osh-single__author-wrap {
	background: #f7f5f2;
	padding: 60px 0;
	border-top: 1px solid #ece8e2;
}

.osh-single__author {
	max-width: 720px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 32px;
}

.osh-single__author-img {
	flex: 0 0 100px;
}

.osh-single__author-img img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.osh-single__author-eyebrow {
	display: block;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #8a8a8a;
	margin-bottom: 6px;
}

.osh-single__author-name {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.5rem;
	margin: 0 0 8px;
	color: #1a1a1a;
}

.osh-single__author-bio {
	margin: 0;
	font-size: 0.95rem;
	color: #4a4a4a;
	line-height: 1.6;
}

/* RELATED */
.osh-single__related {
	background: #ffffff;
	padding: 80px 0 100px;
	border-top: 1px solid #ece8e2;
}

.osh-single__related-title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 2rem;
	margin: 0 0 40px;
	color: #1a1a1a;
	text-align: center;
}

.osh-related-card {
	background: #ffffff;
	border-radius: 6px;
	overflow: hidden;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.osh-related-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.osh-related-card__img {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #f0f0f0;
}

.osh-related-card__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.osh-related-card__body {
	padding: 22px;
}

.osh-related-card__date {
	display: block;
	font-size: 12px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #8a8a8a;
	margin-bottom: 10px;
}

.osh-related-card__title {
	font-family: "Playfair Display", Georgia, serif;
	font-size: 1.25rem;
	line-height: 1.3;
	margin: 0;
}

.osh-related-card__title a {
	color: #1a1a1a;
	text-decoration: none;
}

.osh-related-card__title a:hover {
	color: #d97706;
}

/* RESPONSIVE */
@media (max-width: 768px) {
	.osh-single__hero {
		min-height: 50vh;
		padding: 80px 0 50px;
	}

	.osh-single__title {
		font-size: 2rem;
	}

	.osh-single__body {
		padding: 50px 0;
	}

	.osh-single__article {
		font-size: 1rem;
	}

	.osh-single__article p:first-of-type::first-letter {
		font-size: 3.5em;
	}

	.osh-single__author {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.osh-single__related {
		padding: 50px 0 60px;
	}
}


/* ============================================================
   TIKTOK CALLOUT — Book Trailer page
   ============================================================ */
.tiktok-section {
    background: #f7f5f2;
    border-top: 1px solid #ece8e2;
}

.tiktok-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d97706;
    margin-bottom: 8px;
    font-weight: 700;
}

.tiktok-title {
    font-family: "Playfair Display", "Noto Serif", Georgia, serif;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.2;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.tiktok-sub {
    color: #6b6b6b;
    margin: 0 0 24px;
    font-size: 0.95rem;
}

.tiktok-wrapper {
    max-width: 605px;
}


/* ============================================================
   SINGLE OVERLOOK REFLECTION — meditation-detail layout
   ============================================================ */

/* Make the grid-card wrap an <a> tag without losing styling */
a.grid-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

a.grid-card:hover .overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.6) 100%);
}

.osh-overlook-single {
    background: #ffffff;
}

/* HERO */
.osh-overlook-single__hero {
    position: relative;
    min-height: 70vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    padding: 100px 0 80px;
}

.osh-overlook-single__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.80) 100%);
    z-index: 1;
}

.osh-overlook-single__hero-inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.osh-overlook-single__header {
    background: #f7f5f2;
    padding: 80px 0 60px;
    border-bottom: 1px solid #ece8e2;
    text-align: center;
}

/* BACK LINK */
.osh-overlook-single__back {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-bottom: 32px;
    transition: opacity 0.2s ease;
}

.osh-overlook-single__back:hover {
    opacity: 0.7;
    color: #ffffff;
}

.osh-overlook-single__back--dark {
    color: #6b6b6b;
}

.osh-overlook-single__back--dark:hover {
    color: #2b2b2b;
    opacity: 1;
}

/* EYEBROW */
.osh-overlook-single__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #d97706;
    margin-bottom: 16px;
}

.osh-overlook-single__eyebrow--dark {
    color: #d97706;
}

/* TITLE */
.osh-overlook-single__title {
    font-family: "Playfair Display", "Noto Serif", Georgia, serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    font-weight: 600;
    margin: 0 0 24px;
    color: #ffffff;
}

.osh-overlook-single__title--dark {
    color: #1a1a1a;
}

/* PULL QUOTE */
.osh-overlook-single__quote {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.25rem, 2.4vw, 1.6rem);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
    color: rgba(255,255,255,0.95);
    max-width: 600px;
}

.osh-overlook-single__quote--dark {
    color: #4a4a4a;
}

/* BODY */
.osh-overlook-single__body {
    padding: 100px 0;
    background: #ffffff;
}

.osh-overlook-single__article {
    max-width: 720px;
    margin: 0 auto;
    font-family: "Source Sans Pro", "Noto Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.15rem;
    line-height: 1.85;
    color: #2b2b2b;
}

.osh-overlook-single__article p {
    margin: 0 0 1.6em;
}

.osh-overlook-single__article p:first-of-type::first-letter {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 4.5em;
    line-height: 0.8;
    float: left;
    margin: 8px 12px 0 0;
    color: #d97706;
    font-weight: 600;
}

/* OTHER DIRECTIONS */
.osh-overlook-single__others {
    background: #f7f5f2;
    padding: 80px 0 100px;
    border-top: 1px solid #ece8e2;
}

.osh-overlook-single__others-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 2rem;
    text-align: center;
    margin: 0 0 40px;
    color: #1a1a1a;
}

.osh-overlook-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.osh-overlook-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

.osh-overlook-card__img {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f0f0f0;
}

.osh-overlook-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.osh-overlook-card__body {
    padding: 22px;
}

.osh-overlook-card__eyebrow {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #d97706;
    margin-bottom: 8px;
}

.osh-overlook-card__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.2;
    margin: 0;
    color: #1a1a1a;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .osh-overlook-single__hero {
        min-height: 55vh;
        padding: 80px 0 50px;
    }
    .osh-overlook-single__title {
        font-size: 2.25rem;
    }
    .osh-overlook-single__quote {
        font-size: 1.1rem;
    }
    .osh-overlook-single__body {
        padding: 60px 0;
    }
    .osh-overlook-single__article {
        font-size: 1rem;
    }
    .osh-overlook-single__article p:first-of-type::first-letter {
        font-size: 3.5em;
    }
}


/* ============================================================
   VIDEOS PAGE — channel video cards
   ============================================================ */
.all-videos-link {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #d97706;
    text-decoration: none;
    font-weight: 600;
}
.all-videos-link:hover {
    color: #b8590a;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.osh-video-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    border: 1px solid #ece8e2;
}

.osh-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
    color: inherit;
}

.osh-video-card__thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.osh-video-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.osh-video-card:hover .osh-video-card__thumb img {
    transform: scale(1.04);
}

.osh-video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(217, 119, 6, 0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, background 0.25s ease;
}

.osh-video-card__play svg {
    margin-left: 3px; /* visually center the play triangle */
}

.osh-video-card:hover .osh-video-card__play {
    transform: translate(-50%, -50%) scale(1.1);
    background: rgba(217, 119, 6, 1);
}

.osh-video-card__body {
    padding: 18px 20px 22px;
}

.osh-video-card__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0 0 8px;
    color: #1a1a1a;
}

.osh-video-card__meta {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a8a;
    font-weight: 600;
}


/* Cards in "Deepen the Conversation" are now <a> tags — keep the visual intact. */
a.osh-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
a.osh-card:hover,
a.osh-card:focus {
    text-decoration: none;
    color: inherit;
}
a.osh-card h4 {
    transition: color 0.2s ease;
}
a.osh-card:hover h4 {
    color: #d97706;
}


/* ============================================================
   REFLECTIONS — listing card as link
   ============================================================ */
a.insight-card {
    display: block;
    text-decoration: none;
    color: inherit;
}
a.insight-card:hover,
a.insight-card:focus {
    text-decoration: none;
    color: inherit;
}
a.insight-card h3 {
    transition: color 0.2s ease;
}
a.insight-card:hover h3 {
    color: #d97706;
}
.insight-pub {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a8a8a;
    font-weight: 600;
}


/* ============================================================
   SINGLE REFLECTION — editorial detail
   ============================================================ */
.osh-reflection-single { background: #ffffff; }

.osh-reflection-single__header {
    position: relative;
    background: #f7f5f2;
    background-size: cover;
    background-position: center;
    padding: 100px 0 70px;
    color: #1a1a1a;
    border-bottom: 1px solid #ece8e2;
}
.osh-reflection-single__header[style*="background-image"] {
    color: #ffffff;
    border-bottom: none;
    padding: 130px 0 90px;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
}
.osh-reflection-single__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}
.osh-reflection-single__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.osh-reflection-single__back {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: inherit;
    opacity: 0.8;
    text-decoration: none;
    margin-bottom: 24px;
}
.osh-reflection-single__back:hover { opacity: 1; color: inherit; }

.osh-reflection-single__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #d97706;
    margin-bottom: 14px;
    padding: 4px 12px;
    background: rgba(255,255,255,0.92);
    border-radius: 3px;
}
.osh-reflection-single__header[style*="background-image"] .osh-reflection-single__cat {
    background: #d97706;
    color: #ffffff;
}

.osh-reflection-single__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin: 0 0 18px;
    color: inherit;
}

.osh-reflection-single__meta {
    font-size: 14px;
    opacity: 0.85;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.osh-reflection-single__dot { opacity: 0.6; }

.osh-reflection-single__body { padding: 80px 0; background: #ffffff; }

.osh-reflection-single__article {
    max-width: 720px;
    margin: 0 auto;
    font-family: "Source Sans Pro", "Noto Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #2b2b2b;
}
.osh-reflection-single__article p { margin: 0 0 1.6em; }

.osh-reflection-single__article p:first-of-type::first-letter {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 4.5em;
    line-height: 0.8;
    float: left;
    margin: 8px 12px 0 0;
    color: #d97706;
    font-weight: 600;
}

.osh-reflection-single__external {
    margin-top: 3em;
    padding-top: 1.5em;
    border-top: 1px solid #ece8e2;
}
.osh-reflection-single__external a {
    color: #d97706;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
}
.osh-reflection-single__external a:hover { text-decoration: underline; text-underline-offset: 4px; }

/* OTHER REFLECTIONS */
.osh-reflection-single__others {
    background: #f7f5f2;
    padding: 70px 0 90px;
    border-top: 1px solid #ece8e2;
}
.osh-reflection-single__others-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.75rem;
    text-align: center;
    margin: 0 0 36px;
    color: #1a1a1a;
}
.osh-reflection-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #ffffff;
    border-radius: 6px;
    padding: 26px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
    border: 1px solid #ece8e2;
}
.osh-reflection-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.08);
    color: inherit;
}
.osh-reflection-card__cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #d97706;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.osh-reflection-card__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.25rem;
    margin: 0 0 8px;
    color: #1a1a1a;
}
.osh-reflection-card__excerpt {
    margin: 0;
    color: #6b6b6b;
    font-size: 0.93rem;
    line-height: 1.55;
}

@media (max-width: 768px) {
    .osh-reflection-single__header[style*="background-image"] { padding: 110px 0 60px; min-height: 40vh; }
    .osh-reflection-single__title { font-size: 2rem; }
    .osh-reflection-single__body { padding: 50px 0; }
    .osh-reflection-single__article { font-size: 1rem; }
    .osh-reflection-single__article p:first-of-type::first-letter { font-size: 3.5em; }
}


/* ============================================================
   MOBILE POLISH — comprehensive responsive fixes (≤768px)
   This block consolidates and overrides the various scattered
   mobile rules above. Anything in here wins via specificity +
   source order.
   ============================================================ */
@media (max-width: 768px) {

    /* HEADER — tighter on mobile */
    .site-header-custom {
        min-height: 64px;
        padding: 8px 0;
    }
    .site-header-custom > .container,
    .site-header-custom .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    body { padding-top: 64px; }
    .osh-mobile-menu .osh-logo-sticky img,
    .site-header-custom .osh-logo-sticky img {
        max-height: 36px;
        width: auto;
    }

    /* HOMEPAGE HERO — make it fit a phone screen */
    .hero-main {
        height: auto;
        min-height: 95vh;
        padding: 90px 16px 40px;
        margin-top: -64px; /* compensate for the new shorter fixed header */
    }
    .hero-img {
        object-fit: cover;
        object-position: center;
    }
    /* Reset the mobile rule that absolutely-positioned the books low; use
       natural flow inside the centered container instead. */
    .hero-books {
        position: static !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        margin: 0;
    }
    .hero-book-box {
        padding: 16px;
        margin-bottom: 12px;
    }
    .hero-book-box span {
        font-size: 11px;
        letter-spacing: 2px;
        padding: 6px 14px;
        margin-bottom: 12px;
    }
    .hero-book-box h5 {
        font-size: 18px;
        line-height: 1.25;
    }
    .scroll-icon { display: none; }

    /* Homepage YouTube video — give it a proper 16:9 instead of 100vh */
    .video-hero {
        height: auto !important;
        aspect-ratio: 16 / 9;
        margin-top: 32px;
        padding: 0;
    }

    /* BRAND INTRO ("OUR MISSION / Shared Humanity") + Author block */
    .osh-content-block {
        padding: 50px 16px;
    }
    .osh-content-block h2,
    .osh-content-block h3 {
        font-size: 1.6rem;
    }
    .osh-content-block .col-md-5,
    .osh-content-block .col-md-7,
    .osh-person-section .col-md-5,
    .osh-person-section .col-md-7 {
        padding-left: 0;
        padding-right: 0;
    }
    .osh-portrait img {
        max-height: 320px;
        width: 100%;
        object-fit: cover;
        border-radius: 6px;
    }
    .osh-person-section {
        padding: 50px 16px;
    }
    .osh-person-title {
        font-size: 1.6rem;
    }

    /* HOMEPAGE BOOK CTA — stack buttons, smaller titles */
    .books-section {
        padding: 40px 0;
    }
    .book-box {
        padding: 28px 22px;
    }
    .book-title {
        font-size: 1.5rem !important;
        line-height: 1.2;
    }
    .book-desc {
        font-size: 0.95rem;
    }
    .book-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .book-buttons a {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    /* "DEEPEN THE CONVERSATION" section — tighter padding */
    .osh-conversation {
        padding: 50px 16px;
    }
    .osh-conv-title {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }
    .osh-card { padding: 22px; }

    /* INNER PAGE HEROES (.hero-section) — smaller */
    .hero-section {
        padding: 110px 20px 50px;
        min-height: 320px;
    }
    .hero-title { font-size: 32px; line-height: 1.15; }
    .hero-desc { font-size: 14px; }
    .small-text { font-size: 11px; letter-spacing: 2px; }

    /* COMMUNITY VOICES — endorser cards */
    .endorsers-section { padding: 40px 16px; }
    .endorsers-title { font-size: 1.6rem; margin-bottom: 24px !important; }
    .endorser-card { padding: 20px; }
    .endorser-img { width: 56px; height: 56px; flex-shrink: 0; }
    .endorser-card h4 { font-size: 1.05rem; line-height: 1.3; }
    .endorser-card span { font-size: 0.85rem; line-height: 1.4; }
    .endorser-quote { font-size: 0.95rem; line-height: 1.55; }

    /* AUDIO + AWARDS sections on Community Voices */
    .audio-section { padding: 30px 16px; }
    .audio-title { font-size: 1.5rem; }
    .audio-card { padding: 18px; }

    .awards-section { padding: 30px 16px 50px; }
    .awards-title { font-size: 1.5rem; }
    .award-card { aspect-ratio: 16 / 10; }

    /* MOUNTAIN OVERLOOK 2x2 grid — full-width cards on mobile */
    .image-grid-section { padding: 24px 12px; }
    .grid-card { height: 220px; }
    .grid-card .overlay {
        padding: 18px;
    }
    .grid-card .overlay h3 { font-size: 1.4rem; }
    .grid-card .overlay p { font-size: 0.9rem; }

    /* SINGLE BLOG POST hero/body */
    .osh-single__hero { padding: 90px 20px 50px; min-height: 50vh; }
    .osh-single__title { font-size: 1.85rem; }
    .osh-single__body { padding: 40px 16px; }
    .osh-single__article { font-size: 1rem; line-height: 1.7; padding: 0; }
    .osh-single__author-wrap { padding: 40px 20px; }
    .osh-single__author { gap: 16px; }
    .osh-single__author-img { flex: 0 0 80px; }
    .osh-single__author-img img { width: 80px; height: 80px; }
    .osh-single__related { padding: 40px 16px 60px; }

    /* SINGLE OVERLOOK + SINGLE REFLECTION — same treatment */
    .osh-overlook-single__hero { padding: 90px 20px 50px; min-height: 45vh; }
    .osh-overlook-single__title { font-size: 1.9rem; }
    .osh-overlook-single__body { padding: 50px 16px; }
    .osh-overlook-single__article { font-size: 1rem; line-height: 1.7; }
    .osh-overlook-single__others { padding: 40px 16px 60px; }

    .osh-reflection-single__header { padding: 90px 20px 50px; }
    .osh-reflection-single__header[style*="background-image"] {
        padding: 100px 20px 50px;
    }
    .osh-reflection-single__title { font-size: 1.85rem; }
    .osh-reflection-single__body { padding: 40px 16px; }
    .osh-reflection-single__article { font-size: 1rem; line-height: 1.7; }
    .osh-reflection-single__others { padding: 40px 16px 60px; }

    /* BLOG / ESSAYS LISTING — Bolg page */
    .blog-section { padding: 30px 16px; }
    .blog-card { padding: 0; }
    .blog-content { padding: 18px; }
    .blog-title { font-size: 1.15rem; line-height: 1.3; }

    /* REFLECTIONS LISTING */
    .insights-section { padding: 30px 16px; }
    .insight-card { padding: 22px 20px; }
    .insight-card h3 { font-size: 1.35rem; }

    /* BOOK TRAILER PAGE */
    .video-section { padding: 30px 12px; }
    .tiktok-section { padding: 40px 16px; }
    .tiktok-title { font-size: 1.4rem; }

    /* VIDEOS PAGE */
    .featured-video-section { padding: 30px 12px 16px; }
    .yt-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    .all-videos-section { padding: 30px 16px; }
    .videos-heading { font-size: 1.5rem; }
    .osh-video-card__body { padding: 14px 16px 18px; }
    .osh-video-card__title { font-size: 1rem; }

    /* PODCAST PAGE */
    .featured-blog,
    .blog-section,
    .featured-video-section { padding-left: 16px; padding-right: 16px; }

    /* FOOTER */
    .site-footer-custom .container,
    footer.site-footer-custom .container { padding: 30px 16px; }
    .osh-footer-menu li a { font-size: 0.95rem; }
    .widget-title { font-size: 0.95rem; }
    /* Better column stacking on phones */
    .site-footer-custom .row > [class*="col-"] {
        margin-bottom: 28px;
    }

    /* GENERIC: prevent any element from breaking horizontal flow */
    .container, .container-fluid {
        max-width: 100%;
        overflow-x: hidden;
    }
    img, iframe, video { max-width: 100%; }
}

/* Even smaller — sub-400px phones */
@media (max-width: 400px) {
    .hero-title { font-size: 28px; }
    .hero-book-box h5 { font-size: 16px; }
    .book-title { font-size: 1.35rem !important; }
    .osh-single__title,
    .osh-overlook-single__title,
    .osh-reflection-single__title { font-size: 1.65rem; }
}
