/*
Theme Name: FábiánRéka
Theme URI: https://fabianreka.com/
Author: FábiánRéka
Author URI: https://fabianreka.com/
Description: Modern, fast WordPress theme for plant care content.
Requires at least: WordPress 5.0
Version: 2.0.0
License:
License URI:
Text Domain:
Tags:

*/

/* Brand Variables — Fábián Réka palette
   Primary: Paper Cream + Soft Ink (70%)
   Accents: Dusty Rose + Sage + Lavender Mist (25%)
   Highlights: Mustard Honey + Faded Denim (5%)
-------------------------------------------------------------- */
:root {
	/* PRIMARY NEUTRALS (70% — the foundation) */
	--cream: #F5EFE6;          /* Paper Cream — default canvas */
	--cream-deep: #EDE5D5;     /* Slightly deeper for sections */
	--warm-white: #FAF6EE;     /* Card backgrounds */
	--ink: #3D3530;            /* Soft Ink — body text, never pure black */
	--ink-soft: #5C5048;       /* Softer ink for secondary text */
	--ink-muted: #8A7D72;      /* Muted ink for meta/captions */

	/* BRAND ACCENTS (25% — the wardrobe) */
	--rose: #D4A5A0;           /* Dusty Rose — SIGNATURE color, headings, buttons */
	--rose-light: #EFD8D4;
	--rose-pale: #F7E8E5;      /* Backgrounds */
	--rose-dark: #B07F79;      /* Hover, accents */
	--rose-deep: #8C5F5A;      /* Strong text on light bg */

	--sage: #A8B5A0;           /* Sage — secondary accent for nature/garden */
	--sage-light: #D8DFD1;
	--sage-pale: #ECEFE6;
	--sage-dark: #7E8C75;

	--lavender: #C4B5C9;       /* Lavender Mist — emotional/contemplative */
	--lavender-light: #DDD2E0;
	--lavender-pale: #ECE4EE;
	--lavender-dark: #9B8AA0;

	/* HIGHLIGHT (5% — CTAs only) */
	--honey: #D4A04C;          /* Mustard Honey — primary CTA */
	--honey-light: #F0DCB0;
	--honey-pale: #FAF1DD;
	--honey-dark: #A87E2F;

	--denim: #7A8BA0;          /* Faded Denim — links, secondary buttons */
	--denim-light: #C9D2DC;
	--denim-pale: #E4E8ED;
	--denim-dark: #5C6D82;

	/* Text aliases */
	--text-primary: #3D3530;
	--text-secondary: #5C5048;
	--text-muted: #8A7D72;
	--charcoal: #3D3530;
	--forest: #3D3530;         /* Was dark green — now ink, so headings stay warm */

	/* Legacy aliases (kept so older selectors don't break) */
	--terracotta: #D4A04C;
	--terracotta-light: #F0DCB0;
	--sage-muted: #C0CBB8;
	--sand: #EDE5D5;
	--sand-dark: #DDD2BC;

	/* Borders — warm sandy tone */
	--border-light: #E5DDC9;
	--border-hover: #D0C5AA;

	/* Radii */
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--radius-pill: 100px;

	/* Shadows */
	--shadow-sm: 0 1px 3px rgba(61, 53, 48, 0.06);
	--shadow-md: 0 4px 12px rgba(61, 53, 48, 0.08);
	--shadow-lg: 0 8px 24px rgba(61, 53, 48, 0.1);
	--shadow-rose: 0 4px 16px rgba(212, 165, 160, 0.25);

	/* Typography */
	--font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
	--font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
	--font-accent: 'Caveat', 'Brush Script MT', cursive;

	--transition: 0.25s ease;
}

/* Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video
{ margin: 0; padding: 0; border: 0; vertical-align: baseline; font: inherit; font-size: 100%;}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block;}
html { margin: 0; padding: 0; font-size: 62.5%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; scroll-behavior: smooth;}
*, ::after, ::before { box-sizing: border-box; }
ol, ul { list-style: none;}
blockquote,q { quotes: none;}
blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none;}

/* Base
-------------------------------------------------------------- */
body, button, input, select {
	padding: 0; margin: 0;
	background: var(--cream);
	color: var(--text-primary);
	font-family: var(--font-body);
	line-height: 1.7;
	font-size: 18px;
	word-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Typography
-------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
	clear: both;
	margin: 0 0 16px 0;
	font-family: var(--font-display);
	font-weight: 500;
	color: var(--rose-deep);
	line-height: 1.2;
	letter-spacing: -0.01em;
}
h1 { font-size: 44px; font-weight: 600; }
h2 { font-size: 32px; margin-top: 40px; }
h3 { font-size: 24px; margin-top: 32px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }
img { max-width: 100%; height: auto; border-radius: var(--radius-md); }
hr { background-color: var(--border-light); border: 0; height: 1px; margin: 32px 0; }

p { margin-bottom: 20px; color: var(--text-primary); }
br { margin-bottom: 12px; display: block; content: " "; }
ul, ol { margin: 0 0 20px 24px; }
ul { list-style: disc; }
ol { list-style: decimal; }
ul ul, ol ol, ul ol, ol ul { margin-bottom: 0; margin-left: 20px; }
dt { font-weight: bold; }
dd { margin: 0 1.5em 1.5em; }
b, strong { font-weight: 600; }
dfn, cite, em, i { font-style: italic; }

blockquote {
	margin: 32px 0;
	padding: 24px 32px;
	background: var(--rose-light);
	border-left: 3px solid var(--rose);
	border-radius: 0 var(--radius-md) var(--radius-md) 0;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 22px;
	line-height: 1.5;
	color: var(--rose-dark);
}
blockquote p { margin: 0; padding: 0; }

code {
	background: var(--sand);
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 15px;
	font-family: 'SF Mono', 'Fira Code', monospace;
}

