/*
Theme Name: Alimentai Kizne Legal
Theme URI: https://alimentai.kizne.legal/
Author: Kizne Legal
Author URI: https://kizne.legal/
Description: Custom theme for alimentai.kizne.legal, matching the main site design and optimized for SEO and responsiveness.
Version: 3.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alimentai-kizne-legal
Tags: custom, responsive, seo, modern, minimalist
*/

/* === FONT IMPORTS === */
/* Inter font is loaded from Google Fonts via functions.php for better reliability */

/* === CSS VARIABLES === */
:root {
  --background: 210 20% 98%;
  --foreground: 215 28% 17%;
  --card: 0 0% 100%;
  --card-foreground: 215 28% 17%;
  --primary: 166 91% 30%;
  --primary-foreground: 0 0% 100%;
  --secondary: 166 30% 94%;
  --secondary-foreground: 166 91% 30%;
  --muted: 210 40% 96%;
  --muted-foreground: 215 16% 47%;
  --border: 214 32% 91%;
  --radius: 0.5rem;

  /* Brand Colors - Trust Teal Palette */
  --brand-primary: #0D9488;
  --brand-primary-dark: #0F766E;
  --brand-primary-light: #14B8A6;
  --brand-secondary: #F0FDFA;
  --brand-accent: #059669;
  --brand-gray: #374151;
  --brand-gray-light: #6B7280;
  --brand-gray-lighter: #F9FAFB;
  
  /* Enhanced Spacing & Shadows */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
}

/* === BASE STYLES === */
html {
  scroll-behavior: smooth;
  height: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #ffffff;
  color: #333333;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--brand-primary);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  font-weight: 800;
}

h2 {
  font-size: 2rem;
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-sm);
  font-weight: 600;
}

p {
  margin-bottom: var(--spacing-md);
  color: var(--foreground);
  line-height: 1.7;
}

a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--brand-primary-dark);
}

/* === LAYOUT === */
.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

@media (min-width: 640px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1030;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #e5e7eb;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  height: 80px;
}

/* Ensure no underlines on header navigation links */
.site-header nav a,
.site-header .mobile-menu nav a {
  text-decoration: none !important;
  border-bottom: none !important;
}

