/* =========================================================
   RESOURCES SIDEBAR & INTERACTIVE LAYOUT STYLES
========================================================= */
.resources-sidebar {
    position: sticky;
    top: 80px;
}

.resources-sidebar a {
    display: block;
    padding: 8px 12px;
    margin-bottom: 5px;
    border-radius: 6px;
    text-decoration: none;
    color: #495057;
    transition: background-color 0.2s, color 0.2s;
}

.resources-sidebar a:hover {
    background-color: #f1f3f5;
}

.resources-sidebar a.active {
    background-color: #0d6efd;
    color: white;
    font-weight: 500;
}

.mobile-nav {
    display: none;
}

@media (max-width: 768px) {
    .resources-sidebar {
        display: none;
    }

    .mobile-nav {
        display: block;
    }
}

.fa {
    width: 18px;
    text-align: center;
}

html {
    scroll-behavior: smooth;
}