::-moz-selection { color: #fff; background: var(--rose); }
::selection { color: #fff; background: var(--rose); }

/* Links */
a {
	color: var(--rose);
	text-decoration: none;
	transition: color var(--transition);
}
a:hover, a:focus, a:active { color: var(--rose-dark); }

/* Forms */
input, select, textarea {
	font-size: 16px;
	overflow: auto;
	width: auto;
	margin: 0;
	vertical-align: baseline;
	font-family: inherit;
}
input, textarea {
	background: var(--warm-white);
	border: 1px solid var(--border-light);
	margin: 0 0 16px 0;
	padding: 10px 16px;
	border-radius: var(--radius-sm);
	width: 100%;
	transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
	outline: none;
	border-color: var(--rose);
	box-shadow: 0 0 0 3px rgba(212, 165, 160, 0.18);
}
textarea { padding: 12px 16px; vertical-align: top; }

/* Tables */
.table-wrapper { width: 100%; overflow-x: auto; }
table { background-color: transparent; border-collapse: collapse; border-spacing: 0; width: 100%; margin-bottom: 24px; }
table th { font-weight: 600; text-align: center; background: var(--rose-pale); color: var(--forest); padding: 12px 16px; }
table th, table td { padding: 12px 16px; line-height: 1.5; vertical-align: middle; border-bottom: 1px solid var(--border-light); text-align: center; }
table tbody tr:hover { background: var(--cream); }
table .even { background: var(--cream); }

/* Video */
.video-container { position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden; margin: 0 0 24px 0; border-radius: var(--radius-md); }
.video-container iframe, .video-container object, .video-container embed { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

#breadcrumbs {
	font-size: 14px;
	color: var(--text-muted);
	margin-bottom: 24px;
}
#breadcrumbs a { color: var(--rose); }
#breadcrumbs a:hover { color: var(--rose-dark); }

/* Layout
-------------------------------------------------------------- */
.container {
	max-width: 1200px;
	padding: 24px;
	margin: 0 auto;
	position: relative;
}
.single .container, .page .container {
	max-width: 800px;
	padding: 24px;
	margin: 0 auto;
	position: relative;
}
.row {
	display: flex;
	flex-direction: row;
	flex-flow: row wrap;
	gap: 0;
	justify-content: left;
}

/* Header
-------------------------------------------------------------- */
header {
	padding: 0;
	margin: 0 auto;
	background: var(--cream);
	border-bottom: 1px solid var(--border-light);
	position: sticky;
	top: 0;
	z-index: 100;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	background: rgba(245, 239, 230, 0.95);
}
header .container {
	max-width: 1200px !important;
	padding: 0 24px !important;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}
header #brand {
	display: flex;
	align-items: center;
	margin: 0;
}
header #brand img {
	width: 180px;
	height: 42px;
}

header nav {
	display: flex;
	align-items: center;
	margin: 0;
	position: relative;
	height: 64px;
	float: right;
}
header nav ul {
	text-align: center;
	list-style: none;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 4px;
}
header nav ul li {
	margin: 0;
	display: inline-block;
	padding: 0;
	position: relative;
	text-decoration: none;
}
header nav ul li a {
	color: var(--text-secondary);
	font-size: 15px;
	font-weight: 500;
	padding: 8px 14px;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}
header nav ul li a:hover {
	color: var(--rose-dark);
	background: var(--rose-pale);
}

/* Dropdown menus */
header nav ul li ul {
	z-index: 99;
	background: var(--warm-white);
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
	visibility: hidden;
	opacity: 0;
	position: absolute;
	left: 0;
	top: 110%;
	display: none;
	transition: all 0.3s ease;
	margin: 0;
	padding: 8px;
	min-width: 220px;
}
header nav ul li:hover > ul,
header nav ul li ul:hover {
	visibility: visible;
	opacity: 1;
	display: block;
}
header nav ul li ul li {
	clear: both;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: left;
}
header nav ul li ul li a {
	font-size: 14px;
	line-height: 1.4;
	display: block;
	color: var(--text-primary);
	padding: 8px 12px;
	border-radius: var(--radius-sm);
}
header nav ul li ul li a:hover {
	background: var(--rose-pale);
	color: var(--rose-dark);
}
header nav ul li ul ul {
	position: absolute;
	left: 100%;
	top: 0;
	margin: 0 0 0 8px;
}
header #brand a#logo { height:42px}

/* Home sections */
#home { text-align: center; color: var(--text-primary); padding: 48px 0; }
#home h1 { color: var(--forest); margin: 0 0 16px 0; font-size: 42px; line-height: 1.2; }
#home h2 { color: var(--text-secondary); margin: 0 0 32px 0; font-size: 20px; line-height: 1.5; font-weight: 400; font-family: var(--font-body); }
#home .button { display: inline; }
#home .button-a { min-width: 50px; margin: 0 8px 16px 8px; }
#home #searchform { width: 80%; max-width: 480px; margin: 0 auto 32px auto; border: none; }
#home #searchform input {
	border-radius: var(--radius-pill);
	outline: 0;
	padding: 14px 24px;
	border: 1px solid var(--border-light);
	background: var(--warm-white);
	font-size: 16px;
	box-shadow: var(--shadow-sm);
}
#home #searchform input:focus {
	border-color: var(--rose);
	box-shadow: 0 0 0 3px rgba(212, 165, 160, 0.18);
}

.category-title {
	text-align: center;
	font-family: var(--font-display);
	color: var(--forest);
}
.category-description {
	text-align: center;
	color: var(--text-secondary);
	margin-bottom: 24px;
}

/* Post cards (homepage grid)
-------------------------------------------------------------- */
.post-card {
	margin: 0;
	padding: 12px;
	position: relative;
}
.post-card .featured {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-md);
}
.post-card .featured img,
.featured img {
	border-radius: var(--radius-md);
	box-shadow: none;
	transition: transform 0.4s ease;
}
.post-card:hover .featured img {
	transform: scale(1.03);
}
article .post-card h3 {
	font-family: var(--font-body);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	margin: 12px 0 0 0;
	padding: 0;
	text-align: left;
	color: var(--text-primary);
	display: block;
	width: 100%;
	border-radius: 0;
}
article .post-card a { color: var(--text-primary); }
article .post-card a:hover { color: var(--rose); }

