/**
 * Blog Single Post Complete Professional Styling
 * All styling needed for perfect blog post display
 */

:root {
    --primary-color: #667eea;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f3f4f6;
    --text-dark: #374151;
    --border-color: #e5e7eb;
}

/* Post Hero Section */
.post-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    margin-bottom: 60px;
}

.hero-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.post-category {
    display: inline-block;
    background: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.post-meta {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 16px;
    opacity: 0.95;
}

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

/* Breadcrumbs */
.breadcrumbs-section {
    background: var(--light-color);
    padding: 15px 0;
    margin-bottom: 30px;
}

.breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #6b7280;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Main Content Area */
.blog-post-single {
    padding: 60px 0;
}

.post-content-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Post Excerpt - FIXED STYLING */
.post-excerpt {
    font-size: 20px !important;
    line-height: 1.7 !important;
    color: #6b7280 !important;
    background: #f9fafb !important;
    padding: 25px 30px !important;
    border-left: 4px solid var(--primary-color) !important;
    margin-bottom: 35px !important;
    border-radius: 0 8px 8px 0 !important;
    font-style: italic;
}

/* Video Embed */
.post-video-embed {
    margin: 35px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Post Body Typography - FIXED */
.post-body {
    font-size: 18px !important;
    line-height: 1.8 !important;
    color: #374151 !important;
}

.post-body h2 {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin: 45px 0 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 3px solid var(--primary-color) !important;
    scroll-margin-top: 100px;
}

.post-body h3 {
    font-size: 26px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    margin: 35px 0 18px !important;
    scroll-margin-top: 100px;
}

.post-body h4 {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: #4b5563 !important;
    margin: 30px 0 15px !important;
}

.post-body p {
    margin-bottom: 22px !important;
}

.post-body ul,
.post-body ol {
    margin: 25px 0 !important;
    padding-left: 35px !important;
}

.post-body li {
    margin-bottom: 14px !important;
    line-height: 1.7 !important;
}

.post-body blockquote {
    border-left: 5px solid var(--primary-color) !important;
    padding: 25px 30px !important;
    margin: 35px 0 !important;
    background: linear-gradient(to right, #f9fafb, white) !important;
    font-style: italic !important;
    color: #6b7280 !important;
    border-radius: 0 8px 8px 0 !important;
    position: relative;
}

.post-body blockquote::before {
    content: '"';
    font-size: 60px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 15px;
    font-family: Georgia, serif;
}

.post-body img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    margin: 30px 0 !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.post-body a {
    color: var(--primary-color) !important;
    text-decoration: underline !important;
    font-weight: 500;
}

.post-body a:hover {
    color: var(--secondary-color) !important;
}

.post-body code {
    background: #f3f4f6 !important;
    padding: 2px 8px !important;
    border-radius: 4px !important;
    font-family: 'Courier New', monospace !important;
    font-size: 16px !important;
    color: #e83e8c !important;
}

.post-body pre {
    background: #1f2937 !important;
    color: #f9fafb !important;
    padding: 20px !important;
    border-radius: 8px !important;
    overflow-x: auto !important;
    margin: 25px 0 !important;
}

.post-body pre code {
    background: none !important;
    color: inherit !important;
    padding: 0 !important;
}

.post-body table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 30px 0 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

.post-body th,
.post-body td {
    padding: 15px !important;
    text-align: left !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.post-body th {
    background: var(--primary-color) !important;
    color: white !important;
    font-weight: 600 !important;
}

.post-body tr:hover {
    background: #f9fafb !important;
}

/* Gallery Styles - FIXED */
.post-gallery {
    margin: 45px 0 !important;
    padding: 35px !important;
    background: #f9fafb !important;
    border-radius: 15px !important;
}

.gallery-title {
    font-size: 26px !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    color: var(--dark-color) !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.gallery-title i {
    color: var(--primary-color) !important;
    font-size: 28px !important;
}

.gallery-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
    gap: 20px !important;
}

.gallery-item {
    position: relative !important;
    aspect-ratio: 4/3 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

.gallery-item:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
}

.gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.3s !important;
}

.gallery-item:hover img {
    transform: scale(1.1) !important;
}

.gallery-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0,0,0,0.6) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    transition: opacity 0.3s !important;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1 !important;
}

.gallery-overlay i {
    color: white !important;
    font-size: 40px !important;
}

/* Gallery Lightbox */
.gallery-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.95);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 80vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 45px;
    color: white;
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--secondary-color);
}

.lightbox-prev,
.lightbox-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -30px;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.3s;
    user-select: none;
    z-index: 10001;
    background: rgba(0,0,0,0.5);
    border-radius: 6px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(245, 158, 11, 0.8);
}

.lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: white;
    padding: 20px;
    font-size: 18px;
}

