.news-page-wrapper {
    background: #f7f7f7;
    padding: 30px 0;
    color: #333
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px
}

.news-main-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    color: #333
}

.news-main-title span {
    font-size: 15px;
    font-weight: 400;
    color: #737373;
    margin-left: 5px
}

.news-header-right {
    display: flex;
    align-items: center;
    gap: 15px
}

.news-sort-select {
    padding: 8px 30px 8px 15px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 14px;
    color: #000;
    background: #fff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 24 24" fill="none" stroke="%23333" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M6 9l6 6 6-6"/></svg>') no-repeat right 10px center;
    appearance: none;
    outline: none;
    min-width: 130px
}

.news-search-box {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    overflow: hidden;
    width: 250px
}

.news-search-box input {
    flex: 1;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    outline: none;
    color: #333
}

.news-search-box button {
    background: #e3a6ab;
    border: none;
    padding: 9px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center
}

.news-search-box button svg {
    width: 16px;
    height: 16px;
    color: #fff
}

.news-content-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start
}

.news-main-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.news-sidebar-col {
    width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.news-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    transition: box-shadow 0.3s ease
}

.news-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05)
}

.news-card-img {
    width: 280px;
    flex-shrink: 0
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3
}

.news-card-content {
    padding: 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.news-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    margin-bottom: 12px;
    align-self: flex-start
}

.news-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    text-decoration: none;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s ease
}

.news-title:hover {
    color: #e3a6ab
}

.news-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #94a3b8
}

.news-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px
}

.news-meta svg {
    width: 14px;
    height: 14px
}

.sidebar-block {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eaeaea;
    padding: 20px
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    text-transform: uppercase
}

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

.sidebar-cat-list li {
    border-bottom: 1px solid #f1f1f1
}

.sidebar-cat-list li:last-child {
    border-bottom: none
}

.sidebar-cat-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s
}

.sidebar-cat-list a:hover {
    color: #e3a6ab
}

.sidebar-cat-list svg {
    width: 16px;
    height: 16px;
    color: #94a3b8
}

.sidebar-post-list {
    display: flex;
    flex-direction: column;
    gap: 15px
}

.sidebar-post-item {
    display: flex;
    gap: 12px;
    align-items: flex-start
}

.sidebar-post-item img {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0
}

.sidebar-post-info {
    flex: 1
}

.sidebar-post-info a {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    transition: color 0.2s
}

.sidebar-post-info a:hover {
    color: #e3a6ab
}

.sidebar-post-date {
    font-size: 12px;
    color: #94a3b8
}

@media (max-width:991px) {
    .news-content-layout {
        flex-direction: column
    }

    .news-sidebar-col {
        width: 100%
    }
}

@media (max-width:767px) {
    .news-card {
        flex-direction: column
    }

    .news-card-img {
        width: 100%
    }

    .news-card-img img {
        aspect-ratio: 16/9
    }

    .news-header-right {
        width: 100%;
        flex-direction: column;
        align-items: stretch
    }

    .news-search-box {
        width: 100%
    }
}