/**
 * Hook Theme - Custom Styles
 * 
 * Comprehensive stylesheet for buttons, navigation, links, and custom elements
 * Based on HLNS design specifications
 * 
 * @package Hook
 * @version 1.0.5
 */

/*-----------------------------------------------------------------------------------*/
/* Color Variables & Brand Colors
/*-----------------------------------------------------------------------------------*/

:root {
	/* Primary Colors - Updated to match design */
	--hook-primary: #0b2c52;
	--hook-primary-dark: #082140;
	--hook-primary-light: #0d3763;
	
	/* Secondary Colors */
	--hook-secondary: #FF6B35;
	--hook-secondary-dark: #E55520;
	--hook-secondary-light: #FF8859;
	
	/* Accent Colors */
	--hook-accent: #00A8E8;
	--hook-accent-dark: #0088CC;
	--hook-accent-light: #33BFEE;
	
	/* Neutral Colors */
	--hook-text: #1a1a1a;
	--hook-text-light: #555555;
	--hook-text-lighter: #999999;
	--hook-bg-light: #F8F9FA;
	--hook-bg-gray: #f8f8f8;
	--hook-border: #e2e2e2;
	
	/* Utility Colors */
	--hook-white: #FFFFFF;
	--hook-black: #000000;
	--hook-success: #28A745;
	--hook-warning: #FFC107;
	--hook-danger: #DC3545;
	--hook-info: #17A2B8;
	
	/* Shadows */
	--hook-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
	--hook-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
	--hook-shadow-lg: 0 8px 18px rgba(0, 0, 0, 0.08);
	--hook-shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.25);
	
	/* Transitions */
	--hook-transition: all 0.3s ease;
	--hook-transition-fast: all 0.2s ease;
	--hook-transition-slow: all 0.5s ease;
	
	/* Border Radius */
	--hook-radius-sm: 6px;
	--hook-radius-md: 12px;
	--hook-radius-lg: 14px;
	--hook-radius-xl: 16px;
	--hook-radius-round: 50%;
	
	/* Spacing */
	--hook-spacing-xs: 8px;
	--hook-spacing-sm: 12px;
	--hook-spacing-md: 16px;
	--hook-spacing-lg: 24px;
	--hook-spacing-xl: 32px;
	--hook-spacing-xxl: 48px;
}

/*-----------------------------------------------------------------------------------*/
/* Typography Enhancement
/*-----------------------------------------------------------------------------------*/

body {
	font-family: "Inter", Arial, sans-serif;
	color: var(--hook-text);
	background: var(--hook-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

/* Container */
.container {
	width: min(1200px, 95%);
	margin: auto;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2;
	color: var(--hook-text);
}

h1 { font-size: clamp(32px, 5vw, 48px); }
h2 { font-size: clamp(28px, 4vw, 36px); }
h3 { font-size: clamp(24px, 3vw, 30px); }
h4 { font-size: clamp(20px, 2.5vw, 24px); }
h5 { font-size: clamp(18px, 2vw, 20px); }
h6 { font-size: clamp(16px, 1.5vw, 18px); }

p {
	line-height: 1.7;
	margin-bottom: 1.2rem;
}

strong, b {
	font-weight: 600;
}

/*-----------------------------------------------------------------------------------*/
/* Links - Enhanced Styling
/*-----------------------------------------------------------------------------------*/

a {
	color: var(--hook-primary);
	text-decoration: none;
	transition: var(--hook-transition-fast);
	position: relative;
}

a:hover {
	color: var(--hook-primary-light);
}

a:focus {
	outline: 2px solid var(--hook-accent);
	outline-offset: 2px;
	border-radius: var(--hook-radius-sm);
}

/* Link with underline on hover */
.link-underline {
	position: relative;
}

.link-underline::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: currentColor;
	transition: width 0.3s ease;
}

.link-underline:hover::after {
	width: 100%;
}

/* Link with arrow */
.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
}

.link-arrow::after {
	content: '→';
	transition: transform 0.3s ease;
	display: inline-block;
}

.link-arrow:hover::after {
	transform: translateX(4px);
}

/* Link with right arrow */
.link-arrow-right {
	position: relative;
	padding-right: 24px;
}

.link-arrow-right::after {
	content: '→';
	position: absolute;
	right: 0;
	transition: right 0.3s ease;
}

.link-arrow-right:hover::after {
	right: -4px;
}

/* External link indicator */
a[href^="http"]:not([href*="yourdomain.com"])::after {
	content: ' ↗';
	font-size: 0.85em;
	opacity: 0.7;
}

/*-----------------------------------------------------------------------------------*/
/* Buttons - Comprehensive Styles
/*-----------------------------------------------------------------------------------*/

/* Base button */
.btn,
button.btn,
input[type="submit"].btn,
input[type="button"].btn,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	vertical-align: middle;
	cursor: pointer;
	user-select: none;
	border: 2px solid transparent;
	border-radius: var(--hook-radius-md);
	transition: var(--hook-transition-fast);
	position: relative;
	overflow: hidden;
}

/* Primary Button */
.btn-primary,
.wp-block-button.is-style-fill .wp-block-button__link {
	background-color: var(--hook-primary);
	color: var(--hook-white);
	border-color: var(--hook-primary);
}

.btn-primary:hover {
	background-color: var(--hook-primary-light);
	border-color: var(--hook-primary-light);
	color: var(--hook-white);
	transform: translateY(-2px);
	box-shadow: var(--hook-shadow-md);
}

.btn-primary:active {
	transform: translateY(0);
	box-shadow: var(--hook-shadow-sm);
}

/* Secondary Button */
.btn-secondary {
	background-color: var(--hook-secondary);
	color: var(--hook-white);
	border-color: var(--hook-secondary);
}

