/*
Theme Name: TrueFixGuides
Theme URI: https://truefixguides.com
Author: TrueFixGuides Team
Author URI: https://truefixguides.com
Description: A modern, SEO-optimized WordPress theme for tech troubleshooting guides. Features light mode design, glassmorphism, and E-E-A-T compliance.
Version: 2.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fixitguides
Tags: blog, education, tech, guides, seo-optimized, accessibility-ready
*/

/* ==========================================================================
   CSS Variables - Light Mode Premium Design
   ========================================================================== */

:root {
    /* Primary Colors */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #059669;
    --secondary-light: #d1fae5;
    --accent: #f59e0b;
    --accent-light: #fef3c7;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Semantic Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    --tech-blue: #0ea5e9;
    --cyber-dark: #0f172a;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.6);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --glass-shadow-hover: 0 16px 48px rgba(0, 0, 0, 0.12);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #fdf4ff 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    --gradient-accent: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);

    /* Typography */
    --font-heading: 'Space Grotesk', 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-max: 1280px;
    --content-max: 800px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--gradient-hero);
    min-height: 100vh;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: var(--space-md);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-hover);
}

strong {
    font-weight: 600;
    color: var(--gray-800);
}

code {
    font-family: var(--font-mono);
    font-size: 0.875em;
    background: var(--gray-100);
    padding: 0.2em 0.4em;
    border-radius: var(--radius-sm);
    color: var(--primary);
}

pre {
    background: var(--gray-900);
    color: var(--gray-100);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    margin-bottom: var(--space-lg);
}

pre code {
    background: none;
    color: inherit;
    padding: 0;
}

blockquote {
    border-left: 4px solid var(--primary);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--gray-600);
}

ul,
ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

li {
    margin-bottom: var(--space-sm);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-2xl);
    align-items: start;
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Header - Sticky Glassmorphism
   ========================================================================== */

/* ==========================================================================
   Header - Command Center Style
   ========================================================================== */

/* Top Bar */
/* Top Bar */
.tech-top-bar {
    background: var(--gray-100);
    /* Light background */
    color: var(--gray-600);
    /* Dark text */
    padding: 8px 0;
    font-size: 0.75rem;
    font-family: var(--font-mono);
    border-bottom: 1px solid var(--gray-200);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    /* Subtle glow */
}

.status-text strong,
.db-access strong {
    color: var(--primary);
    /* Blue for emphasis */
    font-weight: 600;
}

/* Main Header */
.tech-header {
    background: var(--white);
    /* Clean White */
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Soft shadow */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-md);
    flex-wrap: nowrap;
}

/* Logo Colors */
.tech-header .site-logo {
    color: var(--gray-900);
    /* Dark text */
}

.tech-header .site-logo .logo-icon {
    background: var(--primary-light);
    color: var(--primary);
    box-shadow: none;
}

/* Center Exposed Search */
/* Center Exposed Search - Removed but keeping class for safety or future use */
.header-center-search {
    display: none;
}

.tech-search-form {
    display: flex;
    align-items: center;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 10px 20px;
    transition: all var(--transition-fast);
    color: var(--gray-500);
}

.tech-search-form:focus-within {
    background: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
    transform: translateY(-1px);
}

.tech-search-field {
    background: transparent;
    border: none;
    color: var(--gray-900);
    width: 100%;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.tech-search-field::placeholder {
    color: var(--gray-400);
}

/* Right Section */
/* Right Section */
/* Right Section: Compact & Organized */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    min-width: 0;
}

.tech-header .main-nav ul {
    gap: 4px;
    /* Tight spacing */
    flex-wrap: wrap;
    /* Safety wrap */
    justify-content: flex-end;
}

.tech-header .main-nav a {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.8125rem;
    /* 13px */
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: all 0.2s ease;
}

.tech-header .main-nav a:hover,
.tech-header .main-nav a.active {
    color: var(--primary);
    background: var(--primary-light);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: var(--space-md);
    }

    .header-center-search {
        display: none;
        /* Hide on small screens or move? For now hide to save space */
    }
}

