    .breadcrumbs {
        margin: 2rem auto 1.25rem;
        font-size: 0.95rem;
        color: #6b7280;
    }
    .breadcrumbs a {
        color: #374151;
        text-decoration: none;
        font-weight: 600;
    }
    .breadcrumbs a:hover {
        color: var(--main-color, #e83e8c);
    }
    .breadcrumbs .sep {
        margin: 0 0.5rem;
        color: #9ca3af;
    }

    .news-toolbar {
        display: flex;
        gap: 0.75rem;
        align-items: center;
        flex-wrap: wrap;
        margin-bottom: 1.4rem;
    }
    .news-toolbar .news-filter-form {
        display: flex;
        gap: 0.75rem;
        align-items: center;
        flex: 1 1 auto;
    }
    .news-toolbar .search-group {
        position: relative;
        flex: 1;
    }
    .news-toolbar input[type="search"] {
        height: 42px;
        padding: 0 2.4rem 0 0.9rem;
        border: 1px solid #dbe2ea;
        border-radius: 10px;
        width: 100%;
        font-size: 1rem;
        color: #1f2d3a;
        background: #ffffff;
    }
    .news-toolbar .search-submit {
        position: absolute;
        right: 0.65rem;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: 0;
        color: #8e99a5;
        font-size: 0.95rem;
    }
    .news-toolbar select {
        height: 42px;
        border: 1px solid #dbe2ea;
        border-radius: 10px;
        padding: 0 0.85rem;
        flex: 0 0 180px;
        background: #fff;
        box-shadow: 0 1px 2px rgba(0,0,0,.03);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23808a95' d='M5.516 7.548a1 1 0 0 1 1.415 0L10 10.617l3.07-3.07a1 1 0 0 1 1.414 1.415l-3.778 3.778a1 1 0 0 1-1.414 0L5.516 8.963a1 1 0 0 1 0-1.415z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right .7rem center;
        background-size: 12px;
        padding-right: 2rem;
        color: #2c3e50;
        font-size: 0.95rem;
        font-weight: 600;
    }

    .news-toolbar .view-switcher {
        display: flex;
        gap: 0.45rem;
        align-items: center;
        flex: 1 0 100%;
        justify-content: flex-end;
        margin-top: 0.15rem;
    }
    .news-toolbar .view-switcher button {
        height: 40px;
        width: 40px;
        border: 1px solid #dbe2ea;
        background: #fff;
        border-radius: 10px;
        color: #64717f;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        transition: all 0.22s ease;
    }
    .news-toolbar .view-switcher button:hover {
        border-color: var(--main-color, #e83e8c);
        color: var(--main-color, #e83e8c);
    }
    .news-toolbar .view-switcher button.active {
        background: var(--main-color, #e83e8c);
        color: #fff;
        border-color: var(--main-color, #e83e8c);
        box-shadow: 0 6px 16px rgba(232, 62, 140, 0.28);
    }

    .news-archive-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.8rem;
    }
    .news-archive-card {
        background: #fff;
        border: 1px solid #e8edf3;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
    }
    .news-archive-content {
        padding: 1.25rem 1.25rem 1.1rem;
    }
    .news-title {
        margin: 0 0 0.8rem;
        font-size: 2rem;
        line-height: 1.25;
        font-weight: 700;
    }
    .news-title a {
        color: #223142;
        text-decoration: none;
    }
    .news-title a:hover {
        color: var(--main-color, #e83e8c);
    }
    .news-excerpt {
        font-size: 1.05rem;
        line-height: 1.7;
        color: #5f6d7a;
        margin-bottom: 1rem;
    }
    .news-meta {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.7rem;
        margin-bottom: 0.95rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: #5f6d7a;
    }
    .news-meta .news-meta-item {
        display: inline-flex;
        align-items: center;
        gap: 0.35rem;
    }
    .news-meta i {
        color: var(--main-color, #e83e8c);
        font-size: 0.9rem;
    }
    .news-categories {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
    }
    .news-category-link {
        color: var(--main-color, #e83e8c);
        text-decoration: none;
        font-weight: 700;
    }
    .news-category-link:hover {
        color: var(--main-hover-color, #c82071);
        text-decoration: underline;
    }
    .news-archive-grid.list-view {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .news-archive-grid.list-view .news-archive-card {
        display: flex;
        flex-direction: row;
        align-items: stretch;
    }
    .news-archive-grid.list-view .news-archive-image {
        width: 300px;
        min-width: 300px;
        flex: 0 0 300px;
        aspect-ratio: 1 / 1;
        padding-top: 0 !important;
        position: relative;
        overflow: hidden;
    }
    .news-archive-grid.list-view .news-archive-image img {
        width: 100%;
        height: 100%;
        position: static !important;
        top: auto !important;
        left: auto !important;
        display: block;
        object-fit: cover;
    }
    .news-archive-grid.list-view .news-archive-content {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .news-archive-grid.list-view .news-title {
        font-size: 1.8rem;
    }

    .pagination-modern {
        margin: 2.1rem 0 0.3rem;
        text-align: center;
    }
    .pagination-modern .nav-links {
        display: inline-flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.35rem;
        padding: 0.45rem;
        border: 1px solid rgba(232, 62, 140, 0.22);
        border-radius: 12px;
        background: #fff;
    }
    .pagination-modern .page-numbers {
        min-width: 40px;
        height: 40px;
        padding: 0 0.85rem;
        border: 1px solid #e1e6ed;
        border-radius: 9px;
        color: #4a5563;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 0.95rem;
        transition: all 0.2s ease;
        background: #fff;
    }
    .pagination-modern .page-numbers:hover {
        border-color: var(--main-color, #e83e8c);
        color: var(--main-color, #e83e8c);
    }
    .pagination-modern .page-numbers.current {
        background: var(--main-color, #e83e8c);
        border-color: var(--main-color, #e83e8c);
        color: #fff;
        box-shadow: 0 6px 18px rgba(232, 62, 140, 0.25);
    }
    .pagination-modern .page-numbers.prev,
    .pagination-modern .page-numbers.next {
        padding: 0 1rem;
    }
    .pagination-modern .page-numbers.dots {
        border-color: transparent;
        background: transparent;
        min-width: 32px;
    }

    @media (max-width: 1100px) {
        .news-archive-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    @media (max-width: 768px) {
        .news-toolbar .news-filter-form {
            flex-wrap: wrap;
        }
        .news-toolbar select {
            flex: 1 1 100%;
        }
        .news-archive-grid {
            grid-template-columns: 1fr;
            gap: 1.2rem;
        }
        .news-archive-grid.list-view .news-archive-card {
            flex-direction: column;
        }
        .news-title,
        .news-archive-grid.list-view .news-title {
            font-size: 1.65rem;
        }
    }
