:root,
[data-theme="light"] {
    --mashable-dark: #0a1829;
    --mashable-accent: #4c4edd;
    --mashable-accent-hover: #3a3ac4;
    --mashable-gray-100: #f5f7fa;
    --mashable-gray-200: #e8ecf1;
    --mashable-gray-300: #d1d9e2;
    --mashable-gray-400: #8a9aad;
    --mashable-gray-500: #5a6a7d;
    --mashable-gray-600: #3a4a5d;
    --mashable-text: #1a2332;
    --mashable-text-muted: #5a6a7d;
    --bg-primary: #ffffff;
    --bg-card: #ffffff;
    --bg-secondary: #f5f7fa;
    --bg-tag: #edeef7;
    --code-bg: #f5f7fa;
    --border-
    --shadow-sm: 0 2px 8px rgba(10, 24, 41, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 24, 41, 0.08);
    --shadow-lg: 0 12px 40px rgba(10, 24, 41, 0.1);
    --font-outfit: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

[data-theme="dark"] {
    --mashable-dark: #0a1829;
    --mashable-accent: #6c6eff;
    --mashable-accent-hover: #8587ff;
    --mashable-gray-100: #152238;
    --mashable-gray-200: #1a2d45;
    --mashable-gray-300: #2a4060;
    --mashable-gray-400: #6b8aad;
    --mashable-gray-500: #8aa5c4;
    --mashable-gray-600: #a8c0db;
    --mashable-text: #e1e7ed;
    --mashable-text-muted: #8aa5c4;
    --bg-primary: #0a1829;
    --bg-card: #111d2f;
    --bg-secondary: #152238;
    --bg-tag: #1a2d45;
    --code-bg: #1a2332;
    --border-color: #1a2d45;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
}

html, body {
    font-family: var(--font-outfit);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--mashable-text);
    background-color: var(--bg-primary);
}

/* Override Bootstrap primary color with Mashable accent */
.btn-primary {
    background-color: var(--mashable-accent);
    border-color: var(--mashable-accent);
    font-weight: 600;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--mashable-accent-hover);
    border-color: var(--mashable-accent-hover);
}

.btn-outline-primary {
    color: var(--mashable-accent);
    border-color: var(--mashable-accent);
    font-weight: 600;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    background-color: var(--mashable-accent);
    border-color: var(--mashable-accent);
}

a {
    color: var(--mashable-accent);
    text-decoration: none;
    font-weight: 500;
}

a:hover {
    color: var(--mashable-accent-hover);
    text-decoration: underline;
}

.text-muted {
    color: var(--mashable-text-muted) !important;
}

.badge.bg-secondary {
    background-color: var(--mashable-gray-200) !important;
    color: var(--mashable-text-muted);
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.35em 0.65em;
    border-radius: 4px;
}

/* Card styles */
.card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

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

.card-title a {
    color: var(--mashable-text);
    font-weight: 700;
    line-height: 1.3;
}

.card-title a:hover {
    color: var(--mashable-accent);
    text-decoration: none;
}

/* Form styles */
.form-control, .form-select {
    border-radius: 8px;
    border-color: var(--mashable-gray-300);
    font-family: var(--font-outfit);
}

.form-control:focus {
    border-color: var(--mashable-accent);
    box-shadow: 0 0 0 0.2rem rgba(76, 78, 221, 0.15);
}

/* Content styles */
.blog-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--mashable-text);
}

.blog-content p {
    margin-bottom: 1.5rem;
}

.blog-content h1, .blog-content h2, .blog-content h3, .blog-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--mashable-text);
}

.blog-content h2 {
    font-size: 1.75rem;
}

.blog-content h3 {
    font-size: 1.375rem;
}

.blog-content pre {
    background-color: var(--mashable-gray-100);
    padding: 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    font-size: 0.9375rem;
    border: 1px solid var(--mashable-gray-200);
}

.blog-content code {
    background-color: var(--mashable-gray-100);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.875em;
    color: var(--mashable-accent);
}

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

.blog-content blockquote {
    border-left: 4px solid var(--mashable-accent);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--mashable-gray-600);
}

.blog-content ul, .blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

/* Chat styles */
.chat-messages {
    min-height: 120px;
}

/* Alerts */
.alert-warning {
    background-color: #fff8e6;
    border-color: #ffe4a1;
    color: #8a6d3b;
    border-radius: 8px;
}

[data-theme="dark"] .alert-warning {
    background-color: #2a2510;
    border-color: #4a3d1a;
    color: #e8d48b;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 0.875rem;
}

.breadcrumb-item a {
    color: var(--mashable-text-muted);
}