/* Post Tags - FIXED */
.post-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    align-items: center !important;
    margin: 40px 0 !important;
    padding: 25px 0 !important;
    border-top: 2px solid #e5e7eb !important;
    border-bottom: 2px solid #e5e7eb !important;
}

.post-tags i {
    color: var(--primary-color) !important;
    font-size: 20px !important;
    margin-right: 5px !important;
}

.post-tags .tag {
    background: var(--light-color) !important;
    color: var(--text-dark) !important;
    padding: 10px 18px !important;
    border-radius: 25px !important;
    text-decoration: none !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.3s !important;
    border: 2px solid transparent !important;
}

.post-tags .tag:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3) !important;
}

/* Share Section - FIXED BACKGROUND */
.share-section {
    margin: 45px 0 !important;
    padding: 35px !important;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    border-radius: 15px !important;
    border: 2px solid #e5e7eb !important;
}

.share-section h3 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    color: var(--dark-color) !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.share-section h3::before {
    content: "📤";
    font-size: 28px;
}

.share-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.share-btn {
    padding: 14px 28px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    color: white !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    transition: all 0.3s !important;
    font-size: 15px !important;
    border: none !important;
    cursor: pointer !important;
}

.share-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2) !important;
    color: white !important;
}

.share-btn i {
    font-size: 18px !important;
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0c5ccd 100%) !important;
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%) !important;
}

.share-btn.linkedin {
    background: linear-gradient(135deg, #0a66c2 0%, #084d8f 100%) !important;
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #1da851 100%) !important;
}

.share-btn.email {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%) !important;
}

/* Author Box */
.author-box {
    display: flex !important;
    gap: 25px !important;
    padding: 35px !important;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%) !important;
    border-radius: 15px !important;
    margin: 45px 0 !important;
    border: 2px solid #e5e7eb !important;
}

.author-avatar {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: 4px solid white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.author-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

.author-initial {
    width: 90px !important;
    height: 90px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    border: 4px solid white !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.author-info h4 {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--dark-color) !important;
    margin-bottom: 12px !important;
}

.author-info p {
    color: #6b7280 !important;
    line-height: 1.7 !important;
    margin: 0 !important;
    font-size: 16px !important;
}

/* Sidebar Styles */
.post-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

/* Remove default white background for TOC widget */
.sidebar-widget.toc-widget {
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

.widget-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--dark-color) !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 3px solid var(--primary-color) !important;
}

/* Table of Contents - Beautiful Rounded Backgrounds */
/* Table of Contents - Beautiful Rounded Backgrounds with Scroll */
.toc-widget {
    background: white !important;
    padding: 25px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
}

/* TOC Header Container */
.toc-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
    padding-bottom: 12px !important;
    border-bottom: 2px solid #e2e8f0 !important;
    flex-shrink: 0 !important;
}

.widget-title {
    color: #1e293b !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    flex: 1 !important;
}

.widget-title::before {
    content: "📑" !important;
    font-size: 20px !important;
}

/* Toggle Button */
.toc-toggle {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    border: none !important;
    color: white !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3) !important;
    flex-shrink: 0 !important;
}

.toc-toggle:hover {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.5) !important;
}

.toc-toggle:active {
    transform: scale(0.95) !important;
}

.toc-toggle i {
    pointer-events: none !important;
}

.toc-navigation {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    flex: 1 !important;
    padding-right: 8px !important;
    transition: max-height 0.4s ease, opacity 0.3s ease, overflow 0.4s ease !important;
    max-height: 2000px !important;
    opacity: 1 !important;
}

/* Collapsed state */
.toc-navigation[style*="max-height: 0"] {
    overflow: hidden !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* Toggle button collapsed state */
.toc-toggle.collapsed {
    background: linear-gradient(135deg, #64748b 0%, #475569 100%) !important;
}

/* When expanded, allow scrolling */
.toc-navigation[style*="opacity: 1"] {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}

/* Custom Scrollbar for TOC */
.toc-navigation::-webkit-scrollbar {
    width: 6px !important;
}

.toc-navigation::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
    border-radius: 10px !important;
}

.toc-navigation::-webkit-scrollbar-thumb {
    background: #cbd5e1 !important;
    border-radius: 10px !important;
}

.toc-navigation::-webkit-scrollbar-thumb:hover {
    background: #94a3b8 !important;
}

/* Firefox Scrollbar */
.toc-navigation {
    scrollbar-width: thin !important;
    scrollbar-color: #cbd5e1 #f1f5f9 !important;
}

.toc-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.toc-list li {
    margin-bottom: 8px !important;
}

.toc-link {
    color: #475569 !important;
    text-decoration: none !important;
    display: block !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    background: #f8fafc !important;
    border-left: 3px solid #e2e8f0 !important;
    font-weight: 500 !important;
}

.toc-link:hover {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%) !important;
    color: #2563eb !important;
    border-left-color: #3b82f6 !important;
    transform: translateX(4px) !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15) !important;
}