.btn-secondary:hover {
	background-color: var(--hook-secondary-light);
	border-color: var(--hook-secondary-light);
	color: var(--hook-white);
	transform: translateY(-2px);
	box-shadow: var(--hook-shadow-md);
}

/* Outline Button */
.btn-outline,
.wp-block-button.is-style-outline .wp-block-button__link {
	background-color: transparent;
	color: var(--hook-primary);
	border-color: var(--hook-primary);
}

.btn-outline:hover {
	background-color: var(--hook-primary);
	color: var(--hook-white);
	transform: translateY(-2px);
}

/* Ghost Button */
.btn-ghost {
	background-color: transparent;
	color: var(--hook-primary);
	border-color: transparent;
}

.btn-ghost:hover {
	background-color: var(--hook-bg-light);
	color: var(--hook-primary-light);
}

/* Text Button (Link Style) */
.btn-text {
	background-color: transparent;
	color: var(--hook-primary);
	border-color: transparent;
	padding: 8px 12px;
}

.btn-text:hover {
	color: var(--hook-primary-light);
	text-decoration: underline;
}

/* Button Sizes */
.btn-sm {
	padding: 8px 16px;
	font-size: 14px;
	border-radius: var(--hook-radius-sm);
}

.btn-lg {
	padding: 16px 32px;
	font-size: 18px;
	border-radius: var(--hook-radius-lg);
}

.btn-xl {
	padding: 20px 40px;
	font-size: 20px;
	border-radius: var(--hook-radius-lg);
}

/* Button with Icon */
.btn-icon {
	padding: 12px;
	width: 44px;
	height: 44px;
}

.btn-icon svg {
	width: 20px;
	height: 20px;
}

/* Button with Right Arrow */
.btn-arrow::after {
	content: '→';
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.btn-arrow:hover::after {
	transform: translateX(4px);
}

/* Button with Left Arrow */
.btn-arrow-left::before {
	content: '←';
	margin-right: 8px;
	transition: transform 0.3s ease;
}

.btn-arrow-left:hover::before {
	transform: translateX(-4px);
}

/* Rounded Button */
.btn-rounded {
	border-radius: 50px;
}

/* Pill Button */
.btn-pill {
	border-radius: 100px;
	padding-left: 32px;
	padding-right: 32px;
}

/* Block Button (Full Width) */
.btn-block {
	display: flex;
	width: 100%;
}

/* Disabled Button */
.btn:disabled,
.btn.disabled {
	opacity: 0.5;
	cursor: not-allowed;
	pointer-events: none;
}

/* Button Group */
.btn-group {
	display: inline-flex;
	gap: 8px;
	flex-wrap: wrap;
}

.btn-group .btn {
	margin: 0;
}

/* Button Loading State */
.btn.is-loading {
	position: relative;
	color: transparent;
	pointer-events: none;
}

.btn.is-loading::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 50%;
	margin-left: -8px;
	margin-top: -8px;
	border: 2px solid var(--hook-white);
	border-top-color: transparent;
	border-radius: 50%;
	animation: spin 0.6s linear infinite;
}

@keyframes spin {
	to { transform: rotate(360deg); }
}

/* Floating Action Button */
.btn-fab {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	box-shadow: var(--hook-shadow-lg);
	z-index: 1000;
}

.btn-fab:hover {
	box-shadow: var(--hook-shadow-xl);
	transform: scale(1.05);
}

/*-----------------------------------------------------------------------------------*/
/* Navigation - Enhanced Styles
/*-----------------------------------------------------------------------------------*/

/* Main Navigation */
.site-navigation ul.menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	gap: var(--hook-spacing-sm);
}

.site-navigation ul.menu > li > a {
	color: var(--hook-text);
	font-weight: 500;
	font-size: 16px;
	padding: 12px 16px;
	display: inline-flex;
	align-items: center;
	border-radius: var(--hook-radius-sm);
	transition: var(--hook-transition-fast);
	position: relative;
}

.site-navigation ul.menu > li > a:hover,
.site-navigation ul.menu > li > a:focus {
	color: var(--hook-primary);
	background-color: var(--hook-bg-light);
}

/* Active Navigation Item */
.site-navigation ul.menu > li.current-menu-item > a,
.site-navigation ul.menu > li.current-menu-ancestor > a {
	color: var(--hook-primary);
	font-weight: 600;
}

/* Navigation with underline indicator */
.site-navigation ul.menu > li > a::after {
	content: '';
	position: absolute;
	bottom: 8px;
	left: 16px;
	right: 16px;
	height: 2px;
	background-color: var(--hook-primary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.site-navigation ul.menu > li > a:hover::after,
.site-navigation ul.menu > li.current-menu-item > a::after {
	transform: scaleX(1);
}

/* Dropdown Menus */
.site-navigation ul.menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--hook-white);
	border-radius: var(--hook-radius-md);
	box-shadow: var(--hook-shadow-lg);
	padding: 8px 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	z-index: 1000;
}

.site-navigation ul.menu li:hover > ul,
.site-navigation ul.menu li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.site-navigation ul.menu ul li {
	display: block;
	width: 100%;
}

.site-navigation ul.menu ul li a {
	padding: 12px 20px;
	display: block;
	color: var(--hook-text);
	font-size: 15px;
	transition: var(--hook-transition-fast);
	border-left: 3px solid transparent;
}

.site-navigation ul.menu ul li a:hover {
	background-color: var(--hook-bg-light);
	border-left-color: var(--hook-primary);
	color: var(--hook-primary);
	padding-left: 24px;
}

/* Dropdown Arrow */
.site-navigation ul.menu .menu-item-has-children > a::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4px solid currentColor;
	margin-left: 8px;
	transition: transform 0.3s ease;
}