.breadcrumb-item.active {
    color: var(--mashable-text);
    font-weight: 600;
}

/* Spinner */
.spinner-border.text-primary {
    color: var(--mashable-accent) !important;
}

/* Validation */
.validation-message {
    color: #dc3545;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Error boundary */
.blazor-error-boundary {
    background: #dc3545;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
    border-radius: 8px;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}

/* Utility */
.content {
    padding-top: 0;
}

h1:focus {
    outline: none;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--mashable-gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--mashable-gray-300);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--mashable-gray-400);
}

/* ========================
   MASHABLE-STYLE LAYOUT
   ======================== */

/* Site Header */
.site-header {
    background-color: var(--mashable-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(10, 24, 41, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: 1rem;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-shrink: 0;
}

.logo {
    color: #ffffff;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-decoration: none;
    line-height: 1;
}

.logo:hover {
    color: #ffffff;
    text-decoration: none;
}

.logo-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--mashable-accent);
    border-radius: 50%;
    margin-top: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

/* Access Control */
.access-control {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-name {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

.btn-auth {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-auth:hover {
    text-decoration: none;
}

.btn-auth-primary {
    background-color: var(--mashable-accent);
    color: #ffffff;
    border: 1px solid var(--mashable-accent);
}

.btn-auth-primary:hover {
    background-color: var(--mashable-accent-hover);
    border-color: var(--mashable-accent-hover);
    color: #ffffff;
}

.btn-auth-outline {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-auth-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}

/* NavMenu */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link:hover {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.nav-link.active {
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.12);
    font-weight: 600;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-dropdown-arrow {
    transition: transform 0.2s ease;
}

.nav-dropdown-arrow.open {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--mashable-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 220px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown-menu:not(.closing) {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    animation: dropdown-fade-in 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.nav-dropdown-menu.closing {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

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

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    text-decoration: none;
}

.nav-dropdown-icon {
    font-size: 1.125rem;
    line-height: 1;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.language-current {
    letter-spacing: 0.05em;
}

.language-arrow {
    transition: transform 0.2s ease;
}

.language-arrow.open {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--mashable-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.5rem;
    min-width: 150px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: dropdown-fade-in 0.2s ease;
}

.language-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: none;
    border: none;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.language-option.active {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-weight: 600;
}

@media (max-width: 640px) {
    .header-nav {
        gap: 0.125rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.625rem;
        font-size: 0.875rem;
    }
}

/* Site Main */
.site-main {
    padding: 2rem 0 4rem;
    min-height: calc(100vh - 64px - 280px);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 4rem 0 3rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: var(--mashable-text);
    margin-bottom: 0.75rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--mashable-text-muted);
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.hero-line {
    width: 60px;
    height: 4px;
    background: var(--mashable-accent);
    border-radius: 2px;
    margin: 0 auto;
}

/* Posts Section */
.posts-section {
    max-width: 900px;
    margin: 0 auto;
}

/* Featured Post */
.featured-post {
    margin-bottom: 3rem;
}

.featured-link {
    display: block;
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 2.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.featured-link:hover {
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    text-decoration: none;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.featured-tag {
    background-color: var(--mashable-accent);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

.featured-date {
    color: var(--mashable-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.featured-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--mashable-text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.featured-excerpt {
    color: var(--mashable-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.featured-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Section Title */
.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mashable-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.post-card-link {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
}

.post-card-link:hover {
    text-decoration: none;
}

.post-card-meta {
    margin-bottom: 0.75rem;
}

.post-card-date {
    color: var(--mashable-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

.post-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.post-card:hover .post-card-title {
    color: var(--mashable-accent);
}

.post-card-excerpt {
    color: var(--mashable-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.post-card-tags {
    display: flex;
    gap: 0.375rem;
    flex-wrap: wrap;
}

/* Post Article */
.post-article {
    max-width: 780px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.post-breadcrumb {
    margin-bottom: 1.5rem;
}

.post-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.post-breadcrumb .breadcrumb-item a {
    color: var(--mashable-accent);
    text-decoration: none;
    font-weight: 500;
}

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

.post-breadcrumb .breadcrumb-item.active {
    color: var(--mashable-text-muted);
    font-weight: 500;
}

/* Series Navigation in Post */
.series-navigation {
    background: var(--mashable-gray-100);
    border: 1px solid var(--mashable-gray-200);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.series-nav-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.series-nav-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mashable-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.series-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--mashable-accent);
    text-decoration: none;
}

.series-nav-title:hover {
    text-decoration: underline;
}

.series-nav-controls {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
}

.series-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--mashable-gray-300);
    background: var(--bg-card);
    color: var(--mashable-text);
}

.series-nav-btn:not(.series-nav-disabled):hover {
    background: var(--mashable-accent);
    border-color: var(--mashable-accent);
    color: white;
    text-decoration: none;
}

.series-nav-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

@media (max-width: 640px) {
    .series-navigation {
        padding: 1rem;
    }
    
    .series-nav-controls {
        flex-direction: column;
    }
    
    .series-nav-btn {
        justify-content: center;
    }
}

.post-header {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 2px solid var(--border-color);
}

.post-title {
    font-size: clamp(2rem, 5.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--mashable-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.post-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mashable-text-muted);
    font-size: 0.9375rem;
    font-weight: 500;
}

.post-date svg {
    opacity: 0.6;
}

.post-meta-divider {
    width: 4px;
    height: 4px;
    background-color: var(--mashable-gray-300);
    border-radius: 50%;
    display: inline-block;
}

.post-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.post-tag {
    background-color: var(--bg-tag);
    color: var(--mashable-accent);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
}

/* Post Content - Markdown Styles */
.post-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--mashable-text);
}

.post-content > *:first-child {
    margin-top: 0 !important;
}

.post-content p {
    margin-bottom: 1.5rem;
    margin-top: 0;
}

/* Headings */
.post-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--mashable-text);
}

.post-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--mashable-text);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--mashable-gray-200);
}

.post-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--mashable-text);
}

.post-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--mashable-text);
}

/* Links */
.post-content a {
    color: var(--mashable-accent);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
    text-decoration-color: rgba(76, 78, 221, 0.3);
    font-weight: 500;
}

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

/* Bold & Italic */
.post-content strong {
    font-weight: 700;
    color: var(--mashable-text);
}

.post-content em {
    font-style: italic;
}

/* Lists */
.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.75rem;
}

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}

.post-content li {
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.post-content li::marker {
    color: var(--mashable-accent);
}

/* Blockquotes */
.post-content blockquote {
    border-left: 4px solid var(--mashable-accent);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    background-color: var(--bg-secondary);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--mashable-gray-600);
}

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

/* Code - Inline */
.post-content code {
    background-color: var(--mashable-gray-100);
    color: var(--mashable-accent);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.875em;
    font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
    font-weight: 500;
}

/* Code - Blocks */
.post-content pre {
    background: var(--code-bg);
    border: 1px solid var(--mashable-gray-200);
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    overflow-y: auto;
    margin: 2rem 0;
    font-size: 0.875rem;
    line-height: 1.6;
    max-height: calc(80 * 1.6 * 0.875rem);
}

.post-content pre code {
    background: none;
    color: inherit;
    padding: 0;
    font-size: inherit;
    font-weight: 400;
    display: block;
    white-space: pre;
}

/* Tables */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 1rem;
}

.post-content th {
    background-color: var(--mashable-gray-100);
    color: var(--mashable-text);
    font-weight: 700;
    text-align: left;
    padding: 0.75rem 1rem;
    border-bottom: 2px solid var(--mashable-gray-300);
}

.post-content td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--mashable-gray-200);
}

.post-content tr:hover {
    background-color: var(--mashable-gray-100);
}

/* Horizontal Rule */
.post-content hr {
    border: none;
    height: 2px;
    background: var(--mashable-gray-200);
    margin: 2.5rem 0;
}

/* Checklists */
.post-content input[type="checkbox"] {
    margin-right: 0.5rem;
    accent-color: var(--mashable-accent);
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mashable-accent);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: none;
    color: var(--mashable-accent-hover);
}