.toc-link.active {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%) !important;
    color: white !important;
    font-weight: 600 !important;
    border-left-color: #1e40af !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4) !important;
    transform: translateX(4px) !important;
}

/* Nested TOC items */
.toc-list .toc-h3 {
    padding-left: 32px !important;
    font-size: 13px !important;
}

.toc-list .toc-h4 {
    padding-left: 48px !important;
    font-size: 12px !important;
    color: #64748b !important;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
    .toc-widget {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 30px !important;
        max-height: none !important;
    }
    
    .toc-navigation {
        overflow-y: visible !important;
        max-height: none !important;
    }
}


/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%) !important;
    color: white !important;
    border: none !important;
}

.cta-widget .widget-title {
    color: white !important;
    border-bottom-color: rgba(255,255,255,0.3) !important;
}

.btn-book {
    background: white !important;
    color: var(--primary-color) !important;
    padding: 16px 30px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    margin-bottom: 15px !important;
    transition: all 0.3s !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2) !important;
}

.btn-book:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3) !important;
    background: var(--secondary-color) !important;
    color: white !important;
}

.btn-book i {
    margin-right: 8px;
}

.btn-enquiry {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 14px 30px !important;
    border-radius: 10px !important;
    text-decoration: none !important;
    display: block !important;
    text-align: center !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    transition: all 0.3s !important;
}

.btn-enquiry:hover {
    background: white !important;
    color: var(--primary-color) !important;
}

.btn-enquiry i {
    margin-right: 8px;
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex !important;
    gap: 15px !important;
    margin-bottom: 20px !important;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.recent-post-item:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

.recent-post-thumb {
    width: 80px !important;
    height: 80px !important;
    border-radius: 10px !important;
    background-size: cover !important;
    background-position: center !important;
    flex-shrink: 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

.recent-post-info {
    flex: 1 !important;
}

.recent-post-info h5 {
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}

.recent-post-info h5 a {
    color: var(--dark-color) !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.recent-post-info h5 a:hover {
    color: var(--primary-color) !important;
}

.recent-post-date {
    font-size: 13px !important;
    color: #9ca3af !important;
}

/* Related Posts */
.related-posts {
    margin-top: 60px !important;
    padding-top: 40px !important;
    border-top: 3px solid #e5e7eb !important;
}

.related-posts h3 {
    font-size: 30px !important;
    font-weight: 700 !important;
    margin-bottom: 35px !important;
    color: var(--dark-color) !important;
}

.related-posts-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)) !important;
    gap: 30px !important;
}

.related-post-card {
    background: white !important;
    border-radius: 15px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
    transition: all 0.3s !important;
}

.related-post-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
}

.related-post-image {
    height: 200px !important;
    background-size: cover !important;
    background-position: center !important;
    position: relative !important;
}

.related-post-content {
    padding: 25px !important;
}

.related-post-category {
    display: inline-block !important;
    background: var(--primary-color) !important;
    color: white !important;
    padding: 6px 14px !important;
    border-radius: 15px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.related-post-content h4 {
    font-size: 19px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
}

.related-post-content h4 a {
    color: var(--dark-color) !important;
    text-decoration: none !important;
}

.related-post-content h4 a:hover {
    color: var(--primary-color) !important;
}

.related-post-excerpt {
    color: #6b7280 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 15px !important;
}

.related-post-meta {
    display: flex !important;
    gap: 18px !important;
    font-size: 13px !important;
    color: #9ca3af !important;
}

.related-post-meta span {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .post-sidebar {
        position: static;
    }
}

@media (max-width: 991px) {
    .post-title {
        font-size: 38px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .post-hero {
        min-height: 400px;
    }
    
    .post-title {
        font-size: 30px;
    }
    
    .post-meta {
        font-size: 14px;
        gap: 15px;
    }
    
    .post-content-wrapper {
        padding: 25px 20px !important;
    }
    
    .post-body {
        font-size: 16px !important;
    }
    
    .post-body h2 {
        font-size: 26px !important;
    }
    
    .post-body h3 {
        font-size: 22px !important;
    }
    
    .share-buttons {
        flex-direction: column !important;
    }
    
    .share-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    
    .author-box {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr !important;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    .lightbox-prev,
    .lightbox-next {
        font-size: 30px;
        padding: 12px;
    }
}

@media (max-width: 576px) {
    .post-hero {
        min-height: 350px;
    }
    
    .post-title {
        font-size: 26px;
    }
    
    .post-gallery {
        padding: 20px !important;
    }
    
    .gallery-title {
        font-size: 22px !important;
    }
}
/* ============================================
 * ACCESSIBILITY TOOLBAR CENTERING
 * ============================================ */
.accessibility-toolbar .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
}

.accessibility-controls {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
}