/* Mobile Button light color */
.tech-header .mobile-menu-btn {
    color: var(--white);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gray-900);
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.tech-badge {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    background: var(--gray-100);
    color: var(--gray-500);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid var(--gray-200);
    text-transform: uppercase;
}

.site-logo .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.site-logo span {
    color: var(--primary);
}

/* Navigation */
.main-nav ul {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    font-weight: 500;
    color: var(--gray-600);
    padding: var(--space-sm) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    padding: var(--space-sm);
    cursor: pointer;
    color: var(--gray-700);
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    position: relative;
    transition: background var(--transition-fast);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
    transition: transform var(--transition-normal);
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    bottom: -7px;
}

.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Search Toggle */
.search-toggle {
    background: var(--gray-100);
    border: none;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-500);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.search-toggle:hover {
    background: var(--gray-200);
    color: var(--gray-700);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: var(--space-lg);
        box-shadow: var(--glass-shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: var(--space-md);
    }

    .main-nav a {
        display: block;
        padding: var(--space-md);
    }
}

/* ==========================================================================
   Search Overlay
   ========================================================================== */

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    max-width: 600px;
    width: 90%;
    text-align: center;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.search-overlay.active .search-overlay-content {
    transform: translateY(0);
}

.search-overlay h2 {
    color: var(--white);
    margin-bottom: var(--space-xl);
}

.search-close {
    position: absolute;
    top: var(--space-xl);
    right: var(--space-xl);
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: var(--space-sm);
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.search-close:hover {
    opacity: 1;
}

.search-suggestions {
    margin-top: var(--space-xl);
    color: var(--gray-400);
}

.search-suggestions p {
    margin-bottom: var(--space-md);
    font-size: 0.875rem;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.suggestion-tags a {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    transition: background var(--transition-fast);
}

.suggestion-tags a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

/* Old Hero Grid Removed */

/* ==========================================================================
   Clear Theme - Organized Sections
   ========================================================================== */

/* Hero: Clean & Centered */
/* Hero: Clean & Centered with Background */
.hero {
    /* Background Image Settings */
    background: url('images/hero-tech.webp') no-repeat center bottom;
    background-size: cover;
    min-height: 500px;

    /* Shows full image behind/below content */

    padding: var(--space-4xl) 0 var(--space-4xl) 0;
    /* Extra padding for balance */
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
    position: relative;
}

/* Ensure text is readable if image overlaps */
.hero .container {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    /* Semi-transparent box for text */
    backdrop-filter: blur(4px);
    padding: var(--space-xl);
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--gray-900);
    font-size: 3.5rem;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    line-height: 1.1;
    text-shadow: none;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero p {
    color: var(--gray-500);
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Search Form: Clean Box */
.search-form {
    background: var(--white);
    border: 2px solid var(--gray-200);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
    border-radius: var(--radius-lg);
    padding: 6px;
}

.search-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-light);
}

/* Categories: Organized Grid */
.categories-section {
    background: var(--gray-50);
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 2.5rem;
    color: var(--gray-900);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    gap: var(--space-xl);
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}

.category-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--primary);
}


.search-keywords {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    color: var(--gray-500);
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    align-items: center;
}

.search-keywords a {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}

.search-keywords a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-1px);
}

.search-form {
    display: flex;
    gap: var(--space-sm);
    background: var(--white);
    padding: var(--space-sm);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
}

.search-form input[type="search"] {
    flex: 1;
    border: none;
    padding: var(--space-md) var(--space-lg);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    background: transparent;
}

.search-form button {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    cursor: pointer;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.search-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* ==========================================================================
   Category Cards
   ========================================================================== */

.categories-section {
    padding: var(--space-2xl) 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.section-title {
    font-size: 1.5rem;
    margin: 0;
}

.section-link {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.category-card {
    background: var(--gradient-card);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    /* Tech Card Style */
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, transparent 50%, var(--gray-100) 50%);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--primary-light);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.category-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    color: var(--gray-900);
}

.category-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin: 0;
}