.back-link svg {
    transition: transform 0.2s ease;
}

.back-link:hover svg {
    transform: translateX(-3px);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-weight: 700;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
}

/* Not Found State */
.not-found-state {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.not-found-state h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--mashable-text);
    margin-bottom: 0.75rem;
}

.not-found-state p {
    color: var(--mashable-text-muted);
    margin-bottom: 1.5rem;
}

/* Site Footer */
.site-footer {
    background-color: var(--mashable-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 3rem 0 2rem;
    margin-top: auto;
}

.footer-inner {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

.footer-copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Responsive */
@media (max-width: 640px) {
    .hero {
        padding: 2.5rem 0 2rem;
    }
    
    .featured-link {
        padding: 1.5rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .header-inner {
        height: 56px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .site-main {
        padding: 1rem 0 2rem;
    }
    
    .post-article {
        padding: 1rem 0;
    }
}

/* Chat Page */
.chat-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 200px);
}

.chat-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--mashable-gray-200);
}

.chat-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
}

.chat-subtitle {
    color: var(--mashable-text-muted);
    font-size: 0.9375rem;
}

.chat-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
    overflow-y: auto;
}

.chat-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--mashable-text-muted);
}

.chat-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.4;
}

.chat-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.chat-suggestion-btn {
    background-color: var(--mashable-gray-100);
    color: var(--mashable-text);
    border: 1px solid var(--mashable-gray-200);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chat-suggestion-btn:hover {
    background-color: var(--mashable-accent);
    color: white;
    border-color: var(--mashable-accent);
}

.chat-message {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.chat-message-user {
    flex-direction: row-reverse;
}

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
    background-color: var(--mashable-gray-200);
    color: var(--mashable-text-muted);
}

.chat-message-bot .chat-avatar {
    background-color: var(--mashable-accent);
    color: white;
}

.chat-bubble {
    max-width: 85%;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.chat-message-user .chat-bubble {
    background-color: var(--mashable-accent);
    color: white;
    border-bottom-right-radius: 0.25rem;
}

.chat-message-bot .chat-bubble {
    background-color: var(--mashable-gray-100);
    color: var(--mashable-text);
    border-bottom-left-radius: 0.25rem;
    border: 1px solid var(--mashable-gray-200);
}

.chat-markdown p {
    margin-bottom: 0.75rem;
}

.chat-markdown p:last-child {
    margin-bottom: 0;
}

.chat-markdown h1,
.chat-markdown h2,
.chat-markdown h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: var(--mashable-text);
}

.chat-markdown ul,
.chat-markdown ol {
    margin-bottom: 0.75rem;
    padding-left: 1.25rem;
}

.chat-markdown li {
    margin-bottom: 0.25rem;
}

.chat-markdown code {
    background-color: rgba(0,0,0,0.06);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    font-size: 0.85em;
    font-family: 'SF Mono', monospace;
}

.chat-markdown pre {
    background: #1a2332;
    
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 0.75rem 0;
    font-size: 0.875rem;
}

.chat-markdown pre code {
    background: none;
    color: inherit;
    padding: 0;
}

.chat-markdown strong {
    font-weight: 700;
    color: var(--mashable-text);
}

.chat-markdown a {
    color: var(--mashable-accent);
    text-decoration: underline;
}

.chat-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background-color: var(--mashable-accent);
    margin-left: 2px;
    vertical-align: text-bottom;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.chat-sources {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--mashable-gray-200);
}

