:root {
    --font-primary: 'Outfit', sans-serif;
    --primary-color: #0d6efd;
    --border-radius: 12px;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    --card-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);

    --bg-body: #f7f9fc;
    --bg-card: #ffffff;
    --text-main: #2d3748;
    --text-muted: #718096;
    --border-color: #e2e8f0;
}

[data-bs-theme="dark"] {
    --bg-body: #121212;
    --bg-card: #1e1e1e;
    --text-main: #e2e8f0;
    --text-muted: #a0aec0;
    --border-color: #2d3748;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --card-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.5);
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-body) !important;
    color: var(--text-main) !important;
}

a {
    text-decoration: none !important;
}

/* Post logo images — always white background regardless of theme */
.post-logo-img,
[data-bs-theme="dark"] .post-logo-img {
    background-color: #ffffff !important;
}

/* Navbar Premium Look */
.navbar {
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: var(--bg-card) !important;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Card Improvements */
.card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.card-title a {
    color: var(--text-main);
    transition: color 0.2s;
}

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

/* Sidebar Widgets */
.sidebar-widget .card-header {
    background: transparent;
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1rem 1.25rem;
}

/* Buttons */
.btn {
    border-radius: 8px;
    font-weight: 500;
    padding: 0.5rem 1.25rem;
    transition: all 0.2s;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    margin-top: 4rem !important;
    /* Standardize margin */
}

/* Typography Details */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    color: var(--text-main);
}

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

/* Summernote Dark Mode Fixes */
[data-bs-theme="dark"] .note-editor.note-frame {
    border-color: #495057;
}

[data-bs-theme="dark"] .note-editor .note-toolbar {
    background-color: #343a40;
    border-bottom: 1px solid #495057;
}

[data-bs-theme="dark"] .note-editor .note-editing-area {
    background-color: #212529;
    color: #f8f9fa;
}

[data-bs-theme="dark"] .note-editor .note-statusbar {
    background-color: #343a40;
    border-top: 1px solid #495057;
}

[data-bs-theme="dark"] .note-placeholder {
    color: #6c757d;
}

[data-bs-theme="dark"] a {
    color: #6ea8fe;
}