/* Single article
-------------------------------------------------------------- */
article { background: transparent; padding: 0; margin: 0; }
article.error { text-align: center; padding: 60px 0; width: 100%; }

article .title {
	font-family: var(--font-display);
	color: var(--forest);
	margin-bottom: 8px;
}
article h2.title {font-size:22px; line-height:26px; margin:0 }
article .title a { text-decoration: none; color: var(--forest); }
article .title a:hover { color: var(--rose); }
article .title span {
	color: var(--text-muted);
	font-size: 24px;
	vertical-align: middle;
	text-transform: uppercase;
	font-weight: 400;
}

article .post-meta {
	margin-bottom: 24px;
	font-size: 14px;
	line-height: 1.6;
	color: var(--text-muted);
}
article .post-meta a { color: var(--text-muted); text-decoration: none; }
article .post-meta a:hover { color: var(--rose); }

article .the-content { text-wrap: wrap; }
article .the-content a {
	color: var(--denim);
	text-decoration: underline;
	text-decoration-color: rgba(122, 139, 160, 0.35);
	text-underline-offset: 3px;
	transition: all var(--transition);
}
article .the-content a:hover {
	color: var(--rose-dark);
	text-decoration-color: var(--rose);
}
article .the-content img { height: auto; border-radius: var(--radius-md); }

.the-tags {
	margin: 32px 0 24px;
	padding-top: 24px;
	border-top: 1px solid var(--border-light);
	font-size: 14px;
	color: var(--text-muted);
}
.the-tags a {
	color: var(--rose);
	background: var(--rose-pale);
	padding: 4px 12px;
	border-radius: var(--radius-pill);
	font-size: 13px;
	font-weight: 500;
	margin-right: 4px;
	text-decoration: none;
}
.the-tags a:hover {
	background: var(--rose);
	color: white;
}

/* Author box */
.avatar { border-radius: 50%; }
.author {
	background: var(--cream);
	border: 1px solid var(--border-light);
	margin: 0 0 32px 0;
	padding: 24px;
	border-radius: var(--radius-md);
	font-size: 15px;
	line-height: 1.6;
	color: var(--text-secondary);
	min-height: 100px;
}
.author img {
	border-radius: 50%;
	float: left;
	margin: 0 20px 16px 0;
}

/* Recommended posts */
.recommended {}
.recommended ul { margin: 0; }
.recommended ul li { list-style: none; }
.reco {
	margin: 0;
	padding: 8px;
	position: relative;
}
.reco .featured { border-radius: var(--radius-md); overflow: hidden; }
.recommended .title,
article .reco .title {
	font-family: var(--font-body);
	font-size: 15px !important;
	line-height: 1.4 !important;
	font-weight: 500;
	margin-top: 8px;
}
article .reco a { color: var(--text-primary); }
article .reco a:hover { color: var(--rose); }

/* Pagination
-------------------------------------------------------------- */
.pagination { text-align: center; margin: 32px 0; }
.pagination li { display: inline-block; }
.pagination li a,
.pagination li a:hover,
.pagination li.active a,
.pagination li.disabled {
	color: var(--text-secondary);
	text-decoration: none;
	background-color: var(--warm-white);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-sm);
	cursor: pointer;
	padding: 8px 14px;
	font-size: 14px;
	font-weight: 500;
	margin: 0 2px;
	transition: all var(--transition);
}
.pagination li a:hover,
.pagination li.active a {
	background-color: var(--rose);
	border-color: var(--rose);
	color: white;
}

/* Comments
-------------------------------------------------------------- */
.comment-form label { display: inline-block; width: 80px; font-size: 14px; color: var(--text-secondary); }
.commentlist { list-style: none; margin: 0; }
.commentlist .comment {
	margin: 0 0 24px 0;
	padding: 20px;
	position: relative;
	list-style: none;
	background: var(--cream);
	border: 1px solid var(--border-light);
	border-radius: var(--radius-md);
}
.commentlist .comment .children { margin-top: 24px; }
.commentlist .comment-author { float: left; margin-right: 10px; }
.commentlist .comment-author img { position: absolute; left: -50px; top: 5px; }
.commentlist .comment-author .says { display: none; }
.comment-meta { font-size: 13px; margin-bottom: 10px; clear: both; line-height: 1.6; color: var(--text-muted); }
.comment-meta img.avatar { float: left; margin: 0 12px 0 0; }
.comment-meta .fn { font-size: 16px; font-weight: 600; font-style: normal; color: var(--text-primary); }
.comment-meta .reply { position: absolute; bottom: 12px; right: 20px; font-size: 13px; }
.comment-meta .reply a { color: var(--rose); font-weight: 500; }
.comment-meta .comment-date { float: right; font-size: 13px; }
.comment-meta .comment-date a { color: var(--text-muted); }
.comment-subscription-form { margin-bottom: 0; font-size: 13px; }
#respond { margin-bottom: 32px; width: 100%; position: relative; }
#respond #cancel-comment-reply-link { position: absolute; top: 0; right: 20px; font-size: 13px; color: var(--terracotta); }

/* Search */
#searchform input[type=text] { padding: 10px 16px; line-height: 1.5; }