.chat-sources-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mashable-text-muted);
    display: block;
    margin-bottom: 0.5rem;
}

.chat-sources-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.chat-source-link {
    display: inline-block;
    background-color: var(--bg-tag);
    color: var(--mashable-accent);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.chat-source-link:hover {
    background-color: var(--mashable-accent);
    color: white;
    text-decoration: none;
}

.chat-input-area {
    position: sticky;
    bottom: 0;
    background-color: var(--bg-primary);
    padding-top: 1rem;
    border-top: 1px solid var(--mashable-gray-200);
}

.chat-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background-color: var(--mashable-gray-100);
    border: 1px solid var(--mashable-gray-200);
    border-radius: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    transition: border-color 0.2s ease;
}

.chat-input-wrapper:focus-within {
    border-color: var(--mashable-accent);
}

.chat-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-size: 0.9375rem;
    color: var(--mashable-text);
    padding: 0.25rem 0;
}

.chat-input::placeholder {
    color: var(--mashable-text-muted);
}

.chat-send-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--mashable-accent);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.chat-send-btn:hover:not(:disabled) {
    background-color: var(--mashable-accent-hover);
}

.chat-send-btn:disabled {
    background-color: var(--mashable-gray-300);
    cursor: not-allowed;
}

.chat-construction-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #fff3cd;
    color: #856404;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #ffeaa7;
}

.chat-construction-icon {
    font-size: 1.25rem;
}

/* Series Page */
.series-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.series-breadcrumb {
    margin-bottom: 1.5rem;
}

.series-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.series-breadcrumb .breadcrumb-item a {
    color: var(--mashable-accent);
    text-decoration: none;
    font-weight: 500;
}

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

.series-breadcrumb .breadcrumb-item.active {
    color: var(--mashable-text-muted);
    font-weight: 500;
}

.series-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--mashable-gray-200);
}

.series-title {
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--mashable-text);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.series-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--mashable-text-muted);
    margin-bottom: 1.5rem;
}

.series-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.series-count {
    color: var(--mashable-text-muted);
    font-size: 0.9375rem;
    font-weight: 600;
}

.series-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.series-article-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.series-article-link {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    text-decoration: none;
    align-items: flex-start;
}

.series-article-link:hover {
    text-decoration: none;
}