/* Specific Mobile Fixes */
.post-title-clamp {
    font-size: clamp(1rem, 3vw, 1.15rem);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 576px) {
    .post-title-clamp {
        font-size: 1rem;
    }

    /* ── Post card mobile compactness ── */
    /* Tighter vertical padding so cards are shorter */
    .list-group-item.d-flex {
        padding: 0.35rem 0.75rem !important;
        align-items: center !important;
    }



    /* Slightly less gap between logo and text */
    .list-group-item .flex-shrink-0.me-3 {
        margin-right: 0.5rem !important;
    }

    /* Tighter meta row gap */
    .list-group-item .d-flex.flex-wrap.gap-3 {
        gap: 0.4rem !important;
    }

    /* Ensure the card/list container has breathing room from screen edges */
    .card,
    .list-group {
        border-radius: 10px;
    }

    /* Reduce gap between logo/card and screen edge */
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* Sidebar post title line-clamp */
.sidebar-post-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Dark mode: category badge override */
[data-bs-theme="dark"] .badge.bg-light {
    background-color: #2d3748 !important;
    color: #e2e8f0 !important;
    border-color: #4a5568 !important;
}

/* Dark mode: sidebar card background */
[data-bs-theme="dark"] .sidebar-widget {
    background-color: var(--bg-card) !important;
}

/* Dark mode: sidebar list-group items — use !important to beat Bootstrap specificity */
[data-bs-theme="dark"] .sidebar-widget .list-group-item,
[data-bs-theme="dark"] .sidebar-widget .list-group-item.bg-transparent {
    background-color: transparent !important;
    color: var(--text-main);
    border-color: var(--border-color);
}

[data-bs-theme="dark"] .sidebar-widget .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Dark mode: input in sidebar search widget */
[data-bs-theme="dark"] .sidebar-widget .form-control {
    background-color: #2d3748;
    border-color: #4a5568;
    color: #e2e8f0;
}

[data-bs-theme="dark"] .sidebar-widget .form-control::placeholder {
    color: #718096;
}


/* Social Media Widget Premium Styles (Soft/Modern) */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    border-radius: 10px;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

/* Base Styles (Soft Backgrounds by default) */
.btn-social-fb {
    background-color: rgba(59, 89, 152, 0.1);
    color: #3b5998;
}

.btn-social-x {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000;
}

[data-bs-theme="dark"] .btn-social-x {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-social-insta {
    background-color: rgba(225, 48, 108, 0.1);
    color: #C13584;
}

.btn-social-tw {
    background-color: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
}

.btn-social-tg {
    background-color: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.btn-social-wa {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.btn-social-li {
    background-color: rgba(0, 119, 181, 0.1);
    color: #0077b5;
}

/* Hover Effects (Solid Color + Lift) */
.social-btn:hover {
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-social-fb:hover {
    background-color: #3b5998;
}

.btn-social-x:hover {
    background-color: #000;
}

[data-bs-theme="dark"] .btn-social-x:hover {
    background-color: #fff;
    color: #000 !important;
}

.btn-social-insta:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.btn-social-tw:hover {
    background-color: #1da1f2;
}

.btn-social-tg:hover {
    background-color: #0088cc;
}

.btn-social-wa:hover {
    background-color: #25d366;
}

.btn-social-li:hover {
    background-color: #0077b5;
}

/* Post Content Typography & Layout */
.post-content,
.post-content * {
    font-family: 'Inter', sans-serif !important;
}

.post-content {
    font-size: 1.125rem;
    /* 18px */
    line-height: 1.8;
    color: #2d3748;
}

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

/* Explicit Header Sizing */
.post-content h1 {
    font-size: 2.5rem;
    /* 40px */
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a202c;
}

.post-content h2 {
    font-size: 2rem;
    /* 32px */
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
    /* 24px */
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.4;
}

.post-content h4 {
    font-size: 1.25rem;
    /* 20px */
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #2d3748;
}

.post-content h5,
.post-content h6 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

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

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

.post-content a {
    color: var(--primary-color);
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

.post-content a:hover {
    color: #0b5ed7;
}

/* Post Table Styling (Premium Look) */
.post-content table {
    width: 100% !important;
    margin-bottom: 1.5rem;
    border-collapse: collapse;
    border: 1px solid #e2e8f0;
    font-size: 1rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    /* For rounded corners */
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.post-content th,
.post-content td {
    padding: 1rem;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
}

.post-content th {
    background-color: #f8fafc;
    font-weight: 600;
    text-align: left;
    color: #2d3748;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.post-content tr:nth-child(even) {
    background-color: #fcfcfc;
}

.post-content tr:hover {
    background-color: #f1f5f9;
}

/* Responsive Table */
@media (max-width: 768px) {
    .post-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        border: 0;
    }
}

/* Dark Mode Support for Post Content */
[data-bs-theme="dark"] .post-content {
    color: #e2e8f0;
}

[data-bs-theme="dark"] .post-content h2,
[data-bs-theme="dark"] .post-content h3,
[data-bs-theme="dark"] .post-content h4 {
    color: #f8f9fa;
}

[data-bs-theme="dark"] .post-content table {
    background-color: #1e1e1e;
    border-color: #4a5568;
}

[data-bs-theme="dark"] .post-content th {
    background-color: #2d3748;
    color: #e2e8f0;
    border-color: #4a5568;
}

[data-bs-theme="dark"] .post-content td {
    border-color: #4a5568;
}

[data-bs-theme="dark"] .post-content tr:nth-child(even) {
    background-color: #2d3748;
}

[data-bs-theme="dark"] .post-content tr:hover {
    background-color: #4a5568;
}

/* ═══════════════════════════════════════════════════════
   DESKTOP SLIDE-DOWN SEARCH BAR
═══════════════════════════════════════════════════════ */
.desktop-search-bar {
    position: sticky;
    top: 69px; /* just below the navbar */
    z-index: 1040;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    /* Slide-down animation: collapsed by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.25s ease,
                box-shadow 0.3s ease;
    pointer-events: none;
}

.desktop-search-bar.is-open {
    max-height: 80px;
    opacity: 1;
    pointer-events: all;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.desktop-search-form {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}

.desktop-search-icon-inline {
    color: var(--text-muted);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.desktop-search-input {
    flex: 1;
    background: var(--bg-body);
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    padding: 9px 16px;
    font-size: 0.95rem;
    color: var(--text-main);
    font-family: var(--font-primary);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.desktop-search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.desktop-search-input::placeholder {
    color: var(--text-muted);
}

.desktop-search-submit {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 9px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-primary);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.desktop-search-submit:hover {
    background: #0b5ed7;
    transform: translateY(-1px);
}

.desktop-search-close-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    flex-shrink: 0;
    transition: color 0.2s, background 0.2s;
}

.desktop-search-close-btn:hover {
    color: var(--text-main);
    background: rgba(0,0,0,0.06);
}

/* Active state for the search toggle button */
#desktopSearchToggle.active {
    color: var(--primary-color);
    border-color: var(--primary-color) !important;
    background: rgba(13, 110, 253, 0.08);
}

[data-bs-theme="dark"] .desktop-search-bar {
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

[data-bs-theme="dark"] .desktop-search-bar.is-open {
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

[data-bs-theme="dark"] .desktop-search-close-btn:hover {
    background: rgba(255,255,255,0.08);
}

[data-bs-theme="dark"] #desktopSearchToggle.active {
    color: #6ea8fe;
    border-color: #6ea8fe !important;
    background: rgba(110, 168, 254, 0.1);
}

/* ═══════════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION BAR
═══════════════════════════════════════════════════════ */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    height: 64px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    padding: 0 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-bottom-nav.is-hidden {
    transform: translateY(100%);
}

[data-bs-theme="dark"] .mobile-bottom-nav {
    background: rgba(18, 18, 18, 0.92);
    border-top-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4);
}

/* Add padding-bottom to body on mobile so content isn't hidden behind bar */
@media (max-width: 991px) {
    body {
        padding-bottom: 72px;
    }
}

/* Nav items (both <a> and <button>) */
.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    background: none;
    border: none;
    padding: 8px 4px;
    cursor: pointer;
    color: #718096;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-decoration: none !important;
    border-radius: 12px;
    margin: 6px 4px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
    font-family: var(--font-primary);
    position: relative;
}

.mobile-nav-item i {
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.2s ease;
}

.mobile-nav-item:hover,
.mobile-nav-item:focus {
    color: var(--primary-color);
    background: rgba(13, 110, 253, 0.08);
    outline: none;
}

.mobile-nav-item:active {
    transform: scale(0.9);
}

.mobile-nav-item.is-active {
    color: var(--primary-color);
}

.mobile-nav-item.is-active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-color);
}

[data-bs-theme="dark"] .mobile-nav-item {
    color: #a0aec0;
}

[data-bs-theme="dark"] .mobile-nav-item:hover,
[data-bs-theme="dark"] .mobile-nav-item:focus {
    color: #6ea8fe;
    background: rgba(110, 168, 254, 0.1);
}

[data-bs-theme="dark"] .mobile-nav-item.is-active {
    color: #6ea8fe;
}


/* ═══════════════════════════════════════════════════════
   MOBILE SEARCH OVERLAY
═══════════════════════════════════════════════════════ */
.mobile-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-search-overlay.is-active {
    opacity: 1;
    pointer-events: all;
}

.mobile-search-inner {
    width: 100%;
    background: var(--bg-card);
    border-radius: 24px 24px 0 0;
    padding: 28px 24px 40px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.mobile-search-overlay.is-active .mobile-search-inner {
    transform: translateY(0);
}

/* Drag handle */
.mobile-search-inner::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(0,0,0,0.15);
}

[data-bs-theme="dark"] .mobile-search-inner::before {
    background: rgba(255,255,255,0.15);
}

.mobile-search-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.06);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.mobile-search-close:hover {
    background: rgba(0,0,0,0.12);
    color: var(--text-main);
}

[data-bs-theme="dark"] .mobile-search-close {
    background: rgba(255,255,255,0.08);
}

[data-bs-theme="dark"] .mobile-search-close:hover {
    background: rgba(255,255,255,0.14);
}

.mobile-search-hint {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 12px 0 20px;
    letter-spacing: -0.3px;
}

.mobile-search-form {
    margin-bottom: 24px;
}

.mobile-search-box {
    display: flex;
    align-items: center;
    background: var(--bg-body);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 4px 8px 4px 16px;
    gap: 10px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.mobile-search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.12);
}

.mobile-search-icon {
    color: var(--text-muted);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.mobile-search-input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-main);
    font-family: var(--font-primary);
    padding: 10px 0;
    min-width: 0;
}