/* Footer
-------------------------------------------------------------- */
footer {
	text-align: center;
	padding: 40px 0;
	background: var(--forest);
	color: rgba(255, 255, 255, 0.5);
	font-size: 14px;
}
footer a { color: rgba(255, 255, 255, 0.7); }
footer a:hover { color: white; }
footer nav { display: block; margin: 16px 0; }
footer nav ul { text-align: center; list-style: none; margin: 0; }
footer nav ul li { margin: 0 8px; display: inline; }
footer nav ul li a {
	color: rgba(255, 255, 255, 0.7);
	font-weight: 500;
	font-size: 14px;
	padding: 4px 8px;
	border-radius: var(--radius-sm);
	transition: all var(--transition);
}
footer nav ul li a:hover { color: white; background: rgba(255, 255, 255, 0.1); }
.footer-widget { color: rgba(255, 255, 255, 0.4); font-size: 13px; margin-top: 16px; }
.footer-widget a { color: rgba(255, 255, 255, 0.5); }
.footer-widget p {color: rgba(255,255,255,.35);}
/* Disclosure */
.disclosure {
	font-size: 13px;
	font-style: italic;
	text-align: center;
	color: var(--text-muted);
	background: var(--cream);
	border-bottom: 1px solid var(--border-light);
}
.disclosure a { color: var(--text-muted); }
.disclosure p { padding: 8px 16px; margin: 0; }

/* Search toggle in nav */
#search-form { position: relative; display: inline-flex; align-items: center; width: 24px; height: 24px; }
#search-form .search-form { position: absolute; right: -15px; top: -5px; }
#search-form .search-field {
	background-color: var(--sand);
	background-image: url(search.svg);
	background-position: 10px center;
	background-repeat: no-repeat;
	background-size: 18px 18px;
	border: 1px solid transparent;
	cursor: pointer;
	height: 36px;
	margin: 0;
	padding: 0 0 0 34px;
	border-radius: var(--radius-pill);
	position: relative;
	transition: width 400ms ease, background 400ms ease, border-color 300ms ease;
	width: 0;
	font-size: 14px;
	color: var(--text-primary);
}
#search-form .search-field:focus {
	background-color: var(--warm-white);
	border: 1px solid var(--rose);
	cursor: text;
	color: var(--text-primary);
	outline: 0;
	width: 220px;
	box-shadow: 0 0 0 3px rgba(212, 165, 160, 0.18);
}
#search-form .search-form .search-submit { display: none; }
#search-form input[type="search"]::-webkit-input-placeholder { color: var(--text-muted) !important; }

/* Buttons */
.button-a, .button-name {
	background: var(--rose);
	color: #fff;
	display: block;
	text-align: center;
	border-radius: var(--radius-sm);
	font-size: 16px;
	line-height: 1.4;
	margin: 12px 0 0 0;
	padding: 14px 24px;
	text-decoration: none !important;
	min-width: 200px;
	position: relative;
	font-weight: 600;
	transition: all var(--transition);
}
.button-a:hover {
	background: var(--rose-dark) !important;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: var(--shadow-md);
}
.button { display: block; text-align: center; margin: 24px auto; }
.button .button-a { margin: 0; display: inline-block; }
table .button { display: inline-block; }
table .button-a { min-width: inherit; font-size: 14px; line-height: 1.4; padding: 10px 20px; }