.site-navigation ul.menu .menu-item-has-children:hover > a::after {
	transform: rotate(180deg);
}

/* Mega Menu (if needed) */
.site-navigation ul.menu > li.mega-menu > ul {
	min-width: 600px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 24px;
}

.site-navigation ul.menu > li.mega-menu > ul > li {
	display: block;
}

/* Breadcrumbs */
.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 12px 0;
	font-size: 14px;
	color: var(--hook-text-light);
}

.breadcrumbs a {
	color: var(--hook-text-light);
	transition: var(--hook-transition-fast);
}

.breadcrumbs a:hover {
	color: var(--hook-primary);
}

.breadcrumbs .separator {
	color: var(--hook-text-lighter);
	margin: 0 4px;
}

.breadcrumbs .current {
	color: var(--hook-text);
	font-weight: 500;
}

/* Pagination */
.pagination,
.nav-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 32px 0;
}

.pagination .page-numbers,
.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	color: var(--hook-text);
	background: transparent;
	border: 1px solid var(--hook-border);
	border-radius: var(--hook-radius-sm);
	text-decoration: none;
	transition: var(--hook-transition-fast);
	font-size: 14px;
	font-weight: 500;
}

.pagination .page-numbers:hover,
.nav-links .page-numbers:hover {
	background-color: var(--hook-bg-light);
	border-color: var(--hook-primary);
	color: var(--hook-primary);
}

.pagination .page-numbers.current,
.nav-links .page-numbers.current {
	background-color: var(--hook-primary);
	color: var(--hook-white);
	border-color: var(--hook-primary);
}

.pagination .page-numbers.dots,
.nav-links .page-numbers.dots {
	border: none;
	pointer-events: none;
}

/* Prev/Next Buttons */
.pagination .prev,
.pagination .next,
.nav-links .nav-previous,
.nav-links .nav-next {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 0 16px;
}

/*-----------------------------------------------------------------------------------*/
/* Forms - Enhanced Styling
/*-----------------------------------------------------------------------------------*/

input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="password"],
input[type="search"],
textarea,
select {
	width: 100%;
	padding: 12px 16px;
	font-size: 16px;
	line-height: 1.5;
	color: var(--hook-text);
	background-color: var(--hook-white);
	border: 2px solid var(--hook-border);
	border-radius: var(--hook-radius-md);
	transition: var(--hook-transition-fast);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus,
select:focus {
	outline: none;
	border-color: var(--hook-primary);
	box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

textarea {
	min-height: 120px;
	resize: vertical;
}

/* Checkbox & Radio */
input[type="checkbox"],
input[type="radio"] {
	width: 20px;
	height: 20px;
	margin-right: 8px;
	cursor: pointer;
	accent-color: var(--hook-primary);
}

/* Form Labels */
label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
	color: var(--hook-text);
}

/* Form Groups */
.form-group {
	margin-bottom: 20px;
}

.form-row {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 20px;
}

/*-----------------------------------------------------------------------------------*/
/* Cards & Content Blocks
/*-----------------------------------------------------------------------------------*/

.card {
	background: var(--hook-white);
	border: 1px solid var(--hook-border);
	border-radius: var(--hook-radius-lg);
	padding: 24px;
	transition: var(--hook-transition);
}

.card:hover {
	box-shadow: var(--hook-shadow-md);
	transform: translateY(-2px);
}

.card-header {
	margin-bottom: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--hook-border);
}

.card-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
}

.card-body {
	color: var(--hook-text);
}

.card-footer {
	margin-top: 16px;
	padding-top: 16px;
	border-top: 1px solid var(--hook-border);
}

/*-----------------------------------------------------------------------------------*/
/* Badges & Tags
/*-----------------------------------------------------------------------------------*/

.badge,
.tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.4;
	border-radius: var(--hook-radius-sm);
	text-decoration: none;
	transition: var(--hook-transition-fast);
}

.badge-primary {
	background-color: var(--hook-primary);
	color: var(--hook-white);
}

.badge-secondary {
	background-color: var(--hook-secondary);
	color: var(--hook-white);
}

.badge-outline {
	background-color: transparent;
	border: 1px solid var(--hook-border);
	color: var(--hook-text);
}

.badge-pill {
	border-radius: 100px;
	padding-left: 16px;
	padding-right: 16px;
}

/*-----------------------------------------------------------------------------------*/
/* Alerts & Notifications
/*-----------------------------------------------------------------------------------*/

.alert {
	padding: 16px 20px;
	border-radius: var(--hook-radius-md);
	border-left: 4px solid;
	margin-bottom: 20px;
	display: flex;
	align-items: flex-start;
	gap: 12px;
}

.alert-success {
	background-color: #D4EDDA;
	border-color: var(--hook-success);
	color: #155724;
}

.alert-warning {
	background-color: #FFF3CD;
	border-color: var(--hook-warning);
	color: #856404;
}

.alert-danger {
	background-color: #F8D7DA;
	border-color: var(--hook-danger);
	color: #721C24;
}

.alert-info {
	background-color: #D1ECF1;
	border-color: var(--hook-info);
	color: #0C5460;
}

/*-----------------------------------------------------------------------------------*/
/* Utility Classes
/*-----------------------------------------------------------------------------------*/

/* Text Alignment */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Display */
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-inline-flex { display: inline-flex; }

