/* 新闻列表页（list.html）专用样式：从 css/style.css 中抽离 */

/* 顶部广告图 + 栏目名称（如页面使用 list-top-banner 结构时生效） */
.list-top-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
}

.list-top-banner .banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.list-top-banner .container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
    z-index: 2;
}

.banner-title-overlay {
    padding: 30px 0;
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
}

.banner-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* 新闻列表页样式 */
.news-list-page {
    background-color: #f5f5f5;
    padding: 60px 0;
    min-height: 70vh;
}

/* 面包屑导航 */
.breadcrumb-nav {
    margin-bottom: 30px;
}

.breadcrumb-nav .breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
}

.breadcrumb-nav .breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    padding: 0 12px;
    color: var(--gray-color);
    font-size: 14px;
    float: none;
}

.breadcrumb-nav .breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb-nav .breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-nav .breadcrumb-item.active {
    color: var(--gray-color);
    font-size: 14px;
}

.breadcrumb-nav .breadcrumb-item i {
    font-size: 12px;
}

/* 页面标题 */
.page-header {
    margin-bottom: 30px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    position: relative;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

/* 左右布局容器 */
.news-layout-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
    align-items: start;
}

/* 左侧栏目导航 */
.news-sidebar {
    position: sticky;
    top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.98));
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08), 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.sidebar-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), #66d9e8, var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-box:hover::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sidebar-box:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12), 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px) scale(1.02);
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    padding: 22px 28px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid rgba(255, 255, 255, 0.25);
}