/* Pros & Cons */
.pros-cons { margin: 24px 0; }
.pros h3 {
	text-align: center;
	background: var(--rose-pale);
	color: var(--rose-dark);
	padding: 10px 0;
	font-size: 18px;
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.cons h3 {
	text-align: center;
	background: var(--terracotta-light);
	color: var(--terracotta);
	padding: 10px 0;
	font-size: 18px;
	border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

/* Amazon links & product boxes */
.amazon-link, a.amazonn, a.sag {
	width: 250px;
	min-height: 220px;
	text-align: center;
	float: right;
	background: none;
	position: relative;
	margin: 0 0 32px 24px;
}
.amazon-link .alignright, a.amazonn .alignright, a.sag .alignright { float: none; }
.amazon-image, img.amazonn, img.sag { max-width: 250px; border: 0px; margin: 0 auto !important; }
.amazon-link span, a.amazonn span, a.sag span {
	width: 230px;
	color: #FFFFFF;
	background: var(--rose);
	padding: 10px;
	position: absolute;
	bottom: -40px;
	left: 0;
	font-weight: 600;
	border-radius: var(--radius-sm);
	font-size: 14px;
}
.amazon-link:hover span, a.amazonn:hover span, a.sag:hover span { background: var(--rose-dark); }

a.azon { width: 250px; min-height: 220px; text-align: center; float: right; background: none; position: relative; margin: 0 0 32px 24px; }
a.azon .alignright { float: none; }
img.azon { max-width: 250px; border: 0px; margin: 0 auto !important; }
a.azon span {
	width: 210px;
	background: var(--terracotta);
	color: #fff;
	border-radius: var(--radius-sm);
	padding: 10px;
	position: absolute;
	bottom: -50px;
	left: 50%;
	margin-left: -115px;
	font-weight: 600;
	font-size: 14px;
}
a.azon:hover span { background: var(--rose); }

.related { text-align: center; font-weight: 600; }

/* WordPress defaults */
.wp-caption, .gallery-caption { color: var(--text-muted); font-size: 13px; font-style: italic; max-width: 100%; text-align: center; }
.wp-caption img[class*="wp-image-"] { display: block; margin-left: auto; margin-right: auto; }
.wp-caption .wp-caption-text { margin: 8px 0; }
.wp-caption.aligncenter { width: 100% !important; }
.wp-caption.aligncenter img { width: 100% !important; }

/* Misc */
.clear { clear: both; }
.clearfix:after { content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0; }
.clearfix { display: inline-block; }
html[xmlns] .clearfix { display: block; }
* html .clearfix { height: 1%; }
.alignleft { display: inline; float: left; margin-right: 20px; }
.alignright { display: inline; float: right; margin-left: 20px; }
.aligncenter { clear: both; display: block; margin: 0 auto; }

/* Page */
.page article { border-bottom: none; }
.page article .title { margin-bottom: 32px; }

/* Media Queries
-------------------------------------------------------------- */
@media (min-width: 768px) {
	.col-3 { flex: 0 0 33.333333%; flex-basis: 33.333333%; max-width: 33.333333%; margin: 0; }
	.col-6 { flex: 0 0 50%; flex-basis: 50%; max-width: 50%; margin: 0; }
}

@media (max-width: 767px) {
	body { font-size: 17px; }
	h1 { font-size: 28px; line-height: 1.3; }
	h2 { font-size: 24px; }
	h3 { font-size: 20px; }

	header .container {
		height: auto;
		flex-wrap: wrap;
		padding: 12px 16px !important;
		gap: 8px;
	}
	header #brand { display: block; text-align: center; width: 100%; height:42px }
	header nav {
		display: block;
		margin: 0;
		position: relative;
		height: auto;
		float: none;
		width: 100%;
	}
	header nav ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0;
	}
	header nav ul li a {
		font-size: 14px;
		padding: 6px 10px;
	}

	#search-form { display: block; }
	#search-form .search-form { position: relative; left: 0; top: 0; }
	#search-form .search-field { width: 100%; padding-left: 36px; }
	#search-form .search-field:focus { width: 100%; }

	#home h1 { font-size: 28px; line-height: 1.3; }
	#home h2 { font-size: 18px; line-height: 1.5; }
	#home { padding: 24px 0; }
	#home #searchform { width: 90%; margin-bottom: 0px; }

	.container { padding: 16px; }

	.reco { padding: 8px 0 !important; }
	.disclosure p { line-height: 1.4; }
	.alignleft, .alignright { display: inline; float: none; margin: 0; }

	article .post-card h2 { font-size: 15px; }
}

@media (max-width: 480px) {
	.amazon-link, a.amazonn, a.sag, a.azon {
		float: none;
		margin: 0 auto 40px auto;
		display: block;
		clear: both;
	}
	article .post-card h2 { font-size: 14px; line-height: 1.35; }
}

/* ==========================================================================
   NEW LAYOUT SECTIONS
   ========================================================================== */

/* Mobile hamburger menu
-------------------------------------------------------------- */
.mobile-menu-toggle {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
	flex-direction: column;
	gap: 5px;
	z-index: 101;
}
.mobile-menu-toggle span {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--text-primary);
	border-radius: 2px;
	transition: all 0.3s ease;
}
.menu-open .mobile-menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-open .mobile-menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .mobile-menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 767px) {
	.mobile-menu-toggle { display: flex; }
	header .container { flex-wrap: nowrap; }
	header #brand { width: auto; text-align: left; }
	header nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--warm-white);
		border-bottom: 1px solid var(--border-light);
		box-shadow: var(--shadow-md);
		height: auto;
		padding: 8px 0;
		z-index: 100;
	}
	.menu-open nav { display: block !important; }
	header nav ul { flex-direction: column; align-items: stretch; gap: 0; }
	header nav ul li { display: block; margin: 0; }
	header nav ul li a {
		display: block;
		padding: 12px 24px;
		font-size: 16px;
		border-radius: 0;
	}
	header nav ul li a:hover { background: var(--rose-pale); }
	header nav ul li ul {
		position: static;
		box-shadow: none;
		border: none;
		border-radius: 0;
		margin: 0;
		padding: 0 0 0 16px;
		min-width: auto;
		visibility: visible;
		opacity: 1;
		display: block;
		background: var(--cream);
	}
	header nav ul li ul li a { padding: 10px 24px; font-size: 15px; }
	#search-form { display: block; padding: 8px 24px; }
	#search-form .search-form { position: static; }
	#search-form .search-field { width: 100% !important; background-color: var(--sand); }
	#search-form .search-field:focus { width: 100% !important; }
}

/* Hero Section
-------------------------------------------------------------- */
.hero {
	background:
		radial-gradient(circle at 20% 30%, rgba(212, 165, 160, 0.40) 0%, transparent 55%),
		radial-gradient(circle at 80% 70%, rgba(196, 181, 201, 0.30) 0%, transparent 55%),
		linear-gradient(135deg, var(--rose-pale) 0%, var(--cream) 45%, var(--lavender-pale) 100%);
	padding: 80px 0;
	position: relative;
	overflow: hidden;
}
.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.3 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
	opacity: 0.4;
	pointer-events: none;
	mix-blend-mode: multiply;
}
.hero::after {
	content: '';
	position: absolute;
	right: -40px;
	top: -40px;
	width: 280px;
	height: 280px;
	background-image: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
	opacity: 0.25;
	pointer-events: none;
	border-radius: 50%;
}

.hero .container { position: relative; z-index: 2; }

.hero-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 64px;
	align-items: center;
}