/* Flex Utilities */
.flex-row { flex-direction: row; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.align-start { align-items: flex-start; }
.align-center { align-items: center; }
.align-end { align-items: flex-end; }
.gap-sm { gap: var(--hook-spacing-sm); }
.gap-md { gap: var(--hook-spacing-md); }
.gap-lg { gap: var(--hook-spacing-lg); }

/* Spacing */
.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--hook-spacing-sm); }
.mt-md { margin-top: var(--hook-spacing-md); }
.mt-lg { margin-top: var(--hook-spacing-lg); }
.mt-xl { margin-top: var(--hook-spacing-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--hook-spacing-sm); }
.mb-md { margin-bottom: var(--hook-spacing-md); }
.mb-lg { margin-bottom: var(--hook-spacing-lg); }
.mb-xl { margin-bottom: var(--hook-spacing-xl); }

.pt-sm { padding-top: var(--hook-spacing-sm); }
.pt-md { padding-top: var(--hook-spacing-md); }
.pt-lg { padding-top: var(--hook-spacing-lg); }
.pt-xl { padding-top: var(--hook-spacing-xl); }

.pb-sm { padding-bottom: var(--hook-spacing-sm); }
.pb-md { padding-bottom: var(--hook-spacing-md); }
.pb-lg { padding-bottom: var(--hook-spacing-lg); }
.pb-xl { padding-bottom: var(--hook-spacing-xl); }

/* Border Radius */
.rounded-sm { border-radius: var(--hook-radius-sm); }
.rounded-md { border-radius: var(--hook-radius-md); }
.rounded-lg { border-radius: var(--hook-radius-lg); }
.rounded-full { border-radius: var(--hook-radius-round); }

/* Shadows */
.shadow-none { box-shadow: none; }
.shadow-sm { box-shadow: var(--hook-shadow-sm); }
.shadow-md { box-shadow: var(--hook-shadow-md); }
.shadow-lg { box-shadow: var(--hook-shadow-lg); }

/* Colors */
.text-primary { color: var(--hook-primary); }
.text-secondary { color: var(--hook-secondary); }
.text-accent { color: var(--hook-accent); }
.text-muted { color: var(--hook-text-light); }

.bg-primary { background-color: var(--hook-primary); }
.bg-secondary { background-color: var(--hook-secondary); }
.bg-light { background-color: var(--hook-bg-light); }
.bg-white { background-color: var(--hook-white); }

/*-----------------------------------------------------------------------------------*/
/* Responsive Utilities
/*-----------------------------------------------------------------------------------*/

@media (max-width: 768px) {
	.d-md-none { display: none; }
	.d-md-block { display: block; }
	
	.text-md-center { text-align: center; }
	
	.btn-sm-block {
		display: flex;
		width: 100%;
	}
}

@media (max-width: 576px) {
	.d-sm-none { display: none; }
	.d-sm-block { display: block; }
	
	.text-sm-center { text-align: center; }
}

/*-----------------------------------------------------------------------------------*/
/* Animations
/*-----------------------------------------------------------------------------------*/

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInRight {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(0);
	}
}

@keyframes slideInLeft {
	from {
		transform: translateX(-100%);
	}
	to {
		transform: translateX(0);
	}
}

.fade-in {
	animation: fadeIn 0.5s ease-out;
}

.slide-in-right {
	animation: slideInRight 0.5s ease-out;
}

.slide-in-left {
	animation: slideInLeft 0.5s ease-out;
}

/*-----------------------------------------------------------------------------------*/
/* Accessibility
/*-----------------------------------------------------------------------------------*/

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border-width: 0;
}

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: var(--hook-primary);
	color: var(--hook-white);
	padding: 8px 16px;
	text-decoration: none;
	z-index: 100000;
}

.skip-link:focus {
	top: 0;
}

/* Focus visible for keyboard navigation */
:focus-visible {
	outline: 2px solid var(--hook-primary);
	outline-offset: 2px;
}

/*-----------------------------------------------------------------------------------*/
/* Print Styles
/*-----------------------------------------------------------------------------------*/

@media print {
	.btn,
	.header-icons,
	.mobile-menu-toggle,
	.site-navigation,
	.announcement-bar {
		display: none !important;
	}
	
	body {
		font-size: 12pt;
		line-height: 1.5;
		color: #000;
	}
	
	a {
		color: #000;
		text-decoration: underline;
	}
	
	.card {
		border: 1px solid #000;
		page-break-inside: avoid;
	}
}

/*-----------------------------------------------------------------------------------*/
/* Promo Banner
/*-----------------------------------------------------------------------------------*/

.promo-banner {
	background: var(--hook-primary);
	color: var(--hook-white);
	text-align: center;
	padding: 10px 20px;
	font-size: 0.95rem;
	font-weight: 500;
}

/*-----------------------------------------------------------------------------------*/
/* Hero Section
/*-----------------------------------------------------------------------------------*/

.hero {
	position: relative;
	background: linear-gradient(rgba(11, 44, 82, 0.4), rgba(11, 44, 82, 0.4)), 
	            url('/path-to-hero-image.jpg') center/cover no-repeat;
	padding: 120px 0;
	color: var(--hook-white);
	min-height: 500px;
	display: flex;
	align-items: center;
}

.hero-content {
	max-width: 600px;
	z-index: 2;
	position: relative;
}

.hero h1 {
	font-size: 3rem;
	font-weight: 800;
	margin-bottom: 15px;
	line-height: 1.1;
	color: var(--hook-white);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 25px;
	line-height: 1.6;
	opacity: 0.95;
}

.hero .btn-primary {
	font-size: 1.1rem;
	padding: 14px 32px;
}

/*-----------------------------------------------------------------------------------*/
/* Section Titles
/*-----------------------------------------------------------------------------------*/

.section-title {
	text-align: center;
	font-size: 2.2rem;
	font-weight: 800;
	margin-top: 60px;
	margin-bottom: 40px;
	color: var(--hook-text);
	letter-spacing: -0.02em;
}