.site-header nav a:hover,
.site-header .mobile-menu nav a:hover {
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Critical header layout fixes */
.site-header .flex {
  width: 100%;
}

/* Ensure proper flex distribution */
.site-header .md\:justify-start {
  justify-content: flex-start;
}

.site-header .md\:space-x-10 > * + * {
  margin-left: 2.5rem;
}

/* Header container - matches main site exactly */
.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.sm\:px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Header content layout - matches main site exactly */
.flex {
  display: flex;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Desktop layout adjustments */
@media (min-width: 768px) {
  .md\:justify-start {
    justify-content: flex-start;
  }
  
  .md\:space-x-10 > * + * {
    margin-left: 2.5rem;
  }
  
  /* Logo container */
  .lg\:w-0 {
    width: 0;
  }
  
  .lg\:flex-1 {
    flex: 1 1 0%;
  }
  
  /* Navigation spacing */
  .space-x-10 > * + * {
    margin-left: 2.5rem;
  }
  
  /* CTA button container */
  .md\:flex-1 {
    flex: 1 1 0%;
  }
  
  .lg\:w-0 {
    width: 0;
  }
}

/* Logo container */
.justify-start {
  justify-content: flex-start;
}

/* Logo styling */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo:hover {
  transform: translateY(-1px);
}

.site-logo img,
.site-logo-svg,
.h-10 {
  height: 2.5rem;
  width: auto;
}

.w-auto {
  width: auto;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo:hover {
  transform: translateY(-1px);
}

.site-logo img,
.site-logo-svg {
  height: 40px;
  width: auto;
  filter: drop-shadow(var(--shadow-sm));
}

.site-logo-svg {
  display: block;
}



/* === NAVIGATION === */
/* Desktop navigation - matches main site exactly */
.hidden {
  display: none;
}

.md\:flex {
  display: flex;
}

/* Navigation spacing - matches main site exactly */
.space-x-10 > * + * {
  margin-left: 2.5rem;
}

/* Navigation links - matches main site exactly */
nav a,
.main-navigation a {
  color: #6b7280;
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}

nav a:hover,
.main-navigation a:hover {
  color: #111827;
  background: transparent;
  transform: none;
}

/* Mobile navigation - matches main site exactly */
@media (max-width: 768px) {
  nav a,
  .main-navigation a {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #111827;
  }
  
  nav a:hover,
  .main-navigation a:hover {
    color: #374151;
  }
  
  nav a:last-child,
  .main-navigation a:last-child {
    border-bottom: none;
  }
}

/* === ENHANCED BUTTONS === */
.cta-button {
  background: #0D9488;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Hover effects for navigation links - matches original portal */
.hover\:text-gray-900:hover {
  color: #111827;
}

.hover\:text-gray-700:hover {
  color: #374151;
}

/* Button hover effects - matches original portal */
button.hover\:bg-\[#0F766E\]:hover {
  background-color: #0F766E;
}

/* Button modifiers - matches main site exactly */
.ml-8 {
  margin-left: 2rem;
}

/* CTA button container layout */
.md\:flex-1 {
  flex: 1 1 0%;
}

.lg\:w-0 {
  width: 0;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.inline-flex {
  display: inline-flex;
}

.justify-center {
  justify-content: center;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.border {
  border-width: 1px;
}

.border-transparent {
  border-color: transparent;
}

.rounded-md {
  border-radius: 0.375rem;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.font-medium {
  font-weight: 500;
}

.text-white {
  color: #ffffff;
}

.bg-\[#0D9488\] {
  background-color: #0D9488;
}

.hover\:bg-\[#0F766E\]:hover {
  background-color: #0F766E;
}

/* Premium UI Integration - REMOVED old styling */

/* === MAIN CONTENT === */

/* === POST CTA SECTION === */
.post-cta-section {
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e9ecef;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.post-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0D9488, #0F766E);
}

.post-cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.post-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.post-cta-description {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.post-cta-button-container {
  margin-top: 1.5rem;
}

.post-cta-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 280px;
}

.post-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.4);
  background: linear-gradient(135deg, #0F766E 0%, #115E59 100%);
}

.post-cta-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.3);
}

.cta-text {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
}

.cta-subtext {
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 0.25rem;
}

/* Responsive adjustments for post CTA */
@media (max-width: 768px) {
  .post-cta-section {
    margin: 2rem 0;
    padding: 2rem 1.5rem;
  }
  
  .post-cta-title {
    font-size: 1.25rem;
  }
  
  .post-cta-description {
    font-size: 1rem;
  }
  
  .post-cta-button {
    min-width: 100%;
    padding: 0.875rem 1.5rem;
  }
}

/* === MAIN CONTENT === */
.site-main {
  margin-top: 80px;
  padding: var(--spacing-2xl) 0;
  min-height: calc(100vh - 80px - 300px);
  position: relative;
  z-index: 1;
  overflow-y: visible;
  overflow-x: hidden;
}

/* Responsive main content margins */
@media (max-width: 768px) {
  .site-main {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 300px);
  }
}

@media (max-width: 480px) {
  .site-main {
    margin-top: 65px;
    min-height: calc(100vh - 65px - 300px);
  }
}

/* Ensure content can scroll */
.blog-container,
.single-post-container {
  position: relative;
  z-index: 1;
  overflow-y: visible;
  overflow-x: hidden;
}

/* Fix any premium UI conflicts */
.premium-header + .site-main {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/* Critical scrolling fix */
html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  overflow-y: auto !important;
}

/* Force content to be scrollable */
.site-main,
.blog-container,
.single-post-container {
  overflow: visible !important;
  position: relative !important;
}

/* Ensure content doesn't hide behind fixed header */
body {
  padding-top: 0;
}

/* Add proper spacing for fixed header */
.site-header + .site-main {
  margin-top: 80px;
}

/* Container for proper content flow */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  overflow: visible;
}

/* Ensure all content containers can scroll */
.blog-container,
.single-post-container,
.post-content-wrapper {
  overflow: visible;
  position: relative;
}

/* Header content layout fixes */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
}

/* Site logo styling */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  padding: var(--spacing-sm) 0;
}

.site-logo:hover {
  transform: translateY(-1px);
}

.site-logo img,
.site-logo-svg {
  height: 40px;
  width: auto;
  filter: drop-shadow(var(--shadow-sm));
  flex-shrink: 0;
}

.site-logo-svg {
  display: block;
}

/* Navigation fixes */
.main-navigation {
  display: flex;
  gap: var(--spacing-2xl);
  align-items: center;
  flex-grow: 1;
  justify-content: center;
}