.series-article-order {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--mashable-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.series-article-content {
    flex: 1;
    min-width: 0;
}

.series-article-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.series-article-card:hover .series-article-title {
    color: var(--mashable-accent);
}

.series-article-excerpt {
    color: var(--mashable-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.series-article-excerpt p {
    margin: 0;
}

.series-article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.series-article-date {
    color: var(--mashable-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

.series-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 640px) {
    .series-article-link {
        padding: 1rem;
        gap: 1rem;
    }
    
    .series-article-order {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Section Page */
.section-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.section-breadcrumb {
    margin-bottom: 1.5rem;
}

.section-breadcrumb .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
    font-size: 0.875rem;
}

.section-breadcrumb .breadcrumb-item a {
    color: var(--mashable-accent);
    text-decoration: none;
    font-weight: 500;
}

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

.section-breadcrumb .breadcrumb-item.active {
    color: var(--mashable-text-muted);
    font-weight: 500;
}

.section-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--mashable-gray-200);
}

.section-title-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.section-icon {
    font-size: 3rem;
    line-height: 1;
}

.section-title {
    font-size: clamp(2rem, 5.5vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--mashable-text);
    letter-spacing: -0.03em;
}

.section-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--mashable-text-muted);
    margin-bottom: 1.5rem;
}

.section-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-count {
    color: var(--mashable-text-muted);
    font-size: 0.9375rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mashable-text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.section-series {
    margin-bottom: 3rem;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}

.section-series-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.section-series-link {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
}

.section-series-link:hover {
    text-decoration: none;
}

.section-series-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.section-series-card:hover .section-series-title {
    color: var(--mashable-accent);
}

.section-series-description {
    color: var(--mashable-text-muted);
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.section-series-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-series-count {
    color: var(--mashable-text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
}

.section-posts {
    margin-bottom: 3rem;
}

.section-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 640px) {
    .section-title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .section-icon {
        font-size: 2.5rem;
    }
    
    .series-grid {
        grid-template-columns: 1fr;
    }
}

/* Search Page */
.search-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.search-header {
    margin-bottom: 3rem;
    text-align: center;
}

.search-title {
    font-size: clamp(2rem, 5.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--mashable-text);
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
}

.search-subtitle {
    font-size: 1.125rem;
    color: var(--mashable-text-muted);
    margin-bottom: 2rem;
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--mashable-text-muted);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.875rem 3rem 0.875rem 3rem;
    font-size: 1rem;
    border: 2px solid var(--mashable-gray-200);
    border-radius: 12px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    border-color: var(--mashable-accent);
    box-shadow: 0 0 0 3px rgba(0, 119, 181, 0.1);
}

.search-clear {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0.25rem;
    color: var(--mashable-text-muted);
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.search-clear:hover {
    color: var(--mashable-text);
    background-color: var(--mashable-gray-200);
}

.search-button {
    padding: 0.875rem 2rem;
    background: var(--mashable-accent);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.search-button:hover:not(:disabled) {
    background: var(--mashable-accent-dark);
    transform: translateY(-1px);
}

.search-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.search-results-header {
    margin-bottom: 2rem;
}

.search-results-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mashable-text);
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-result-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.search-result-link {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
}

.search-result-link:hover {
    text-decoration: none;
}

.search-result-title {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.search-result-card:hover .search-result-title {
    color: var(--mashable-accent);
}

.search-result-section {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--mashable-accent);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.search-result-excerpt {
    color: var(--mashable-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.search-result-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-result-score {
    color: var(--mashable-text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
}

.search-empty,
.search-placeholder {
    text-align: center;
    padding: 4rem 2rem;
}

.search-empty-icon,
.search-placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.search-empty h3,
.search-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
}

.search-suggestions,
.search-examples {
    margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.search-suggestions-title,
.search-examples-title {
    font-weight: 600;
    color: var(--mashable-text);
    margin-bottom: 0.75rem;
}

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

.search-suggestions li {
    padding: 0.5rem 0;
    color: var(--mashable-text-muted);
    padding-left: 1.5rem;
    position: relative;
}

.search-suggestions li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--mashable-accent);
}

.search-examples-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.search-example {
    padding: 0.625rem 1rem;
    background: var(--mashable-gray-100);
    border: 1px solid var(--mashable-gray-200);
    border-radius: 8px;
    font-size: 0.875rem;
    color: var(--mashable-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-example:hover {
    background: var(--mashable-accent);
    color: white;
    border-color: var(--mashable-accent);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .search-form {
        flex-direction: column;
    }
    
    .search-button {
        width: 100%;
    }
    
    .search-result-link {
        padding: 1rem;
    }
    
    .search-examples-list {
        justify-content: center;
    }
}

/* =====================
   About Page Styles
   ===================== */

.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.about-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--mashable-gray-200);
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--mashable-dark);
    margin-bottom: 0.5rem;
}

.about-subtitle {
    font-size: 1.125rem;
    color: var(--mashable-text-muted);
    margin: 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--mashable-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--mashable-accent);
    display: inline-block;
}

.about-section p {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--mashable-text);
    margin-bottom: 1rem;
}

.about-topics {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.about-topics li {
    font-size: 1.125rem;
    color: var(--mashable-text);
    padding-left: 1.5rem;
    position: relative;
}

.about-topics li::before {
    content: "▹";
    position: absolute;
    left: 0;
    color: var(--mashable-accent);
    font-weight: bold;
    font-size: 1.5rem;
}

.contact-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--mashable-gray-100);
    color: var(--mashable-dark);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.contact-link:hover {
    background: var(--mashable-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 78, 221, 0.3);
}

[data-theme="dark"] .contact-link {
    background: var(--mashable-gray-200);
    color: var(--mashable-text);
    border-color: var(--border-color);
}

[data-theme="dark"] .contact-link:hover {
    background: var(--mashable-accent);
    color: white;
    border-color: transparent;
}

.contact-link svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .about-section h2 {
        font-size: 1.5rem;
    }
    
    .about-section p,
    .about-topics li {
        font-size: 1rem;
    }
    
    .contact-links {
        flex-direction: column;
    }
    
    .contact-link {
        justify-content: center;
    }
}

/* Theme Toggle */
.email-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
    text-decoration: none;
}