/*-----------------------------------------------------------------------------------*/
/* Category Grid (Shop by Category)
/*-----------------------------------------------------------------------------------*/

.category-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 30px;
	padding-bottom: 50px;
}

.category-tile {
	position: relative;
	border-radius: var(--hook-radius-lg);
	overflow: hidden;
	cursor: pointer;
	transition: var(--hook-transition);
}

.category-tile:hover {
	transform: translateY(-4px);
	box-shadow: var(--hook-shadow-lg);
}

.category-tile img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.category-tile:hover img {
	transform: scale(1.05);
}

.category-tile .label {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(4px);
	color: var(--hook-white);
	padding: 8px 16px;
	border-radius: var(--hook-radius-sm);
	font-size: 1rem;
	font-weight: 600;
	transition: var(--hook-transition);
}

.category-tile:hover .label {
	background: rgba(11, 44, 82, 0.9);
	left: 24px;
	bottom: 24px;
}

/*-----------------------------------------------------------------------------------*/
/* Product Grid
/*-----------------------------------------------------------------------------------*/

.product-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
	padding-bottom: 60px;
	margin-top: 40px;
}

.product-card {
	border: 1px solid var(--hook-border);
	border-radius: var(--hook-radius-md);
	overflow: hidden;
	background: var(--hook-white);
	transition: var(--hook-transition-fast);
	display: flex;
	flex-direction: column;
}

.product-card:hover {
	box-shadow: var(--hook-shadow-lg);
	transform: translateY(-2px);
}

.product-card img {
	height: 230px;
	width: 100%;
	object-fit: contain;
	background: var(--hook-bg-gray);
	padding: 20px;
}

.product-card .details {
	padding: 18px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.product-card h3 {
	font-size: 1.25rem;
	font-weight: 700;
	margin-bottom: 10px;
	color: var(--hook-text);
	line-height: 1.3;
}

.product-card p {
	font-size: 0.95rem;
	color: var(--hook-text-light);
	margin-bottom: 12px;
	line-height: 1.5;
	flex-grow: 1;
}

.product-card .price {
	font-size: 1.4rem;
	font-weight: 800;
	margin: 15px 0 10px 0;
	color: var(--hook-text);
}

/*-----------------------------------------------------------------------------------*/
/* Brand Carousel / Slider
/*-----------------------------------------------------------------------------------*/

.brand-slider {
	padding: 40px 0;
	display: flex;
	gap: 40px;
	overflow-x: auto;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.brand-slider::-webkit-scrollbar {
	display: none;
}

.brand-slider img {
	height: 60px;
	width: auto;
	object-fit: contain;
	opacity: 0.6;
	transition: opacity 0.3s ease;
	flex-shrink: 0;
}

.brand-slider img:hover {
	opacity: 1;
}

/*-----------------------------------------------------------------------------------*/
/* About / Story Block
/*-----------------------------------------------------------------------------------*/

.about-block {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	padding: 70px 0;
	align-items: center;
}

.about-block img {
	width: 100%;
	height: auto;
	border-radius: var(--hook-radius-lg);
	box-shadow: var(--hook-shadow-md);
}

.about-block h2 {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 15px;
	color: var(--hook-text);
	line-height: 1.2;
}

.about-block p {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--hook-text-light);
	margin-bottom: 20px;
}

/*-----------------------------------------------------------------------------------*/
/* Footer Enhancements
/*-----------------------------------------------------------------------------------*/

footer, .site-footer{
	background: var(--hook-primary);
	color: var(--hook-white);
	padding: 60px 0 30px 0;
	margin-top: 60px;
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 40px;
	margin-bottom: 40px;
}

footer h4 {
	font-size: 1.1rem;
	margin-bottom: 18px;
	font-weight: 700;
	color: var(--hook-white);
}

footer ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

footer li {
	margin-bottom: 10px;
}

footer a {
	color: rgba(255, 255, 255, 0.85);
	transition: color 0.3s ease;
}

footer a:hover {
	color: var(--hook-white);
	text-decoration: underline;
}

.footer-bottom {
	text-align: center;
	font-size: 0.9rem;
	padding-top: 30px;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.7);
}

/*-----------------------------------------------------------------------------------*/
/* Responsive Design - Mobile Optimization
/*-----------------------------------------------------------------------------------*/

@media (max-width: 768px) {
	/* Hero adjustments */
	.hero {
		padding: 80px 0;
		min-height: 400px;
	}
	
	.hero h1 {
		font-size: 2.3rem;
	}
	
	.hero p {
		font-size: 1.1rem;
	}
	
	/* About block stacking */
	.about-block {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 50px 0;
	}
	
	/* Category grid */
	.category-grid {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 20px;
	}
	
	.category-tile img {
		height: 200px;
	}
	
	/* Product grid */
	.product-grid {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: 25px;
	}
	
	/* Footer */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}
	
	/* Section titles */
	.section-title {
		font-size: 1.8rem;
		margin-top: 40px;
	}
}

@media (max-width: 576px) {
	.hero h1 {
		font-size: 2rem;
	}
	
	.hero p {
		font-size: 1rem;
	}
	
	.product-grid {
		grid-template-columns: 1fr;
	}
	
	.category-grid {
		grid-template-columns: 1fr;
	}
}

/**
 * Blog & Page Template Styles
 * 
 * Styles for single posts, pages, archives with full-width headers
 * 
 * @package Hook
 * @version 1.0.6
 */

/*-----------------------------------------------------------------------------------*/
/* Full Width Page Header
/*-----------------------------------------------------------------------------------*/

.page-header {
	position: relative;
	width: 100%;
	min-height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--hook-primary) 0%, var(--hook-primary-light) 100%);
	color: var(--hook-white);
	padding: 80px 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