.hero-content { max-width: 580px; }
.hero-label {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	color: var(--rose-dark);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 16px;
}
.hero h1 {
	font-family: var(--font-display);
	font-size: 52px;
	font-weight: 500;
	line-height: 1.1;
	color: var(--forest);
	margin-bottom: 20px;
	letter-spacing: -0.015em;
}
.hero h1 em, .hero h1 i {
	font-style: italic;
	color: var(--rose-dark);
	font-weight: 400;
}
.hero p {
	font-family: var(--font-body);
	font-size: 17px;
	color: var(--text-secondary);
	line-height: 1.7;
	margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero author photo */
.hero-image {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	position: relative;
}
.hero-image-frame {
	position: relative;
	width: 100%;
	max-width: 380px;
	aspect-ratio: 4 / 5;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: linear-gradient(135deg, var(--sand) 0%, var(--rose-light) 100%);
	box-shadow:
		0 20px 60px rgba(61, 53, 48, 0.15),
		0 0 0 8px rgba(255, 255, 255, 0.6),
		0 0 0 9px var(--border-light);
	transform: rotate(-1.5deg);
	transition: transform 0.4s ease;
}
.hero-image-frame:hover { transform: rotate(0deg) scale(1.02); }

.hero-image-frame img.hero-author-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

/* Placeholder text — visible only when no image is loaded */
.hero-image-placeholder-text {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 18px;
	color: var(--rose-dark);
	text-align: center;
	padding: 24px;
	pointer-events: none;
}
.hero-image-frame--placeholder .hero-image-placeholder-text { display: flex; }
.hero-image-frame--placeholder::before {
	content: '';
	position: absolute;
	inset: 12px;
	border: 2px dashed var(--rose);
	border-radius: var(--radius-md);
	opacity: 0.5;
}

.hero-image-caption {
	font-family: var(--font-accent);
	font-size: 24px;
	color: var(--rose-dark);
	transform: rotate(-2deg);
	margin-top: 4px;
}

@media (max-width: 900px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	.hero-content { max-width: 100%; margin: 0 auto; }
	.hero-actions { justify-content: center; }
	.hero-image-frame { max-width: 320px; }
}

@media (max-width: 767px) {
	.hero { padding: 48px 0; }
	.hero h1 { font-size: 36px; }
	.hero p { font-size: 16px; }
	.hero-image-frame { max-width: 280px; }
	.hero::after { width: 180px; height: 180px; right: -30px; top: -30px; }
}

/* Buttons
-------------------------------------------------------------- */
.btn {
	display: inline-block;
	padding: 14px 32px;
	border-radius: var(--radius-pill);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	transition: all var(--transition);
	border: none;
	line-height: 1.4;
}
.btn-primary {
	background: var(--rose);
	color: white;
	box-shadow: 0 2px 8px rgba(212, 165, 160, 0.35);
}
.btn-primary:hover {
	background: var(--rose-dark);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(176, 127, 121, 0.4);
}
.btn-outline {
	background: transparent;
	color: var(--rose-dark);
	border: 1.5px solid var(--rose);
}
.btn-outline:hover {
	background: var(--rose-pale);
	color: var(--rose-dark);
	border-color: var(--rose-dark);
}
.btn-accent {
	background: var(--honey);
	color: var(--ink);
	box-shadow: 0 2px 8px rgba(212, 160, 76, 0.3);
}
.btn-accent:hover {
	background: var(--honey-dark);
	color: white;
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(212, 160, 76, 0.4);
}

/* Section titles
-------------------------------------------------------------- */
.section-title {
	font-family: var(--font-display);
	font-size: 32px;
	font-weight: 500;
	color: var(--rose-deep);
	margin: 0 0 24px 0;
	letter-spacing: -0.01em;
}
.section-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 24px;
}
.section-header .section-title { margin-bottom: 0; }
.section-link {
	font-size: 13px;
	font-weight: 700;
	color: var(--rose-dark);
	letter-spacing: 0.05em;
	text-transform: uppercase;
}
.section-link:hover { color: var(--rose-dark); }
.section-cta { text-align: center; margin-top: 32px; }

/* Category Grid
-------------------------------------------------------------- */
.section-categories { padding: 64px 0; }

.category-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
.category-card {
	display: flex;
	flex-direction: column;
	padding: 24px;
	border-radius: var(--radius-md);
	background: var(--warm-white);
	border: 1px solid var(--border-light);
	text-decoration: none;
	transition: all var(--transition);
}
.category-card:hover {
	border-color: var(--rose-light);
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}
.category-card--featured {
	background: var(--sage-pale);
	border-color: var(--sage);
}
.category-icon { font-size: 28px; margin-bottom: 12px; }
.category-icon img {border-radius:0;}
.category-name h3 {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 22px;
	color: var(--forest);
	margin: 0 0 6px 0;
}
.category-desc {
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--text-secondary);
	line-height: 1.5;
	margin-bottom: 12px;
}
.category-count {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	color: var(--rose-dark);
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.category-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.category-grid { grid-template-columns: 1fr; }
}

/* Popular Posts Grid
-------------------------------------------------------------- */
.section-popular { padding: 0 0 48px; }

.popular-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.popular-card {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 16px;
	border-radius: var(--radius-md);
	background: var(--warm-white);
	border: 1px solid var(--border-light);
	text-decoration: none;
	transition: all var(--transition);
}
.popular-card:hover {
	border-color: var(--rose-light);
	box-shadow: var(--shadow-sm);
}
.popular-thumb {
	width: 64px;
	height: 64px;
	border-radius: var(--radius-sm);
	overflow: hidden;
	flex-shrink: 0;
	background: var(--rose-pale);
}
.popular-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: var(--radius-sm);
}
.popular-info { flex: 1; min-width: 0; }
.popular-title {
	display: block;
	font-weight: 500;
	font-size: 14px;
	line-height: 1.4;
	color: var(--text-primary);
	margin-bottom: 6px;
}
.popular-title h3 {	font-size: 14px;line-height: 1.4; margin:0}
.popular-meta { display: flex; gap: 8px; align-items: center; }
.popular-cat {
	font-size: 11px;
	font-weight: 500;
	color: var(--rose-dark);
	background: var(--rose-pale);
	padding: 2px 10px;
	border-radius: var(--radius-pill);
}

@media (max-width: 767px) {
	.popular-grid { grid-template-columns: 1fr; }
}

/* Latest Articles Section
-------------------------------------------------------------- */
.section-latest {
	padding: 64px 0;
	background: linear-gradient(180deg, var(--lavender-pale) 0%, var(--cream) 100%);
	border-top: 1px solid var(--border-light);
}