.main-navigation .nav-links {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation .nav-links a {
  color: #6b7280;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  position: relative;
}

.main-navigation .nav-links a:hover {
  color: #111827;
  background: transparent;
  transform: translateY(-1px);
}

/* CTA Button fixes */
.cta-button {
  background: #0D9488;
  color: white;
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.cta-button:hover {
  background: #0F766E;
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Mobile menu toggle - matches main site exactly */
.mobile-menu-toggle {
  display: inline-flex;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle:hover {
  color: #6b7280;
  background: #f3f4f6;
}

.mobile-menu-toggle:focus {
  outline: none;
  ring: 2px;
  ring-inset: true;
  ring-color: #0D9488;
}

.mobile-menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu - improved for better UX and accessibility */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  z-index: 1020;
  min-height: 400px; /* Ensure adequate height for all menu items */
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.mobile-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile navigation container */
.mobile-nav {
  width: 100%;
}

/* Mobile navigation links container */
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0; /* Remove default gaps */
}

/* Individual mobile navigation links */
.mobile-nav-link {
  display: block;
  width: 100%;
  padding: 16px 20px; /* Large touch targets (44px minimum for accessibility) */
  font-size: 16px; /* Minimum 16px for mobile readability */
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
  text-align: left;
  line-height: 1.5;
}

/* Hover and focus states for mobile links */
.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background-color: #f9fafb;
  color: #374151;
  outline: none;
}

/* Focus visible for keyboard navigation */
.mobile-nav-link:focus-visible {
  background-color: #f3f4f6;
  box-shadow: inset 0 0 0 2px #0D9488;
}

/* Active state for current page */
.mobile-nav-link.active {
  background-color: #0D9488;
  color: white;
}

/* Mobile CTA button container */
.mobile-cta-container {
  padding: 20px;
  border-top: 1px solid #f3f4f6;
  margin-top: 8px;
}

/* Mobile CTA button */
.mobile-cta-button {
  display: block;
  width: 100%;
  padding: 16px 20px;
  background-color: #0D9488;
  color: white;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  transition: all 0.2s ease;
  line-height: 1.5;
}

/* Mobile CTA button hover and focus states */
.mobile-cta-button:hover,
.mobile-cta-button:focus {
  background-color: #0F766E;
  outline: none;
}

/* Focus visible for keyboard navigation */
.mobile-cta-button:focus-visible {
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.3);
}

/* Mobile menu responsive adjustments */
@media (max-width: 768px) {
  .mobile-menu {
    top: 70px; /* Match mobile header height */
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    top: 65px; /* Match small mobile header height */
  }
}

/* Mobile menu modifiers */
.absolute {
  position: absolute;
}

.top-full {
  top: 100%;
}

.inset-x-0 {
  left: 0;
  right: 0;
}

.p-2 {
  padding: 0.5rem;
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.origin-top-right {
  transform-origin: top right;
}

.md\:hidden {
  display: none;
}

/* Mobile menu content */
.rounded-lg {
  border-radius: 0.5rem;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.ring-1 {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.ring-black {
  --tw-ring-color: #000000;
}

.ring-opacity-5 {
  --tw-ring-opacity: 0.05;
}

.bg-white {
  background-color: #ffffff;
}

.divide-y-2 > * + * {
  border-top-width: 2px;
  border-top-color: #f9fafb;
}

.divide-gray-50 > * + * {
  border-top-color: #f9fafb;
}

.pt-5 {
  padding-top: 1.25rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.space-y-6 > * + * {
  margin-top: 1.5rem;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile menu display states */
.mobile-menu:not(.active) {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive fixes - matches main site exactly */
@media (max-width: 768px) {
  .main-navigation {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: inline-flex;
  }
  
  .header-content {
    justify-content: space-between;
  }
  
  /* Hide desktop elements on mobile */
  .md\:flex {
    display: none;
  }
  
  /* Show mobile elements */
  .md\:hidden {
    display: block;
  }
  
  /* Mobile header adjustments */
  .site-header {
    height: 70px;
  }
  
  .py-4 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  /* Mobile logo sizing */
  .h-10 {
    height: 2rem;
  }
  
  /* Mobile spacing adjustments */
  .px-4 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .sm\:px-6 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .site-header {
    height: 65px;
  }
  
  .py-4 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .h-10 {
    height: 1.75rem;
  }
  
  .px-4 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* === PAGE HEADER === */
.page-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-2xl) 0;
}

.page-title {
  color: var(--brand-primary);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-md);
  font-weight: 800;
}

/* === MODERN BLOG LAYOUT === */
.blog-container {
  padding: var(--spacing-2xl) 0;
}

/* Blog Header */
.blog-header {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, #F0FDFA 0%, #ffffff 100%);
  border-radius: var(--radius-xl);
  margin: 0 var(--spacing-md) var(--spacing-3xl);
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.blog-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
  letter-spacing: -0.025em;
}

.blog-description {
  font-size: 1.25rem;
  color: var(--brand-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-lg);
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--brand-primary);
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-dark));
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover::before {
  transform: scaleX(1);
}

/* Enhanced card styling */
.blog-card {
  position: relative;
}

.blog-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.02) 0%, rgba(15, 118, 110, 0.01) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover::after {
  opacity: 1;
}

/* Blog Card Image */
.blog-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 148, 136, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.blog-card:hover .image-overlay {
  opacity: 1;
}

.read-more-text {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog Card Content */
.blog-card-content {
  padding: var(--spacing-xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.blog-card-header {
  margin-bottom: var(--spacing-lg);
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  flex-wrap: wrap;
}

.publish-date {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--brand-gray-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.publish-date .icon {
  width: 16px;
  height: 16px;
  color: var(--brand-primary);
}

.blog-categories {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.blog-categories a {
  color: var(--brand-primary);
  font-size: 0.75rem;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--brand-secondary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
  font-weight: 500;
}

.blog-categories a:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}

.blog-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
}

.blog-card-title a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--brand-primary-dark);
}

/* Blog Card Excerpt */
.blog-card-excerpt {
  color: var(--brand-gray);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
  font-size: 0.95rem;
  flex-grow: 1;
}

/* Blog Card Footer */
.blog-card-footer {
  margin-top: auto;
  border-top: 1px solid #f3f4f6;
  padding-top: var(--spacing-md);
  background: rgba(249, 250, 251, 0.5);
  margin: var(--spacing-lg) calc(-1 * var(--spacing-xl)) calc(-1 * var(--spacing-xl));
  padding: var(--spacing-md) var(--spacing-xl) var(--spacing-xl);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.blog-card-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid var(--brand-primary);
  background: rgba(13, 148, 136, 0.05);
}

.blog-card-button:hover {
  color: white;
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

.blog-card-button .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.blog-card-button:hover .arrow-icon {
  transform: translateX(4px);
}

.blog-tags {
  margin-top: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.tag-label {
  font-size: 0.625rem;
  color: #9ca3af;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: var(--spacing-xs);
}

.blog-tags a {
  color: #6b7280;
  font-size: 0.625rem;
  padding: 2px 6px;
  background: #f3f4f6;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid #e5e7eb;
  font-weight: 400;
  line-height: 1;
  margin-right: 4px;
  margin-bottom: 4px;
  display: inline-block;
}

.blog-tags a:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}

/* Blog Pagination */
.blog-pagination {
  text-align: center;
  margin-top: var(--spacing-3xl);
}

.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-sm);
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-list li {
  margin: 0;
}

.pagination-list a,
.pagination-list span {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--brand-primary);
  font-weight: 500;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.pagination-list a:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}

.pagination-list .current {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
}

.pagination-icon {
  width: 16px;
  height: 16px;
}

/* No Posts */
.no-posts {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-2xl);
}

.no-posts-content {
  max-width: 500px;
  margin: 0 auto;
}

.no-posts-icon {
  width: 80px;
  height: 80px;
  color: var(--brand-gray-light);
  margin: 0 auto var(--spacing-lg);
}

.no-posts-title {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 700;
}

.no-posts-description {
  color: var(--brand-gray);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.no-posts-button {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  background: var(--brand-primary);
  color: white;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.no-posts-button:hover {
  background: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* === MODERN SINGLE POST LAYOUT === */
.single-post-container {
  padding: var(--spacing-2xl) 0;
}

.single-post {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}

.single-post::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-dark));
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

/* Post Hero Section */
.post-hero {
  position: relative;
  margin-bottom: var(--spacing-2xl);
}

.post-hero-image {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-hero-content {
  text-align: center;
  color: white;
  max-width: 800px;
  padding: var(--spacing-2xl);
}

.post-hero-content * {
  color: white;
}

.post-meta-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.publish-date-hero {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: 1rem;
  font-weight: 500;
  color: white;
  opacity: 0.9;
}

.publish-date-hero .icon {
  width: 18px;
  height: 18px;
  color: white;
}

.post-categories-hero {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  justify-content: center;
}

.post-categories-hero a {
  color: white;
  font-size: 0.875rem;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.post-categories-hero a:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.post-title-hero {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.post-excerpt-hero {
  font-size: 1.25rem;
  color: white;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Post Content Wrapper */
.post-content-wrapper {
  display: block;
  padding: var(--spacing-2xl);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}



/* Simple Header (when no featured image) */
.post-header-simple {
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  background: linear-gradient(135deg, var(--brand-secondary) 0%, white 100%);
  border-radius: var(--radius-xl);
}

.post-meta-simple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  flex-wrap: wrap;
}

.publish-date-simple {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--brand-gray-light);
  font-size: 1rem;
  font-weight: 500;
}

.publish-date-simple .icon {
  width: 18px;
  height: 18px;
  color: var(--brand-primary);
}

.post-categories-simple {
  display: flex;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
  justify-content: center;
}

.post-categories-simple a {
  color: var(--brand-primary);
  font-size: 0.875rem;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: white;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
}

.post-categories-simple a:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}

.post-title-simple {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.post-excerpt-simple {
  font-size: 1.25rem;
  color: var(--brand-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Post Content */
.post-content {
  line-height: 1.8;
  color: var(--foreground);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-3xl);
  max-width: 100%;
  text-align: left;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4,
.post-content h5,
.post-content h6 {
  color: var(--brand-primary);
  margin-top: var(--spacing-3xl);
  margin-bottom: var(--spacing-lg);
  font-weight: 700;
  line-height: 1.3;
}

.post-content h1 { font-size: 2.5rem; }
.post-content h2 { font-size: 2rem; }
.post-content h3 { font-size: 1.75rem; }
.post-content h4 { font-size: 1.5rem; }
.post-content h5 { font-size: 1.25rem; }
.post-content h6 { font-size: 1.125rem; }

.post-content p {
  margin-bottom: var(--spacing-lg);
}

.post-content ul,
.post-content ol {
  margin-bottom: var(--spacing-lg);
  padding-left: var(--spacing-2xl);
}

.post-content li {
  margin-bottom: var(--spacing-sm);
}

.post-content blockquote {
  border-left: 4px solid var(--brand-primary);
  padding-left: var(--spacing-xl);
  margin: var(--spacing-2xl) 0;
  font-style: italic;
  color: var(--brand-gray);
  background: var(--brand-secondary);
  padding: var(--spacing-xl);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.post-content blockquote p {
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

.post-content blockquote cite {
  color: var(--brand-primary);
  font-weight: 600;
  font-style: normal;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin: var(--spacing-xl) 0;
  box-shadow: var(--shadow-md);
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-xl) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.post-content th,
.post-content td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.post-content th {
  background: var(--brand-secondary);
  font-weight: 600;
  color: var(--brand-primary);
}

.post-content code {
  background: var(--brand-secondary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 0.875rem;
  color: var(--brand-primary);
}

.post-content pre {
  background: var(--brand-secondary);
  padding: var(--spacing-xl);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: var(--spacing-xl) 0;
  border: 1px solid var(--border);
}

.post-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* Post Tags */
.post-tags {
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-xl);
  background: var(--brand-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.tags-title {
  font-size: 1.25rem;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
  font-weight: 600;
}

.tags-list {
  display: flex;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
}

.tags-list a {
  color: var(--brand-primary);
  font-size: 0.75rem;
  padding: 3px 8px;
  background: white;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid var(--border);
  margin-right: 6px;
  margin-bottom: 6px;
  display: inline-block;
}

.tags-list a:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}

/* Author Bio */
.post-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-3xl);
  padding: var(--spacing-xl);
  background: var(--brand-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--brand-primary);
}

.author-name {
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-sm);
  font-weight: 700;
}

.author-bio {
  color: var(--brand-gray);
  line-height: 1.6;
  margin: 0;
}

/* Post Navigation - Redesigned for better tidiness */
.post-navigation {
  margin-top: var(--spacing-3xl);
  padding: var(--spacing-2xl);
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.post-navigation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0D9488, #0F766E);
}

.nav-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-xl);
  text-decoration: none;
  color: var(--foreground);
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  background: white;
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 120px;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.nav-link:hover {
  border-color: #0D9488;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 148, 136, 0.15);
}

.nav-link:hover::before {
  opacity: 1;
}

.prev-link {
  text-align: left;
  justify-content: flex-start;
}

.next-link {
  text-align: right;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Ensure perfect alignment */
.prev-link .nav-content {
  text-align: left;
}

.next-link .nav-content {
  text-align: right;
}

.nav-arrow-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0D9488 0%, #0F766E 100%);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.nav-link:hover .nav-arrow-container {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
}

.nav-arrow {
  width: 20px;
  height: 20px;
  color: white;
  stroke-width: 2.5;
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  min-width: 0;
  flex-grow: 1;
  justify-content: center;
  height: 100%;
}

.nav-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.nav-title {
  font-size: 1rem;
  color: #111827;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.nav-link:hover .nav-title {
  color: #0D9488;
}





/* Categories Widget */
.categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-list li {
  margin-bottom: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--border);
}

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

.categories-list a {
  color: var(--brand-primary);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.categories-list a:hover {
  color: var(--brand-primary-dark);
}

.categories-list .count {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
}

/* Tags Widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xs);
}

.tags-cloud a {
  color: var(--brand-primary);
  font-size: 0.875rem;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: var(--brand-secondary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.tags-cloud a:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .post-content-wrapper {
    padding: var(--spacing-xl);
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .post-content-wrapper {
    padding: var(--spacing-lg);
    max-width: 98%;
  }
  
  .post-title-simple {
    font-size: 2rem;
  }
  
  /* Mobile hero improvements */
  .post-hero-image {
    height: 300px;
  }
  
  .post-title-hero {
    font-size: 2rem;
  }
  
  .post-excerpt-hero {
    font-size: 1.1rem;
  }
  
  /* Mobile post navigation improvements */
  .post-navigation {
    padding: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
  }
  
  .nav-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .nav-link {
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
  }
  
  .nav-arrow-container {
    width: 40px;
    height: 40px;
  }
  
  .nav-arrow {
    width: 18px;
    height: 18px;
  }
  
  .nav-title {
    font-size: 0.9rem;
  }
  
  .nav-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .blog-header {
    margin: 0 var(--spacing-sm) var(--spacing-2xl);
    padding: var(--spacing-2xl) var(--spacing-lg);
  }
  
  .blog-title {
    font-size: 2.5rem;
  }
  
  .post-title-hero,
  .post-title-simple {
    font-size: 2.5rem;
  }
  
  .post-hero-image {
    height: 300px;
  }
  
  .nav-links {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
    .post-author {
      flex-direction: column;
      text-align: center;
    }
  }

.post-content ul {
  list-style: none;
  padding-left: 0;
}

.post-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.post-content ul li::before {
  content: '•';
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.4;
}

.post-content ol {
  counter-reset: item;
  list-style: none;
  padding-left: 0;
}

.post-content ol li {
  counter-increment: item;
  position: relative;
  padding-left: 2rem;
  margin-bottom: var(--spacing-sm);
}

.post-content ol li::before {
  content: counter(item) '.';
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 1.1em;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.4;
}

.post-content blockquote {
  border-left: 4px solid var(--brand-primary);
  padding: var(--spacing-lg);
  margin: var(--spacing-2xl) 0;
  font-style: italic;
  color: var(--brand-gray-light);
  background: var(--brand-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}

.post-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--brand-primary);
  position: absolute;
  top: -1rem;
  left: var(--spacing-lg);
  opacity: 0.3;
}

.post-content blockquote p:last-child {
  margin-bottom: 0;
}

.post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: var(--spacing-2xl) 0;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s ease;
}

.post-content img:hover {
  transform: scale(1.02);
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--spacing-2xl) 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.post-content th,
.post-content td {
  padding: var(--spacing-md);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.post-content th {
  background: var(--brand-secondary);
  font-weight: 600;
  color: var(--brand-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.post-content tr:hover {
  background: var(--brand-secondary);
}

/* === ENHANCED POST NAVIGATION === */
.post-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid var(--border);
  gap: var(--spacing-lg);
}

.nav-previous,
.nav-next {
  position: relative;
  display: flex;
  height: 100%;
}

.nav-previous .nav-link,
.nav-next .nav-link {
  width: 100%;
  display: flex;
  align-items: center;
}



/* === ENHANCED PAGINATION === */
.akl-pagination {
  text-align: center;
  margin: var(--spacing-2xl) 0;
}

.akl-pagination .page-numbers {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  margin: 0 var(--spacing-xs);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--brand-primary);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  min-width: 44px;
  text-align: center;
}

.akl-pagination .page-numbers:hover,
.akl-pagination .page-numbers.current {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.akl-pagination ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: var(--spacing-xs);
  flex-wrap: wrap;
}

.akl-pagination li {
  margin: 0;
}

/* === ENHANCED BREADCRUMBS === */
.breadcrumbs {
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-lg);
  background: var(--brand-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  align-items: center;
}

.breadcrumbs li {
  margin: 0;
  display: flex;
  align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
  content: '→';
  margin-left: var(--spacing-sm);
  color: var(--brand-gray-light);
  font-weight: 300;
}

.breadcrumbs a {
  color: var(--brand-primary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--brand-primary-dark);
  background: white;
  box-shadow: var(--shadow-sm);
}

/* === ENHANCED SEARCH FORM === */
.search-form {
  display: flex;
  gap: var(--spacing-sm);
  max-width: 400px;
  margin: 0 auto var(--spacing-2xl);
  position: relative;
}

.search-field {
  flex: 1;
  padding: var(--spacing-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background: white;
}

.search-field:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.search-submit {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-submit:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.search-submit:active {
  transform: translateY(0);
}

/* === ENHANCED NO POSTS === */
.no-posts {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-2xl);
  background: var(--brand-secondary);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border);
  margin: var(--spacing-2xl) 0;
}

.no-posts h1 {
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
}

.no-posts p {
  color: var(--brand-gray-light);
  font-size: 1.125rem;
  margin-bottom: var(--spacing-2xl);
}

.no-posts h2 {
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
}

.no-posts h3 {
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
}

/* === ENHANCED FOOTER === */
.site-footer {
  background: var(--brand-gray);
  color: white;
  padding: var(--spacing-3xl) 0 var(--spacing-lg) 0;
  margin-top: var(--spacing-3xl);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-primary-dark));
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  position: relative;
  padding-bottom: var(--spacing-sm);
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2rem;
  height: 2px;
  background: var(--brand-primary);
  border-radius: 1px;
}

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

.footer-section li {
  margin-bottom: var(--spacing-sm);
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  padding: var(--spacing-xs) 0;
  display: inline-block;
  position: relative;
}

.footer-section a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--brand-primary);
  transition: width 0.2s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-section a:hover::after {
  width: 100%;
}

.contact-info p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin-bottom: var(--spacing-sm);
}