/* Hide page header on home/front page */
.home .page-header,
.blog .page-header {
	display: none;
}

/* WooCommerce header adjustments */
.page-header-woocommerce,
.page-header-product {
	/* Inherits all .page-header styles */
}

.page-header-product-image {
	opacity: 0.4; /* More subtle for product images */
}

.product-categories {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 16px;
}

.product-header-excerpt {
	font-size: 1.15rem;
	line-height: 1.6;
	opacity: 0.95;
	margin-top: 20px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.product-count {
	font-size: 0.95rem;
	font-weight: 500;
}

/* Page Header with Background Image */
.page-header-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-header-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Overlay for better text readability */
.page-header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(11, 44, 82, 0.85) 0%,
		rgba(11, 44, 82, 0.7) 100%
	);
	z-index: 2;
}

/* Content on top of overlay */
.page-header-content {
	position: relative;
	z-index: 3;
	max-width: 800px;
	text-align: center;
	margin: 0 auto;
}

.page-header .breadcrumbs {
	margin-bottom: 20px;
	opacity: 0.9;
	justify-content: center;
}

.page-header .breadcrumbs a {
	color: var(--hook-white);
}

.page-header .breadcrumbs .separator {
	color: rgba(255, 255, 255, 0.6);
}

.page-header .breadcrumbs .current {
	color: var(--hook-white);
}

.page-title {
	font-size: clamp(2rem, 5vw, 3.5rem);
	font-weight: 800;
	margin: 0 0 20px 0;
	line-height: 1.2;
	color: var(--hook-white);
	letter-spacing: -0.02em;
}

.page-excerpt,
.archive-description {
	font-size: 1.2rem;
	line-height: 1.6;
	opacity: 0.95;
	margin-top: 20px;
}

/*-----------------------------------------------------------------------------------*/
/* Post Meta in Header
/*-----------------------------------------------------------------------------------*/

.post-meta {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	flex-wrap: wrap;
	margin-top: 24px;
	font-size: 0.95rem;
	opacity: 0.9;
}

.post-meta > span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.post-meta svg {
	opacity: 0.8;
}

.post-categories {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 16px;
}

/* Accent badge for Learning Hub */
.badge-accent {
	background: var(--hook-accent);
	color: var(--hook-white);
}

.archive-meta {
	margin-top: 16px;
	opacity: 0.9;
}

/*-----------------------------------------------------------------------------------*/
/* Main Content Layout
/*-----------------------------------------------------------------------------------*/

.site-content {
	padding: 0 0 60px 0;
}

.content-wrapper {
	display: grid;
	grid-template-columns: 1fr 350px;
	gap: 50px;
	align-items: start;
}

/* Full container width (no sidebar) - for pages and Learning Hub posts */
.content-wrapper-full {
	grid-template-columns: 1fr;
	/* No max-width restriction - uses full container */
}

/* Full width pages (no sidebar) - centered with max-width */
.page-content-wrapper {
	max-width: 900px;
	margin: 0 auto;
}

/*-----------------------------------------------------------------------------------*/
/* Single Post Styles
/*-----------------------------------------------------------------------------------*/

.single-post {
	background: var(--hook-white);
}

.post-thumbnail {
	margin-bottom: 40px;
	border-radius: var(--hook-radius-lg);
	overflow: hidden;
	box-shadow: var(--hook-shadow-md);
}

.post-thumbnail img {
	width: 100%;
	height: auto;
	display: block;
}

.post-content {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--hook-text);
	margin-bottom: 40px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
	margin-top: 2em;
	margin-bottom: 0.8em;
	color: var(--hook-text);
}

.post-content h2 {
	font-size: 2rem;
	font-weight: 700;
	padding-bottom: 0.5em;
	border-bottom: 2px solid var(--hook-border);
}

.post-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

.post-content p {
	margin-bottom: 1.5em;
}

.post-content a {
	color: var(--hook-primary);
	text-decoration: underline;
	text-decoration-color: rgba(11, 44, 82, 0.3);
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
	transition: var(--hook-transition-fast);
}

.post-content a:hover {
	text-decoration-color: var(--hook-primary);
}

.post-content img {
	border-radius: var(--hook-radius-md);
	margin: 2em 0;
	box-shadow: var(--hook-shadow-sm);
}

.post-content blockquote {
	margin: 2em 0;
	padding: 24px 32px;
	background: var(--hook-bg-light);
	border-left: 4px solid var(--hook-primary);
	border-radius: var(--hook-radius-sm);
	font-style: italic;
	color: var(--hook-text-light);
}

.post-content ul,
.post-content ol {
	margin: 1.5em 0 1.5em 2em;
}

.post-content li {
	margin-bottom: 0.5em;
}

/*-----------------------------------------------------------------------------------*/
/* Post Tags
/*-----------------------------------------------------------------------------------*/

.post-tags {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 24px 0;
	border-top: 1px solid var(--hook-border);
	margin-top: 40px;
}

.post-tags svg {
	color: var(--hook-text-light);
	flex-shrink: 0;
}

.tag-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.tag {
	display: inline-block;
	padding: 6px 14px;
	background: var(--hook-bg-light);
	color: var(--hook-text);
	border-radius: var(--hook-radius-sm);
	font-size: 0.9rem;
	font-weight: 500;
	transition: var(--hook-transition-fast);
}

.tag:hover {
	background: var(--hook-primary);
	color: var(--hook-white);
}

/*-----------------------------------------------------------------------------------*/
/* Author Bio
/*-----------------------------------------------------------------------------------*/

.author-bio {
	display: flex;
	gap: 24px;
	padding: 32px;
	background: var(--hook-bg-light);
	border-radius: var(--hook-radius-lg);
	margin-top: 40px;
}

.author-avatar {
	flex-shrink: 0;
}