/* Post card body (category tag + title under image) */
.post-card-body { padding: 4px 0 0 0; }
.post-card-cat {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	color: var(--honey-dark);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

/* Newsletter CTA
-------------------------------------------------------------- */
.newsletter-section {
	padding: 72px 0;
	background: var(--forest);
	background-image:
		radial-gradient(circle at 30% 20%, rgba(212, 165, 160, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 70% 80%, rgba(196, 181, 201, 0.06) 0%, transparent 50%),
		var(--forest);
	text-align: center;
}
.newsletter-section h2 {
	font-family: var(--font-display);
	font-size: 36px;
	font-weight: 500;
	color: var(--cream);
	margin: 0 0 12px;
	letter-spacing: -0.01em;
}
.newsletter-section p {
	font-family: var(--font-body);
	font-size: 16px;
	color: rgba(245, 239, 230, 0.65);
	margin: 0 0 28px;
}
.newsletter-form {
	display: flex;
	gap: 8px;
	max-width: 480px;
	margin: 0 auto;
}
.newsletter-form input {
	flex: 1;
	padding: 14px 22px;
	border-radius: var(--radius-pill);
	background: rgba(245, 239, 230, 0.08);
	border: 1px solid rgba(245, 239, 230, 0.2);
	color: var(--cream);
	font-family: var(--font-body);
	font-size: 15px;
	margin: 0;
}
.newsletter-form input::placeholder { color: rgba(245, 239, 230, 0.4); }
.newsletter-form input:focus {
	outline: none;
	border-color: var(--honey);
	box-shadow: 0 0 0 3px rgba(212, 160, 76, 0.15);
	background: rgba(245, 239, 230, 0.12);
}
.newsletter-form .btn { white-space: nowrap; padding: 14px 28px; }

@media (max-width: 480px) {
	.newsletter-form { flex-direction: column; }
	.newsletter-form input { width: 100%; }
	.newsletter-section h2 { font-size: 28px; }
}

/* Single Post Enhancements
-------------------------------------------------------------- */
.single-post {}

.breadcrumbs {
	font-size: 13px;
	color: var(--text-muted);
	margin-bottom: 16px;
}
.breadcrumbs a {
	color: var(--rose);
	text-decoration: none;
}
.breadcrumbs a:hover { color: var(--rose-dark); }

.post-meta-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--border-light);
}
.post-meta-left {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--text-secondary);
}
.post-meta-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	object-fit: cover;
}
.post-meta-author { font-weight: 500; color: var(--text-primary); }
.post-meta-sep { color: var(--text-muted); }
.post-meta-date { color: var(--text-muted); }
.post-meta-right { display: flex; gap: 6px; }
.post-meta-tag {
	font-size: 12px;
	font-weight: 500;
	color: var(--rose-dark);
	background: var(--rose-pale);
	padding: 4px 12px;
	border-radius: var(--radius-pill);
	text-decoration: none;
	transition: all var(--transition);
}
.post-meta-tag:hover {
	background: var(--rose);
	color: white;
}

.single-featured-image {
	margin-bottom: 32px;
	border-radius: var(--radius-lg);
	overflow: hidden;
}
.single-featured-image img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-lg);
}

/* Author box enhanced */
.author {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.author img.avatar {
	flex-shrink: 0;
	float: none;
	margin: 0;
}
.author-info { flex: 1; }
.author-name {
	display: block;
	font-size: 16px;
	color: var(--text-primary);
	margin-bottom: 4px;
}
.author-bio {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

/* Recommended section */
.recommended { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--border-light); }

/* Footer enhanced
-------------------------------------------------------------- */
.footer-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 32px;
	text-align: left;
	padding-bottom: 24px;
	border-bottom: 1px solid rgba(255,255,255,0.08);
	margin-bottom: 20px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 18px;
	color: white;
}
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 40px; }
.footer-col {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
}
.footer-col strong {
	font-weight: 600;
	color: rgba(255,255,255,0.7);
	margin-bottom: 4px;
	font-size: 13px;
}
.footer-col a {
	color: rgba(255,255,255,0.5);
	text-decoration: none;
	transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
	font-size: 13px;
	color: rgba(255,255,255,0.35);
	text-align: center;
}

@media (max-width: 767px) {
	.footer-top { flex-direction: column; text-align: center; align-items: center; }
	.footer-links { gap: 24px; }
	.footer-col { align-items: center; }
}

/* Book Feature Section
-------------------------------------------------------------- */
.book-feature {
	padding: 88px 0;
	background:
		radial-gradient(circle at 85% 20%, rgba(212, 165, 160, 0.18) 0%, transparent 50%),
		radial-gradient(circle at 15% 80%, rgba(196, 181, 201, 0.15) 0%, transparent 50%),
		var(--cream);
	position: relative;
	overflow: hidden;
}
.book-feature::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--border-light) 50%, transparent 100%);
}
.book-feature::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--border-light) 50%, transparent 100%);
}

.book-feature-grid {
	display: grid;
	grid-template-columns: 1fr 1.3fr;
	gap: 72px;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* Book cover */
.book-feature-image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.book-cover-frame {
	position: relative;
	width: 100%;
	max-width: 340px;
	aspect-ratio: 2 / 3;
	border-radius: 4px;
	overflow: hidden;
	background: linear-gradient(135deg, var(--rose-pale) 0%, var(--lavender-pale) 100%);
	box-shadow:
		0 30px 60px rgba(61, 53, 48, 0.20),
		0 12px 24px rgba(61, 53, 48, 0.12),
		-12px 0 0 -6px var(--rose-light),
		-12px 0 24px -8px rgba(61, 53, 48, 0.15);
	transform: rotate(-2deg);
	transition: transform 0.5s ease;
	z-index: 2;
}
.book-cover-frame:hover {
	transform: rotate(0deg) scale(1.03);
}
.book-cover-frame img.book-cover-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 0;
}

/* Placeholder state (when no cover image) */
.book-cover-placeholder-text {
	position: absolute;
	inset: 0;
	display: none;
	align-items: center;
	justify-content: center;
	font-family: var(--font-display);
	font-style: italic;
	font-size: 20px;
	line-height: 1.3;
	color: var(--rose-dark);
	text-align: center;
	padding: 24px;
	pointer-events: none;
}
.book-cover-frame--placeholder .book-cover-placeholder-text { display: flex; }
.book-cover-frame--placeholder::before {
	content: '';
	position: absolute;
	inset: 16px;
	border: 2px dashed var(--rose);
	border-radius: 4px;
	opacity: 0.6;
}