.category-count {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: var(--space-md);
}

/* ==========================================================================
   Article Cards
   ========================================================================== */

.articles-section {
    padding: var(--space-2xl) 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.article-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--glass-shadow-hover);
}

.article-card-image {
    aspect-ratio: 16/9;
    background: var(--gray-100);
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform var(--transition-slow);
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-content {
    padding: var(--space-lg);
}

.article-meta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.article-category {
    background: var(--primary-light);
    color: var(--primary);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.article-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--space-sm);
    line-height: 1.4;
}

.article-card h3 a {
    color: var(--gray-900);
    text-decoration: none;
}

.article-card h3 a:hover {
    color: var(--primary);
}

.article-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
}

.read-more svg {
    transition: transform var(--transition-fast);
}

.read-more:hover svg {
    transform: translateX(4px);
}

/* ==========================================================================
   Single Article
   ========================================================================== */

.article-header {
    padding: var(--space-xl) 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: var(--space-lg);
}

.breadcrumbs a {
    color: var(--gray-500);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs .separator {
    color: var(--gray-300);
}

.article-header h1 {
    margin-bottom: var(--space-md);
}

.article-header-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-lg);
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.article-header-meta .divider {
    width: 4px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 50%;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* Progress Bar */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 50ms linear;
}

/* Article Content */
.article-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.article-content h2 {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

.article-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.article-content h3 {
    margin-top: var(--space-xl);
}

/* Table of Contents */
.toc-sidebar {
    position: sticky;
    top: 100px;
}

.toc-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

.toc-card h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: var(--space-md);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: var(--space-sm);
}

.toc-list a {
    display: block;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.875rem;
    color: var(--gray-600);
    border-left: 2px solid transparent;
    transition: all var(--transition-fast);
}

.toc-list a:hover,
.toc-list a.active {
    color: var(--primary);
    background: var(--primary-light);
    border-left-color: var(--primary);
}

/* Related Posts */
.related-posts {
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--gray-200);
}

.related-posts h3 {
    margin-bottom: var(--space-lg);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

/* ==========================================================================
   Sidebar
   ========================================================================== */

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.widget-title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-3xl) 0 var(--space-xl);
    margin-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-logo span {
    color: var(--primary);
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-column h4 {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--gray-700);
    border-bottom: 1px solid var(--gray-700);
    margin-bottom: var(--space-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.8125rem;
    color: var(--gray-400);
}

.trust-badge svg {
    color: var(--success);
}

/* Copyright */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ==========================================================================
   Pagination
   ========================================================================== */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-2xl) 0;
}

.pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 var(--space-md);
    border-radius: var(--radius-lg);
    font-weight: 500;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
}

.pagination .page-numbers:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .page-numbers.current {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
}

/* ==========================================================================
   404 Page
   ========================================================================== */

.error-404 {
    text-align: center;
    padding: var(--space-3xl) 0;
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-md);
}

/* ==========================================================================
   Search Results
   ========================================================================== */

.search-header {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.search-query {
    color: var(--primary);
}

.search-count {
    color: var(--gray-500);
    font-size: 1rem;
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-sm {
    margin-top: var(--space-sm);
}

.mt-md {
    margin-top: var(--space-md);
}

.mt-lg {
    margin-top: var(--space-lg);
}

.mt-xl {
    margin-top: var(--space-xl);
}

.mb-sm {
    margin-bottom: var(--space-sm);
}

.mb-md {
    margin-bottom: var(--space-md);
}

.mb-lg {
    margin-bottom: var(--space-lg);
}

.mb-xl {
    margin-bottom: var(--space-xl);
}

/* ==========================================================================
   WordPress Core Alignments
   ========================================================================== */

.alignwide {
    margin-left: calc(-1 * var(--space-xl));
    margin-right: calc(-1 * var(--space-xl));
    max-width: calc(100% + var(--space-xl) * 2);
}

.alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.alignleft {
    float: left;
    margin-right: var(--space-lg);
    margin-bottom: var(--space-md);
}

.alignright {
    float: right;
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
}

/* ==========================================================================
   Animation Keyframes
   ========================================================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* ==========================================================================
   Trust Section
   ========================================================================== */

.trust-section {
    padding: var(--space-2xl) 0;
    margin-top: var(--space-xl);
}

.trust-content {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
}

.trust-content h2 {
    margin-bottom: var(--space-sm);
}

.trust-content>p {
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

.trust-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
}

.trust-feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--gray-700);
}