.contact-info a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: white;
}

.footer-bottom {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid #4b5563;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: var(--spacing-lg);
}

.footer-links a {
  color: #9ca3af;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: white;
}

/* === ENHANCED MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #6b7280;
  padding: var(--spacing-sm);
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.mobile-menu-toggle:hover {
  color: #111827;
  background: var(--brand-secondary);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  overflow: hidden;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile menu display states */
.mobile-menu:not(.active) {
  display: none;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu .main-navigation {
  /* Mobile navigation styles handled by main navigation section above */
}

.mobile-menu .cta-button {
  margin: 0;
  text-align: center;
  width: 100%;
  background: #0D9488;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.mobile-menu .cta-button:hover {
  background: #0F766E;
  transform: none;
}

/* === ENHANCED 404 & ERROR PAGES === */
.error-404 {
  text-align: center;
  padding: var(--spacing-3xl) var(--spacing-2xl);
  background: var(--brand-secondary);
  border-radius: var(--radius-xl);
  border: 2px dashed var(--border);
  margin: var(--spacing-2xl) 0;
}

.error-404 .page-title {
  font-size: 6rem;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-md);
  line-height: 1;
  font-weight: 800;
  text-shadow: var(--shadow-sm);
}

.error-subtitle {
  font-size: 2rem;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-2xl);
  font-weight: 600;
}