.email-button:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.email-button svg {
    width: 18px;
    height: 18px;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    line-height: 1;
}

.theme-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle svg {
    width: 18px;
    height: 18px;
}


/* View Count */
.post-view-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--mashable-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}
.post-card-meta .post-reading-time {
    margin-left: 0.75rem;
}
.post-card-meta .post-view-count {
    margin-left: 0.75rem;
}
.post-view-count svg {
    opacity: 0.6;
}

/* Dashboard Stats */
/* ========================
   ADMIN PANEL
   ======================== */

/* Admin nav tabs */
.admin-nav {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    padding: 0.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.admin-nav-tab {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: var(--mashable-text-muted);
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-outfit);
    white-space: nowrap;
}

.admin-nav-tab:hover {
    color: var(--mashable-text);
    background: rgba(76, 78, 221, 0.08);
    text-decoration: none;
}

.admin-nav-tab.active {
    color: #ffffff;
    background: var(--mashable-accent);
    box-shadow: 0 2px 8px rgba(76, 78, 221, 0.3);
}

[data-theme="dark"] .admin-nav {
    background: #111d2f;
    border-color: #1a2d45;
}

[data-theme="dark"] .admin-nav-tab:hover {
    color: #e1e7ed;
    background: rgba(108, 110, 255, 0.12);
}

/* Admin section title */
.admin-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.admin-section-title h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mashable-text);
}

/* Admin cards */
.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.admin-card-header {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--mashable-text);
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.admin-card-body {
    padding: 1.25rem;
}

/* Admin summary cards (like OpenAI Usage stats) */
.admin-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-summary-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

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

.admin-summary-value {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.375rem;
}