/* Decorative element behind the book */
.book-feature-decoration {
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--lavender-light) 0%, transparent 70%);
	opacity: 0.6;
	top: 50%;
	left: 50%;
	transform: translate(-55%, -45%);
	z-index: 1;
	pointer-events: none;
}

/* Book text content */
.book-feature-content {
	max-width: 540px;
}
.book-feature-label {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	color: var(--rose-dark);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 20px;
}
.book-feature-title {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 56px;
	font-weight: 500;
	line-height: 1.05;
	color: var(--rose-deep);
	margin: 0 0 18px 0;
	letter-spacing: -0.02em;
}
.book-feature-subtitle {
	font-family: var(--font-display);
	font-size: 22px;
	font-weight: 400;
	line-height: 1.4;
	color: var(--ink-soft);
	margin: 0 0 28px 0;
	font-style: italic;
}
.book-feature-description {
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin-bottom: 28px;
}
.book-feature-description p {
	margin: 0 0 14px 0;
}
.book-feature-description p:last-child {
	margin-bottom: 0;
}

/* Quote — special styling override of default blockquote */
.book-feature-quote {
	font-family: var(--font-display);
	font-style: italic;
	font-size: 22px;
	line-height: 1.5;
	color: var(--rose-deep);
	background: transparent;
	border-left: 2px solid var(--rose);
	border-radius: 0;
	padding: 8px 0 8px 24px;
	margin: 0 0 36px 0;
	position: relative;
}
.book-feature-quote::before {
	content: '"';
	position: absolute;
	font-family: var(--font-display);
	font-size: 72px;
	font-style: italic;
	color: var(--rose);
	opacity: 0.25;
	top: -8px;
	left: 14px;
	line-height: 1;
	pointer-events: none;
}

/* Action buttons */
.book-feature-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	align-items: center;
}

/* Responsive */
@media (max-width: 900px) {
	.book-feature {
		padding: 64px 0;
	}
	.book-feature-grid {
		grid-template-columns: 1fr;
		gap: 48px;
		text-align: center;
	}
	.book-feature-content {
		max-width: 100%;
		margin: 0 auto;
	}
	.book-feature-quote {
		text-align: left;
		max-width: 480px;
		margin: 0 auto 32px auto;
	}
	.book-feature-actions {
		justify-content: center;
	}
	.book-cover-frame {
		max-width: 280px;
	}
	.book-feature-decoration {
		width: 220px;
		height: 220px;
	}
}

@media (max-width: 600px) {
	.book-feature {
		padding: 48px 0;
	}
	.book-feature-title {
		font-size: 40px;
	}
	.book-feature-subtitle {
		font-size: 18px;
	}
	.book-feature-description {
		font-size: 15px;
	}
	.book-feature-quote {
		font-size: 18px;
		padding-left: 20px;
	}
	.book-feature-quote::before {
		font-size: 56px;
	}
	.book-cover-frame {
		max-width: 220px;
	}
}

/* Featured Video Section
-------------------------------------------------------------- */
.video-feature {
	padding: 88px 0;
	background:
		radial-gradient(circle at 20% 80%, rgba(196, 181, 201, 0.20) 0%, transparent 55%),
		linear-gradient(180deg, var(--cream) 0%, var(--lavender-pale) 100%);
	position: relative;
	overflow: hidden;
}
.video-feature::before,
.video-feature::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent 0%, var(--border-light) 50%, transparent 100%);
}
.video-feature::before { top: 0; }
.video-feature::after { bottom: 0; }

.video-feature-grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 64px;
	align-items: center;
	position: relative;
	z-index: 2;
}

/* Video player (16:9 responsive) */
.video-feature-player {
	position: relative;
}
.video-embed-wrapper {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: var(--ink);
	box-shadow:
		0 30px 60px rgba(61, 53, 48, 0.20),
		0 12px 24px rgba(61, 53, 48, 0.12),
		0 0 0 6px rgba(255, 255, 255, 0.6),
		0 0 0 7px var(--border-light);
	transition: transform 0.4s ease;
}
.video-embed-wrapper:hover {
	transform: translateY(-3px);
}
.video-embed-wrapper iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* Decorative play-icon glow behind the player */
.video-feature-player::before {
	content: '';
	position: absolute;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0.5;
	z-index: -1;
	pointer-events: none;
}

/* Text content */
.video-feature-content {
	max-width: 480px;
}
.video-feature-label {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	color: var(--rose-dark);
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.video-feature-title {
	font-family: var(--font-display);
	font-size: 38px;
	font-weight: 500;
	line-height: 1.15;
	color: var(--rose-deep);
	margin: 0 0 20px 0;
	letter-spacing: -0.01em;
}
.video-feature-description {
	font-family: var(--font-body);
	font-size: 16px;
	color: var(--text-secondary);
	line-height: 1.8;
	margin: 0 0 32px 0;
}
.video-feature-description em {
	font-style: italic;
	color: var(--rose-dark);
}

/* Action area */
.video-feature-actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.btn-text-link {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--rose-dark);
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	transition: color var(--transition);
	white-space: nowrap;
}
.btn-text-link:hover {
	color: var(--rose-deep);
}

/* Responsive */
@media (max-width: 900px) {
	.video-feature {
		padding: 64px 0;
	}
	.video-feature-grid {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	.video-feature-content {
		max-width: 100%;
		margin: 0 auto;
	}
	.video-feature-actions {
		flex-direction: column;
		align-items: center;
		gap: 16px;
	}
}

@media (max-width: 600px) {
	.video-feature {
		padding: 48px 0;
	}
	.video-feature-title {
		font-size: 28px;
	}
	.video-feature-description {
		font-size: 15px;
	}
}