.error-description {
  font-size: 1.125rem;
  color: var(--brand-gray-light);
  max-width: 600px;
  margin: 0 auto var(--spacing-2xl);
  line-height: 1.6;
}

.error-actions {
  margin-bottom: var(--spacing-2xl);
}

.helpful-links {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.helpful-links h3 {
  color: var(--brand-primary);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

.links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.links-list li a {
  color: var(--foreground);
  text-decoration: none;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  display: inline-block;
  border: 1px solid transparent;
}

.links-list li a:hover {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.search-section {
  margin-top: var(--spacing-2xl);
}

.search-section h3 {
  color: var(--brand-primary);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

/* === MAX WIDTH UTILITIES === */
.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* === ADDITIONAL POST STYLES === */
.post-content code {
  background: var(--brand-secondary);
  padding: var(--spacing-xs) var(--spacing-sm);
  border-radius: var(--radius-sm);
  font-family: 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace;
  font-size: 0.875rem;
  border: 1px solid var(--border);
}

.post-content pre {
  background: var(--brand-secondary);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  margin: var(--spacing-2xl) 0;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.post-content pre code {
  background: none;
  padding: 0;
  border: none;
}

/* === CATEGORY & TAG PAGES === */
.category-header,
.tag-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
  padding: var(--spacing-2xl);
  background: var(--brand-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.category-header h1,
.tag-header h1 {
  color: var(--brand-primary);
  margin-bottom: var(--spacing-sm);
}

.category-description,
.tag-description {
  color: var(--brand-gray-light);
  font-size: 1.125rem;
}

/* === COMMENTS === */
.comments-area {
  margin-top: var(--spacing-2xl);
  padding-top: var(--spacing-2xl);
  border-top: 1px solid var(--border);
}

.comments-title {
  color: var(--brand-primary);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
}

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

.comment {
  background: var(--brand-secondary);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comment-author {
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: var(--spacing-sm);
}

.comment-meta {
  font-size: 0.875rem;
  color: var(--brand-gray-light);
  margin-bottom: var(--spacing-md);
}

.comment-content {
  color: var(--foreground);
  line-height: 1.6;
}

.comment-form {
  background: var(--brand-secondary);
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.comment-form label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: 500;
  color: var(--foreground);
}

.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: var(--spacing-md);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  margin-bottom: var(--spacing-md);
  transition: all 0.2s ease;
  background: white;
}

.comment-form input:focus,
.comment-form textarea:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.comment-form .submit {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.comment-form .submit:hover {
  background: var(--brand-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.comment-form .submit:active {
  transform: translateY(0);
}

/* === SEARCH RESULTS === */
.search-results-count {
  color: var(--brand-gray-light);
  font-size: 1.125rem;
  margin-bottom: 0;
  font-weight: 500;
}

.search-suggestions {
  background: white;
  padding: var(--spacing-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--spacing-2xl);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.search-suggestions h3 {
  color: var(--brand-primary);
  font-size: 1.25rem;
  margin-bottom: var(--spacing-md);
}

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

.suggestions-list li {
  color: var(--foreground);
  margin-bottom: var(--spacing-sm);
  padding-left: var(--spacing-lg);
  position: relative;
}

.suggestions-list li::before {
  content: '•';
  color: var(--brand-primary);
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.5rem;
}

.search-again {
  margin-top: var(--spacing-2xl);
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-navigation {
    display: none;
  }
  
  .site-main {
    margin-top: 70px;
    padding: var(--spacing-lg) 0;
  }
  
  .container {
    padding: 0 var(--spacing-md);
  }
  
  .post-item,
  .single-post {
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  
  .post-navigation {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .nav-next {
    text-align: left;
  }
  
  .error-404 .page-title {
    font-size: 4rem;
  }
  
  .error-subtitle {
    font-size: 1.5rem;
  }
  
  .links-list {
    align-items: center;
  }
  
  .comment-form {
    padding: var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .post-item,
  .single-post {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .search-form {
    flex-direction: column;
  }
  
  .search-submit {
    width: 100%;
  }
  
  .error-404 .page-title {
    font-size: 3rem;
  }
  
  .error-subtitle {
    font-size: 1.25rem;
  }
  
  .helpful-links {
    padding: var(--spacing-lg);
  }
  
  .comment {
    padding: var(--spacing-md);
  }
}

/* === UTILITY CLASSES === */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: var(--spacing-md);
}

.mb-8 {
  margin-bottom: var(--spacing-2xl);
}

.mt-4 {
  margin-top: var(--spacing-md);
}

.mt-8 {
  margin-top: var(--spacing-2xl);
}

.py-8 {
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-2xl);
}

.px-4 {
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

.border-t {
  border-top: 1px solid var(--border);
}

.border-gray-200 {
  border-color: #e5e7eb;
}

/* === SEO & ACCESSIBILITY OPTIMIZATIONS === */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip link - visible on focus for keyboard navigation */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-md);
  z-index: 100000;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 10px;
  outline: 3px solid var(--brand-primary-light);
  outline-offset: 2px;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* === PRINT STYLES === */
@media print {
  .site-header,
  .site-footer,
  .mobile-menu-toggle,
  .comment-form,
  .search-form {
    display: none;
  }
  
  .site-main {
    margin-top: 0;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  .post-item,
  .single-post {
    box-shadow: none;
    border: 1px solid #000;
  }
  
  .error-404 .page-title {
    font-size: 3rem;
  }
  
  .error-subtitle {
    font-size: 1.5rem;
  }
  
  .helpful-links,
  .search-section {
    display: none;
  }
} 