.author-avatar img {
	border-radius: var(--hook-radius-round);
	width: 80px;
	height: 80px;
}

.author-info {
	flex: 1;
}

.author-name {
	margin: 0 0 8px 0;
	font-size: 1.4rem;
	font-weight: 700;
	color: var(--hook-text);
}

.author-description {
	margin-bottom: 16px;
	color: var(--hook-text-light);
	line-height: 1.6;
}

/*-----------------------------------------------------------------------------------*/
/* Post Navigation (Previous/Next)
/*-----------------------------------------------------------------------------------*/

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid var(--hook-border);
}

.nav-previous,
.nav-next {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.nav-next {
	text-align: right;
	align-items: flex-end;
}

.nav-subtitle {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--hook-text-light);
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.nav-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--hook-primary);
	transition: var(--hook-transition-fast);
	display: block;
}

.nav-title:hover {
	color: var(--hook-primary-light);
}

/*-----------------------------------------------------------------------------------*/
/* Blog List (Archive Pages) - Side-by-Side Layout
/*-----------------------------------------------------------------------------------*/

.blog-list {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-bottom: 50px;
}

.blog-list-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	background: var(--hook-white);
	border: 1px solid var(--hook-border);
	border-radius: var(--hook-radius-lg);
	overflow: hidden;
	padding: 40px;
	transition: var(--hook-transition-fast);
}

.blog-list-item:hover {
	box-shadow: 0 12px 28px rgba(11, 44, 82, 0.12);
	transform: translateY(-4px);
	border-color: var(--hook-primary);
}

/* Alternate image position */
.blog-list-item-left .blog-list-image {
	order: 1;
}

.blog-list-item-left .blog-list-content {
	order: 2;
}

.blog-list-item-right .blog-list-image {
	order: 2;
}

.blog-list-item-right .blog-list-content {
	order: 1;
}

/* Image styling */
.blog-list-image {
	position: relative;
	overflow: hidden;
	border-radius: var(--hook-radius-md);
	height: 100%;
	min-height: 320px;
}

.blog-list-image a {
	display: block;
	height: 100%;
}

.blog-list-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
	border-radius: var(--hook-radius-md);
}

.blog-list-item:hover .blog-list-image img {
	transform: scale(1.08);
}

/* Content styling */
.blog-list-content {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 10px 0;
}

.blog-list-meta {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-wrap: wrap;
}

.blog-list-meta .post-date {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.9rem;
	color: var(--hook-text-light);
	font-weight: 500;
}

.blog-list-meta svg {
	opacity: 0.7;
}

/* Badge variations for Learning Hub */
.badge-accent {
	background: var(--hook-accent);
	color: var(--hook-white);
}

.blog-list-title {
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 700;
	margin: 0;
	line-height: 1.3;
	letter-spacing: -0.02em;
}

.blog-list-title a {
	color: var(--hook-text);
	transition: var(--hook-transition-fast);
	background: linear-gradient(to right, var(--hook-primary) 0%, var(--hook-primary) 100%);
	background-size: 0 2px;
	background-position: 0 100%;
	background-repeat: no-repeat;
	padding-bottom: 2px;
}

.blog-list-item:hover .blog-list-title a {
	color: var(--hook-primary);
	background-size: 100% 2px;
}

.blog-list-excerpt {
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--hook-text-light);
	margin: 0;
}

.blog-list-author {
	display: flex;
	align-items: center;
	gap: 12px;
	padding-top: 8px;
	border-top: 1px solid var(--hook-bg-light);
}

.blog-list-author img {
	border-radius: var(--hook-radius-round);
	width: 40px;
	height: 40px;
	border: 2px solid var(--hook-bg-light);
}

.blog-list-author .author-name {
	font-size: 0.95rem;
	font-weight: 600;
	color: var(--hook-text);
}

/* Read More Button in List */
.blog-list-content .btn {
	align-self: flex-start;
	margin-top: 8px;
}

/*-----------------------------------------------------------------------------------*/
/* Responsive Blog List
/*-----------------------------------------------------------------------------------*/

@media (max-width: 992px) {
	.blog-list {
		gap: 40px;
	}
	
	.blog-list-item {
		padding: 30px;
		gap: 30px;
	}
	
	.blog-list-image {
		min-height: 280px;
	}
	
	.blog-list-title {
		font-size: 1.6rem;
	}
	
	.blog-list-excerpt {
		font-size: 1rem;
	}
}

@media (max-width: 768px) {
	.blog-list {
		gap: 30px;
	}
	
	.blog-list-item {
		grid-template-columns: 1fr;
		gap: 24px;
		padding: 24px;
	}
	
	/* Always show image first on mobile */
	.blog-list-item-left .blog-list-image,
	.blog-list-item-right .blog-list-image {
		order: 1;
	}
	
	.blog-list-item-left .blog-list-content,
	.blog-list-item-right .blog-list-content {
		order: 2;
	}
	
	.blog-list-image {
		min-height: 240px;
		margin: -24px -24px 0 -24px;
		border-radius: 0;
		width: calc(100% + 48px);
	}
	
	.blog-list-image img {
		border-radius: 0;
	}
	
	.blog-list-title {
		font-size: 1.4rem;
	}
	
	.blog-list-excerpt {
		font-size: 0.95rem;
	}
	
	.blog-list-content {
		gap: 16px;
	}
}

@media (max-width: 576px) {
	.blog-list-item {
		padding: 20px;
	}
	
	.blog-list-image {
		min-height: 200px;
		margin: -20px -20px 0 -20px;
		width: calc(100% + 40px);
	}
	
	.blog-list-title {
		font-size: 1.3rem;
	}
	
	.blog-list-meta {
		gap: 12px;
	}
}