.mobile-search-input::placeholder {
    color: var(--text-muted);
}

.mobile-search-go {
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.mobile-search-go:hover {
    background: #0b5ed7;
}

.mobile-search-go:active {
    transform: scale(0.9);
}

/* Quick-access chips */
.mobile-search-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mobile-search-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.mobile-search-chip {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(13, 110, 253, 0.08);
    color: var(--primary-color);
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(13, 110, 253, 0.18);
    text-decoration: none !important;
    transition: background 0.2s, color 0.2s, transform 0.15s;
}

.mobile-search-chip:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-1px);
}

[data-bs-theme="dark"] .mobile-search-chip {
    background: rgba(110, 168, 254, 0.1);
    color: #6ea8fe;
    border-color: rgba(110, 168, 254, 0.2);
}

[data-bs-theme="dark"] .mobile-search-chip:hover {
    background: #6ea8fe;
    color: #121212 !important;
}

/* ═══════════════════════════════════════════════════════
   MOBILE MENU OVERLAY — Link Rows
═══════════════════════════════════════════════════════ */
.mobile-menu-inner {
    padding-bottom: 48px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    text-decoration: none !important;
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-primary);
    background: transparent;
    transition: background 0.18s ease, color 0.18s ease, transform 0.15s ease;
    border: 1px solid transparent;
}