.sidebar-title i {
    font-size: 1.4rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-box:hover .sidebar-title i {
    transform: rotate(15deg) scale(1.2);
    background-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.sidebar-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu .menu-item {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    overflow: hidden;
}

.sidebar-menu .menu-item:last-child {
    border-bottom: none;
}

.sidebar-menu .menu-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 3px 3px 0;
}

.sidebar-menu .menu-item:hover::before,
.sidebar-menu .menu-item.active::before {
    transform: scaleY(1);
    box-shadow: 0 0 15px rgba(12, 130, 69, 0.4);
}

.sidebar-menu .menu-item a {
    display: flex;
    align-items: center;
    padding: 20px 28px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    font-weight: 500;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.sidebar-menu .menu-item a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(12, 130, 69, 0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.sidebar-menu .menu-item:hover a::after,
.sidebar-menu .menu-item.active a::after {
    transform: translateX(0);
}

.sidebar-menu .menu-item a i {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    background-color: rgba(12, 130, 69, 0.08);
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-menu .menu-item:hover a {
    background-color: rgba(12, 130, 69, 0.05);
    color: var(--primary-color);
    padding-left: 35px;
    font-weight: 600;
}

.sidebar-menu .menu-item.active a {
    background-color: rgba(12, 130, 69, 0.08);
    color: var(--primary-color);
    padding-left: 35px;
    font-weight: 600;
}

.sidebar-menu .menu-item:hover a i,
.sidebar-menu .menu-item.active a i {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 6px 16px rgba(12, 130, 69, 0.4);
}

/* 热门新闻列表（如页面包含 hot-news-list 结构时生效） */
.hot-news-list {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
}

.hot-news-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hot-news-item:last-child {
    border-bottom: none;
}

.hot-news-item a {
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
    transition: var(--transition);
    padding-right: 10px;
}

.hot-news-item:hover a {
    color: var(--primary-color);
}

.hot-news-date {
    color: var(--gray-color);
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* 右侧新闻列表 */
.news-list-main {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.news-text-list {
    margin-bottom: 30px;
}

.news-text-item {
    display: flex;
    gap: 25px;
    padding: 24px 0;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.news-text-item:last-child {
    border-bottom: none;
}

.news-text-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    transition: all 0.3s ease;
}

.news-text-item:hover {
    background-color: rgba(12, 130, 69, 0.03);
    margin: 0 -20px;
    padding: 24px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-text-item:hover::before {
    height: 50px;
    top: 25px;
    transform: none;
}

.news-text-date {
    flex-shrink: 0;
    width: 100px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    line-height: 1.4;
    box-shadow: 0 4px 12px rgba(12, 130, 69, 0.2);
    transition: all 0.3s ease;
}

.news-text-item:hover .news-text-date {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(12, 130, 69, 0.3);
}

.news-text-content {
    flex: 1;
    padding-right: 15px;
}

.news-text-title {
    margin: 0 0 12px 0;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.6;
}

.news-text-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.news-text-title a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.news-text-item:hover .news-text-title a {
    color: var(--primary-color);
    transform: translateX(3px);
}

.news-text-item:hover .news-text-title a::after {
    width: 100%;
}

.news-text-desc {
    color: var(--gray-color);
    line-height: 1.8;
    font-size: 14px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-text-item:hover .news-text-desc {
    color: var(--dark-color);
}

/* 分页样式 */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-item {
    margin: 0;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    color: var(--dark-color);
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 44px;
    gap: 6px;
}

.page-link:hover {
    color: var(--primary-color);
    background-color: rgba(12, 130, 69, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(12, 130, 69, 0.15);
}

.page-item.active .page-link {
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(12, 130, 69, 0.3);
}

.page-item.disabled .page-link {
    color: #ccc;
    background-color: #f8f9fa;
    border-color: #e9ecef;
    cursor: not-allowed;
    opacity: 0.6;
}

.page-item.disabled .page-link:hover {
    transform: none;
    box-shadow: none;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

.page-link i {
    font-size: 11px;
}

/* 响应式：新闻列表页 */
@media (max-width: 768px) {
    .page-title {
        font-size: 1.5rem;
        padding-bottom: 10px;
    }

    .news-layout-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-sidebar {
        position: static;
    }

    .sidebar-box {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
    }

    .sidebar-box::before {
        display: none;
    }

    .sidebar-title {
        font-size: 1.1rem;
        padding: 20px 25px;
        gap: 12px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }

    .sidebar-title i {
        font-size: 1.2rem;
        width: 32px;
        height: 32px;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
    }

    .sidebar-menu .menu-item a {
        padding: 18px 25px;
        font-size: 14px;
        gap: 14px;
    }

    .sidebar-menu .menu-item a i {
        font-size: 1.1rem;
        width: 28px;
        height: 28px;
        border-radius: 8px;
    }

    .sidebar-menu .menu-item:hover a,
    .sidebar-menu .menu-item.active a {
        padding-left: 25px;
    }

    /* 新闻文本项的响应式 */
    .news-text-item {
        flex-direction: column;
        gap: 15px;
        padding: 20px 0;
        margin: 0 -10px;
    }

    .news-text-item::before {
        top: 25px;
        transform: none;
    }

    .news-text-item:hover {
        margin: 0 -15px;
        padding: 20px 15px;
    }

    .news-text-date {
        width: auto;
        align-self: flex-start;
        padding: 10px 14px;
        font-size: 12px;
    }

    .news-text-title {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .news-text-content {
        padding-right: 0;
    }

    .news-text-desc {
        font-size: 13px;
        -webkit-line-clamp: 2;
    }

    .pagination {
        gap: 6px;
    }

    .page-link {
        padding: 8px 14px;
        font-size: 13px;
        min-width: 40px;
    }

    .breadcrumb-nav {
        margin-bottom: 20px;
    }

    .breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
        padding: 0 8px;
        font-size: 12px;
    }

    .breadcrumb-nav .breadcrumb-item a,
    .breadcrumb-nav .breadcrumb-item.active {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .news-list-page {
        padding: 40px 0;
    }

    .page-title {
        font-size: 1.4rem;
        padding-bottom: 8px;
    }

    .sidebar-box {
        border-radius: 12px;
    }

    .sidebar-title {
        font-size: 1rem;
        padding: 18px 20px;
        gap: 10px;
    }

    .sidebar-title i {
        font-size: 1.1rem;
        width: 28px;
        height: 28px;
    }

    .sidebar-menu .menu-item a {
        padding: 16px 20px;
        font-size: 13px;
        gap: 12px;
    }

    .sidebar-menu .menu-item a i {
        font-size: 1rem;
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }

    .sidebar-menu .menu-item:hover a,
    .sidebar-menu .menu-item.active a {
        padding-left: 25px;
    }

    .news-list-main {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .news-list-page {
        padding: 30px 0;
    }

    .breadcrumb-nav .breadcrumb-item a,
    .breadcrumb-nav .breadcrumb-item.active {
        font-size: 13px;
    }

    .page-title {
        font-size: 1.25rem;
    }

    .sidebar-title {
        font-size: 0.95rem;
        padding: 16px 18px;
    }

    .sidebar-title i {
        font-size: 1rem;
        width: 26px;
        height: 26px;
    }

    .sidebar-menu .menu-item a {
        padding: 14px 18px;
        font-size: 12px;
        gap: 10px;
    }

    .sidebar-menu .menu-item a i {
        font-size: 0.9rem;
        width: 22px;
        height: 22px;
    }

    .sidebar-menu .menu-item:hover a,
    .sidebar-menu .menu-item.active a {
        padding-left: 22px;
    }

    .news-list-main {
        padding: 15px;
    }
}

/* 可选：导航大图区域样式（若页面启用 nav-banner-section 结构时生效） */
.nav-banner-section {
    margin-bottom: 30px;
}

.nav-banner-wrapper {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.nav-banner-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.nav-banner-wrapper:hover .nav-banner-img {
    transform: scale(1.02);
}

.nav-banner-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 30px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1) 30%, transparent);
}

.news-sidebar-banner {
    width: 280px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-banner-wrapper:hover .news-sidebar-banner {
    transform: translateY(0);
}

.sidebar-box-banner {
    height: 100%;
}

.sidebar-title-banner {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    padding: 20px 25px;
    margin: 0;
    text-align: left;
    border-bottom: 3px solid var(--secondary-color);
}

.sidebar-menu-banner {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-banner .menu-item-banner {
    border-bottom: 1px solid #e9ecef;
}

.sidebar-menu-banner .menu-item-banner:last-child {
    border-bottom: none;
}

.sidebar-menu-banner .menu-item-banner a {
    display: block;
    padding: 18px 25px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    position: relative;
}

.sidebar-menu-banner .menu-item-banner a::before {
    content: '>';
    position: absolute;
    left: 15px;
    color: transparent;
    transition: all 0.3s ease;
}

.sidebar-menu-banner .menu-item-banner:hover a {
    background-color: rgba(12, 130, 69, 0.08);
    color: var(--primary-color);
    padding-left: 35px;
}

.sidebar-menu-banner .menu-item-banner.active a {
    background-color: rgba(12, 130, 69, 0.12);
    color: var(--primary-color);
    padding-left: 35px;
    border-left: 4px solid var(--primary-color);
}

.sidebar-menu-banner .menu-item-banner:hover a::before,
.sidebar-menu-banner .menu-item-banner.active a::before {
    color: var(--primary-color);
    left: 20px;
}

/* 响应式设计 - 导航大图 */
@media (max-width: 1200px) {
    .nav-banner-img {
        height: 350px;
    }

    .news-sidebar-banner {
        width: 260px;
    }
}

@media (max-width: 992px) {
    .nav-banner-img {
        height: 300px;
    }

    .nav-banner-content {
        padding: 20px;
    }

    .news-sidebar-banner {
        width: 240px;
    }

    .sidebar-title-banner {
        font-size: 1.05rem;
        padding: 18px 20px;
    }

    .sidebar-menu-banner .menu-item-banner a {
        padding: 15px 20px;
        font-size: 14px;
    }

    .sidebar-menu-banner .menu-item-banner:hover a,
    .sidebar-menu-banner .menu-item-banner.active a {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .nav-banner-img {
        height: 280px;
    }

    .nav-banner-content {
        padding: 15px;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.15) 40%, transparent);
    }

    .news-sidebar-banner {
        width: 220px;
        transform: translateY(0);
    }

    .sidebar-title-banner {
        font-size: 1rem;
        padding: 16px 18px;
    }

    .sidebar-menu-banner .menu-item-banner a {
        padding: 13px 18px;
        font-size: 13px;
    }

    .sidebar-menu-banner .menu-item-banner a::before {
        left: 12px;
    }

    .sidebar-menu-banner .menu-item-banner:hover a::before,
    .sidebar-menu-banner .menu-item-banner.active a::before {
        left: 17px;
    }
}

@media (max-width: 576px) {
    .nav-banner-section {
        margin-bottom: 25px;
    }

    .nav-banner-img {
        height: 250px;
    }

    .nav-banner-content {
        padding: 12px;
    }

    .news-sidebar-banner {
        width: 100%;
        max-width: 200px;
    }

    .sidebar-title-banner {
        font-size: 0.95rem;
        padding: 14px 16px;
    }

    .sidebar-menu-banner .menu-item-banner a {
        padding: 12px 16px;
        font-size: 12px;
    }

    .sidebar-menu-banner .menu-item-banner:hover a,
    .sidebar-menu-banner .menu-item-banner.active a {
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .nav-banner-img {
        height: 220px;
    }

    .nav-banner-content {
        align-items: flex-end;
        padding-bottom: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent 70%);
    }

    .news-sidebar-banner {
        width: 100%;
        max-width: none;
    }

    .sidebar-title-banner {
        text-align: center;
    }

    .sidebar-menu-banner {
        display: flex;
        flex-wrap: wrap;
    }

    .sidebar-menu-banner .menu-item-banner {
        flex: 1;
        min-width: calc(50% - 1px);
        border-bottom: none;
        border-right: 1px solid #e9ecef;
    }

    .sidebar-menu-banner .menu-item-banner:nth-child(even) {
        border-right: none;
    }

    .sidebar-menu-banner .menu-item-banner:nth-child(1),
    .sidebar-menu-banner .menu-item-banner:nth-child(2) {
        border-bottom: 1px solid #e9ecef;
    }

    .sidebar-menu-banner .menu-item-banner:nth-child(3),
    .sidebar-menu-banner .menu-item-banner:nth-child(4) {
        border-bottom: 1px solid #e9ecef;
    }

    .sidebar-menu-banner .menu-item-banner:nth-child(5),
    .sidebar-menu-banner .menu-item-banner:nth-child(6) {
        border-bottom: 1px solid #e9ecef;
    }

    .sidebar-menu-banner .menu-item-banner a {
        padding: 10px 12px;
        font-size: 11px;
        text-align: center;
    }

    .sidebar-menu-banner .menu-item-banner:hover a,
    .sidebar-menu-banner .menu-item-banner.active a {
        padding-left: 12px;
        border-left: none;
        border-bottom: 2px solid var(--primary-color);
    }

    .sidebar-menu-banner .menu-item-banner a::before {
        display: none;
    }
}