.admin-summary-value.text-primary { color: var(--mashable-accent); }
.admin-summary-value.text-info { color: #54a0ff; }
.admin-summary-value.text-success { color: #51cf66; }
.admin-summary-value.text-warning { color: #fcc419; }
[data-theme="dark"] .admin-summary-value.text-info { color: #74b9ff; }
[data-theme="dark"] .admin-summary-value.text-success { color: #69db7c; }
[data-theme="dark"] .admin-summary-value.text-warning { color: #ffd43b; }

.admin-summary-label {
    font-size: 0.8125rem;
    color: var(--mashable-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Admin tables */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.admin-table th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--mashable-text-muted);
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-secondary);
}

.admin-table td {
    padding: 0.75rem 1rem;
    color: var(--mashable-text);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.admin-table tbody tr {
    transition: background 0.15s ease;
}

.admin-table tbody tr:hover {
    background: rgba(76, 78, 221, 0.04);
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table code {
    font-size: 0.875rem;
    color: var(--mashable-accent);
    background: var(--bg-tag);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}

.admin-table a {
    color: var(--mashable-accent);
    font-weight: 500;
    text-decoration: none;
}

.admin-table a:hover {
    text-decoration: underline;
}

[data-theme="dark"] .admin-table th {
    background: #152238;
}

[data-theme="dark"] .admin-table tbody tr:hover {
    background: rgba(108, 110, 255, 0.06);
}

/* Admin buttons */
.admin-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-decoration: none;
    font-family: var(--font-outfit);
    line-height: 1.4;
}

.admin-btn-primary {
    background: var(--mashable-accent);
    color: #ffffff;
    border-color: var(--mashable-accent);
}

.admin-btn-primary:hover {
    background: var(--mashable-accent-hover);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(76, 78, 221, 0.3);
}

.admin-btn-success {
    background: #2f9e44;
    color: #ffffff;
    border-color: #2f9e44;
}

.admin-btn-success:hover {
    background: #257a36;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(47, 158, 68, 0.3);
}

[data-theme="dark"] .admin-btn-success {
    background: #2f9e44;
}

.admin-btn-danger {
    background: #e03131;
    color: #ffffff;
    border-color: #e03131;
}

.admin-btn-danger:hover {
    background: #c92a2a;
    color: #ffffff;
}

.admin-btn-ghost {
    background: transparent;
    color: var(--mashable-text-muted);
    border-color: var(--border-color);
}

.admin-btn-ghost:hover {
    color: var(--mashable-text);
    border-color: var(--mashable-gray-400);
    background: var(--bg-secondary);
}

.admin-btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

/* Admin forms */
.admin-form-group {
    margin-bottom: 1rem;
}

.admin-form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--mashable-text-muted);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.admin-textarea-mono {
    font-family: 'Cascadia Code', 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
}

.admin-table-scroll {
    overflow-x: auto;
}

.admin-table-nowrap {
    white-space: nowrap;
}

.admin-table-ellipsis {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Markdown preview in admin editor */
.markdown-preview {
    font-family: var(--font-outfit);
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--mashable-text);
}

.markdown-preview h1,
.markdown-preview h2,
.markdown-preview h3,
.markdown-preview h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
}

.markdown-preview h1 { font-size: 1.5rem; }
.markdown-preview h2 { font-size: 1.25rem; }
.markdown-preview h3 { font-size: 1.1rem; }

.markdown-preview p {
    margin-bottom: 1rem;
}

.markdown-preview ul,
.markdown-preview ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.markdown-preview li {
    margin-bottom: 0.375rem;
}

.markdown-preview blockquote {
    border-left: 3px solid var(--mashable-accent);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--mashable-text-muted);
    font-style: italic;
}

.markdown-preview code {
    background: var(--bg-tag);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    font-family: 'Cascadia Code', 'JetBrains Mono', monospace;
    font-size: 0.85em;
}

.markdown-preview pre {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
}

.markdown-preview pre code {
    background: transparent;
    padding: 0;
}

.markdown-preview a {
    color: var(--mashable-accent);
    text-decoration: none;
}

.markdown-preview a:hover {
    text-decoration: underline;
}

.markdown-preview img {
    max-width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

.markdown-preview hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 1.5rem 0;
}

.markdown-preview table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.markdown-preview th,
.markdown-preview td {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.markdown-preview th {
    background: var(--bg-secondary);
    font-weight: 600;
}

.admin-input,
.admin-select,
.admin-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.9375rem;
    font-family: var(--font-outfit);
    border: 1px solid var(--mashable-gray-300);
    border-radius: 8px;
    background: var(--bg-primary);
    color: var(--mashable-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-input:focus,
.admin-select:focus,
.admin-textarea:focus {
    outline: none;
    border-color: var(--mashable-accent);
    box-shadow: 0 0 0 3px rgba(76, 78, 221, 0.15);
}

.admin-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--mashable-text);
    cursor: pointer;
}

.admin-checkbox input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    accent-color: var(--mashable-accent);
    cursor: pointer;
}

/* Admin badges */
.admin-badge {
    display: inline-block;
    padding: 0.25em 0.625em;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.admin-badge-success {
    background: #d3f9d8;
    color: #2f9e44;
}

[data-theme="dark"] .admin-badge-success {
    background: rgba(47, 158, 68, 0.2);
    color: #69db7c;
}

.admin-badge-danger {
    background: #ffe3e3;
    color: #e03131;
}

[data-theme="dark"] .admin-badge-danger {
    background: rgba(224, 49, 49, 0.2);
    color: #ff6b6b;
}

.admin-badge-warning {
    background: #fff3bf;
    color: #e67700;
}

[data-theme="dark"] .admin-badge-warning {
    background: rgba(230, 119, 0, 0.2);
    color: #fcc419;
}

.admin-badge-info {
    background: #d0ebff;
    color: #1971c2;
}

[data-theme="dark"] .admin-badge-info {
    background: rgba(25, 113, 194, 0.2);
    color: #74b9ff;
}

/* Admin alerts */
.admin-alert {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid transparent;
}

.admin-alert-danger {
    background: #ffe3e3;
    color: #e03131;
    border-color: #ffc9c9;
}

[data-theme="dark"] .admin-alert-danger {
    background: rgba(224, 49, 49, 0.15);
    color: #ff6b6b;
    border-color: rgba(224, 49, 49, 0.3);
}

.admin-alert-info {
    background: #d0ebff;
    color: #1971c2;
    border-color: #a5d8ff;
}

[data-theme="dark"] .admin-alert-info {
    background: rgba(25, 113, 194, 0.15);
    color: #74b9ff;
    border-color: rgba(25, 113, 194, 0.3);
}

/* Admin action buttons group */
.admin-actions {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* Admin flex helpers */
.admin-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.admin-flex-center {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Admin gap */
.admin-gap-2 { gap: 0.5rem; }
.admin-gap-3 { gap: 1rem; }

/* Admin layout row */
.admin-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.admin-row-cols-4 {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* Admin mt/mb */
.admin-mt-3 { margin-top: 1rem; }
.admin-mb-3 { margin-bottom: 1rem; }
.admin-mb-0 { margin-bottom: 0; }

/* Admin form check */
.admin-form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-top: 1.5rem;
}

/* Admin time range buttons */
.admin-time-range {
    display: flex;
    gap: 0.25rem;
}

.admin-time-btn {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--mashable-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-outfit);
}

.admin-time-btn:hover {
    border-color: var(--mashable-accent);
    color: var(--mashable-accent);
}

.admin-time-btn.active {
    background: var(--mashable-accent);
    color: #ffffff;
    border-color: var(--mashable-accent);
}

/* Admin expandable row */
.admin-expand-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--mashable-text-muted);
    padding: 0;
    display: flex;
    align-items: center;
    font-family: var(--font-outfit);
}

.admin-expand-toggle:hover {
    color: var(--mashable-accent);
}

.admin-detail-row td {
    background: var(--bg-secondary);
}

.admin-detail-content {
    padding: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.admin-detail-content strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--mashable-text-muted);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.admin-detail-content p {
    margin-bottom: 0.75rem;
    color: var(--mashable-text);
}

.admin-detail-content p:last-child {
    margin-bottom: 0;
}

/* Admin loading */
.admin-loading {
    text-align: center;
    padding: 3rem 0;
}

.admin-spinner {
    width: 2rem;
    height: 2rem;
    border: 3px solid var(--mashable-gray-200);
    border-top-color: var(--mashable-accent);
    border-radius: 50%;
    animation: admin-spin 0.8s linear infinite;
    margin: 0 auto 0.75rem;
}

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

/* Dashboard stats (existing, refined) */
.dashboard-stats {
    margin-bottom: 2rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}
.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}
.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mashable-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.875rem;
    color: var(--mashable-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Top Posts Section */
.top-posts-section {
    margin-bottom: 2rem;
}
.top-posts-section .section-title {
    margin-bottom: 1rem;
}

/* Scroll Reveal Animation */
[data-reveal] {
    opacity: 1;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Page Content Fade In */
.site-main {
    animation: page-fade-in 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-main.fade-out {
    opacity: 0;
    transition: opacity 0.2s ease;
}
@keyframes page-fade-in {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Page Loader Spinner */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#page-loader.visible {
    opacity: 1;
    visibility: visible;
}
#page-loader .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top-color: var(--mashable-accent);
    border-radius: 50%;
    animation: page-loader-spin 0.8s linear infinite;
}
#page-loader .spinner-hide {
    animation: page-loader-spin 0.8s linear infinite, spinner-fade-out 0.3s ease forwards;
}
@keyframes page-loader-spin {
    to { transform: rotate(360deg); }
}
@keyframes spinner-fade-out {
    to { opacity: 0; transform: scale(0.8); }
}


/* Theme Icon Visibility */
.icon-sun { display: none; }
.icon-moon { display: block; }
[data-theme="dark"] .icon-sun { display: block; }
[data-theme="dark"] .icon-moon { display: none; }

/* Reading Time */
.post-reading-time {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--mashable-text-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.post-reading-time svg {
    opacity: 0.6;
}

/* Related Articles */
.related-articles {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.related-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.related-subtitle {
    color: var(--mashable-text-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

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

.related-card-link {
    display: block;
    padding: 1.5rem;
    text-decoration: none;
}

.related-card-link:hover {
    text-decoration: none;
}

.related-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--mashable-text);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.related-card:hover .related-card-title {
    color: var(--mashable-accent);
}

.related-card-excerpt {
    color: var(--mashable-text-muted);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.related-card-excerpt p {
    margin: 0;
}

.related-card-meta {
    color: var(--mashable-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* Load More */
.btn-load-more {
    min-width: 220px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-load-more:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-load-more .spinner-border {
    vertical-align: middle;
}