.mobile-menu-link:hover {
    background: rgba(13, 110, 253, 0.07);
    color: var(--primary-color);
    border-color: rgba(13, 110, 253, 0.12);
    transform: translateX(2px);
}

.mobile-menu-link:active {
    transform: scale(0.98);
}

.mobile-menu-link-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(13, 110, 253, 0.09);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: background 0.18s;
}

.mobile-menu-link:hover .mobile-menu-link-icon {
    background: rgba(13, 110, 253, 0.16);
}

/* CTA link (Submit Job) */
.mobile-menu-link--cta {
    margin-top: 8px;
    background: rgba(13, 110, 253, 0.06);
    border-color: rgba(13, 110, 253, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-menu-link--cta:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: transparent;
}

.mobile-menu-link--cta:hover .mobile-menu-link-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

/* Dark mode menu links */
[data-bs-theme="dark"] .mobile-menu-link {
    color: var(--text-main);
}

[data-bs-theme="dark"] .mobile-menu-link:hover {
    background: rgba(110, 168, 254, 0.08);
    color: #6ea8fe;
    border-color: rgba(110, 168, 254, 0.15);
}

[data-bs-theme="dark"] .mobile-menu-link-icon {
    background: rgba(110, 168, 254, 0.1);
    color: #6ea8fe;
}

[data-bs-theme="dark"] .mobile-menu-link--cta {
    background: rgba(110, 168, 254, 0.07);
    border-color: rgba(110, 168, 254, 0.2);
    color: #6ea8fe;
}

[data-bs-theme="dark"] .mobile-menu-link--cta:hover {
    background: #6ea8fe;
    color: #121212;
}

[data-bs-theme="dark"] .mobile-menu-link--cta:hover .mobile-menu-link-icon {
    background: rgba(0,0,0,0.15);
    color: #121212;
}