/*-----------------------------------------------------------------------------------*/
/* Sidebar
/*-----------------------------------------------------------------------------------*/

.sidebar {
	position: sticky;
	top: 100px;
}

.sidebar .widget {
	background: var(--hook-white);
	border: 1px solid var(--hook-border);
	border-radius: var(--hook-radius-lg);
	padding: 28px;
	margin-bottom: 30px;
}

.sidebar .widget:last-child {
	margin-bottom: 0;
}

.sidebar .widget-title {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 20px 0;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--hook-border);
	color: var(--hook-text);
}

.sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar li {
	margin-bottom: 12px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--hook-bg-light);
}

.sidebar li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.sidebar a {
	color: var(--hook-text-light);
	transition: var(--hook-transition-fast);
	display: block;
}

.sidebar a:hover {
	color: var(--hook-primary);
	padding-left: 4px;
}

/* Search Widget */
.sidebar .search-form {
	display: flex;
	gap: 8px;
}

.sidebar .search-form input[type="search"] {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid var(--hook-border);
	border-radius: var(--hook-radius-sm);
	font-size: 0.95rem;
}

.sidebar .search-form button {
	padding: 10px 20px;
	background: var(--hook-primary);
	color: var(--hook-white);
	border: none;
	border-radius: var(--hook-radius-sm);
	cursor: pointer;
	font-weight: 600;
	transition: var(--hook-transition-fast);
}

.sidebar .search-form button:hover {
	background: var(--hook-primary-light);
}

/*-----------------------------------------------------------------------------------*/
/* Page Content (Standard Pages)
/*-----------------------------------------------------------------------------------*/

.page-content {
	font-size: 1.125rem;
	line-height: 1.8;
	color: var(--hook-text);
}

.page-content h2,
.page-content h3,
.page-content h4 {
	margin-top: 2em;
	margin-bottom: 0.8em;
}

.page-content h2 {
	font-size: 2rem;
	font-weight: 700;
	padding-bottom: 0.5em;
	border-bottom: 2px solid var(--hook-border);
}

.page-content h3 {
	font-size: 1.5rem;
	font-weight: 600;
}

.page-content p {
	margin-bottom: 1.5em;
}

.page-content img {
	border-radius: var(--hook-radius-md);
	margin: 2em 0;
	box-shadow: var(--hook-shadow-sm);
}

/*-----------------------------------------------------------------------------------*/
/* Comments Section
/*-----------------------------------------------------------------------------------*/

.page-comments,
#comments {
	margin-top: 60px;
	padding-top: 40px;
	border-top: 2px solid var(--hook-border);
}

.comments-title {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 30px;
	color: var(--hook-text);
}

.comment-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.comment {
	padding: 24px;
	background: var(--hook-bg-light);
	border-radius: var(--hook-radius-lg);
	margin-bottom: 20px;
}

.comment-body {
	display: flex;
	gap: 20px;
}

.comment-avatar {
	flex-shrink: 0;
}

.comment-avatar img {
	border-radius: var(--hook-radius-round);
	width: 50px;
	height: 50px;
}

.comment-content {
	flex: 1;
}

.comment-author {
	font-weight: 700;
	margin-bottom: 4px;
	color: var(--hook-text);
}

.comment-meta {
	font-size: 0.9rem;
	color: var(--hook-text-light);
	margin-bottom: 12px;
}

.comment-text p {
	margin-bottom: 0.8em;
	color: var(--hook-text-light);
	line-height: 1.6;
}

.reply {
	margin-top: 12px;
}

.comment-reply-link {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--hook-primary);
	transition: var(--hook-transition-fast);
}

.comment-reply-link:hover {
	color: var(--hook-primary-light);
}

/* Nested Comments */
.children {
	list-style: none;
	padding-left: 40px;
	margin-top: 20px;
}

/* Comment Form */
.comment-respond {
	margin-top: 40px;
}

.comment-reply-title {
	font-size: 1.5rem;
	font-weight: 700;
	margin-bottom: 24px;
	color: var(--hook-text);
}

.comment-form {
	display: grid;
	gap: 20px;
}

.comment-form-comment textarea {
	min-height: 150px;
}

/*-----------------------------------------------------------------------------------*/
/* No Posts Found
/*-----------------------------------------------------------------------------------*/

.no-posts-found {
	text-align: center;
	padding: 80px 20px;
}

.no-posts-found h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: var(--hook-text);
}

.no-posts-found p {
	font-size: 1.1rem;
	color: var(--hook-text-light);
	margin-bottom: 30px;
}

/*-----------------------------------------------------------------------------------*/
/* Responsive Design
/*-----------------------------------------------------------------------------------*/

@media (max-width: 992px) {
	.content-wrapper {
		grid-template-columns: 1fr;
	}
	
	.sidebar {
		position: static;
	}
	
	/* Blog list responsive - already defined above */
	
	.post-navigation {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.nav-next {
		text-align: left;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.page-header {
		min-height: 250px;
		padding: 60px 20px;
		margin-bottom: 40px;
	}
	
	.page-title {
		font-size: 2rem;
	}
	
	.page-excerpt,
	.archive-description {
		font-size: 1rem;
	}
	
	.post-meta {
		gap: 16px;
		font-size: 0.85rem;
	}
	
	.author-bio {
		flex-direction: column;
		text-align: center;
		align-items: center;
	}
	
	/* Blog list responsive - already defined above */
	
	.post-content,
	.page-content {
		font-size: 1rem;
	}
}

@media (max-width: 576px) {
	.page-header {
		padding: 40px 20px;
	}
	
	.post-meta {
		flex-direction: column;
		gap: 8px;
	}
	
	.children {
		padding-left: 20px;
	}
}