.trust-icon {
    color: var(--success);
    font-weight: bold;
}

/* ==========================================================================
   Archive Header
   ========================================================================== */

.archive-header {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.archive-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.archive-description {
    max-width: 600px;
    margin: 0 auto var(--space-md);
    color: var(--gray-600);
}

.archive-count {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* ==========================================================================
   Page Content
   ========================================================================== */

.page-content {
    padding: var(--space-2xl) 0;
    max-width: var(--content-max);
}

.page-header {
    margin-bottom: var(--space-xl);
}

.page-title {
    margin-bottom: 0;
}

.page-footer {
    margin-top: var(--space-2xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-200);
}

.last-updated {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    color: var(--white);
}

/* ==========================================================================
   No Posts / No Results
   ========================================================================== */

.no-posts,
.no-results {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
}

.no-posts h2,
.no-results h2 {
    margin-bottom: var(--space-md);
}

.no-posts p,
.no-results p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.no-results ul {
    text-align: left;
    max-width: 300px;
    margin: 0 auto var(--space-xl);
}

/* ==========================================================================
   Article Disclaimer
   ========================================================================== */

.article-disclaimer {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-top: var(--space-xl);
}

.article-disclaimer p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ==========================================================================
   Tags
   ========================================================================== */

.article-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.tag {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    transition: background var(--transition-fast);
}

.tag:hover {
    background: var(--primary-light);
    color: var(--primary);
}

/* ==========================================================================
   Widget CTA
   ========================================================================== */

.widget-cta {
    display: block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 600;
    margin-top: var(--space-md);
    transition: transform var(--transition-fast);
}

.widget-cta:hover {
    transform: translateY(-2px);
    color: var(--white);
}

/* ==========================================================================
   WordPress Admin Bar Fix
   ========================================================================== */

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {

    .site-header,
    .site-footer,
    .sidebar,
    .reading-progress,
    .toc-card {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .article-content {
        border: none;
        padding: 0;
    }
}

/* ==========================================================================
   Author Bio (E-E-A-T)
   ========================================================================== */

.author-bio-box {
    display: flex;
    gap: var(--space-lg);
    background: var(--gray-50);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    margin: var(--space-xl) 0;
    align-items: center;
    border-left: 4px solid var(--primary);
}

.author-avatar img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.author-details h4 {
    margin: 0 0 var(--space-xs) 0;
    font-size: 1.25rem;
}

.author-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.author-desc {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .author-bio-box {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   Sidebar & Widgets
   ========================================================================== */

.sidebar {
    position: sticky;
    top: 100px;
}

.widget {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    border: 1px solid var(--gray-200);
}

.widget-title {
    font-size: 1.125rem;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--primary-light);
    display: inline-block;
}

.widget-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-list li {
    margin-bottom: var(--space-sm);
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: var(--space-sm);
}

.widget-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--gray-700);
    font-weight: 500;
}

.widget-list a:hover {
    color: var(--primary);
}

.widget-list .count {
    background: var(--gray-100);
    color: var(--gray-500);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    transition: all var(--transition-fast);
}

.widget-list a:hover .count {
    background: var(--primary-light);
    color: var(--primary);
}

/* Adjust grid for sidebar layout */
.content-wrapper .articles-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* ==========================================================================
   Featured Section
   ========================================================================== */

.featured-section {
    padding-bottom: var(--space-2xl);
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.featured-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.featured-label {
    background: var(--accent-light);
    color: var(--accent);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-md);
    display: inline-block;
}

.featured-card h3 {
    font-size: 2rem;
    margin-bottom: var(--space-md);
}

.featured-card h3 a {
    color: var(--gray-900);
    text-decoration: none;
    background-image: linear-gradient(120deg, var(--primary-light) 0%, var(--primary-light) 100%);
    background-repeat: no-repeat;
    background-size: 100% 0.2em;
    background-position: 0 88%;
    transition: background-size 0.25s ease-in;
}

.featured-card h3 a:hover {
    background-size: 100% 88%;
    color: var(--primary);
}

.featured-card p {
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: var(--space-xl);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-xl);
    font-weight: 600;
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    color: white;
}

.featured-image-decoration {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.decoration-circle {
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    position: absolute;
    animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }

    100% {
        transform: scale(1);
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    .featured-card {
        flex-direction: column;
        padding: var(--space-xl);
        text-align: center;
    }

    .featured-content {
        margin-bottom: var(--space-xl);
    }

    .featured-card h3 {
        font-size: 1.5rem;
    }

    .featured-image-decoration {
        display: none;
    }
}

/* ==========================================================================
   2026 REDESIGN OVERRIDES (Clear Theme & Layout Fixes)
   ========================================================================== */

/* 1. Header Navigation Fix (Compact & Organized) */
.header-right {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 1 !important;
    min-width: 0 !important;
    gap: 12px !important;
}

.tech-header .main-nav ul {
    gap: 4px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: flex-end !important;
}

.tech-header .main-nav a {
    color: var(--gray-600) !important;
    font-weight: 600 !important;
    font-size: 0.8125rem !important;
    /* 13px */
    padding: 6px 10px !important;
    border-radius: 4px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.02em !important;
}

.tech-header .main-nav a:hover,
.tech-header .main-nav a.active {
    color: var(--primary) !important;
    background: rgba(37, 99, 235, 0.1) !important;
}

/* 2. Hero Section (Clear & Centered) */
.hero {
    background: #ffffff !important;
    padding: 80px 0 !important;
    text-align: center !important;
    border-bottom: 1px solid #e5e7eb !important;
}

.hero h1 {
    color: #111827 !important;
    font-size: 3rem !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 24px !important;
    line-height: 1.1 !important;
    text-shadow: none !important;
    background: none !important;
    -webkit-text-fill-color: initial !important;
}

.hero p {
    color: #6b7280 !important;
    font-size: 1.25rem !important;
    margin-bottom: 40px !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* 3. Category Grid (Organized) */
.categories-section {
    background: #f9fafb !important;
    /* gray-50 */
    padding: 80px 0 !important;
}

.section-title {
    font-size: 2.25rem !important;
    color: #111827 !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
}

.category-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .category-grid {
        grid-template-columns: 1fr !important;
    }
}

.category-card {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 32px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
}

.category-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1) !important;
    border-color: #3b82f6 !important;
}

.category-icon {
    margin-bottom: 16px !important;
}

.category-card h3 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    color: #111827 !important;
}

.category-card p {
    color: #6b7280 !important;
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}


/* ==========================================================================
   SIMPLE NAV FLUX (Dropdown Support)
   ========================================================================== */

/* Reset & Flex */
.simple-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.simple-nav>li {
    position: relative;
    /* For dropdown positioning */
}

/* Links */
.simple-nav a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.simple-nav a:hover {
    color: var(--primary);
}

.dropdown-icon {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    /* Align right to avoid overflow */
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 8px 0;
    z-index: 2000;
    list-style: none;
}

/* Hover State */
.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Links */
.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    padding: 10px 20px;
    color: var(--gray-600);
    display: block;
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--gray-50);
    color: var(--primary);
}