.tabs-wrap {
    margin: 10px 30px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}
.mode-toggle {
    display: flex;
    gap: 0;
    border-bottom: 1px solid #f0ebe3;
    background: #faf8f5;
    padding: 0;
}
.mode-btn {
    flex: 1;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.mode-btn:hover {
    color: #A22F0D;
}
.mode-btn.active {
    color: #A22F0D;
    border-bottom-color: #A22F0D;
    background: #fff;
}
.tab-bar {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 2px solid #f0ebe3;
    background: #faf8f5;
    overflow-x: auto;
}
.tab-btn {
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
    white-space: nowrap;
}
.tab-btn:hover {
    color: #A22F0D;
}
.tab-btn.active {
    color: #A22F0D;
    border-bottom-color: #A22F0D;
    background: #fff;
}
.tab-count {
    display: inline-block;
    margin-left: 6px;
    font-size: 11px;
    background: #eee;
    color: #888;
    padding: 1px 8px;
    border-radius: 10px;
    font-weight: 500;
}
.tab-btn.active .tab-count {
    background: #f0d5cc;
    color: #A22F0D;
}
.tab-search-area {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-bottom: 1px solid #f0ebe3;
}
.tab-search-area input {
    flex: 1;
    padding: 8px 14px;
    border: 2px solid #e0d5c7;
    border-radius: 6px;
    font-size: 14px;
    background: #faf8f5;
    outline: none;
}
.tab-search-area input:focus {
    border-color: #A22F0D;
    background: #fff;
}
.tab-search-area .hint {
    font-size: 13px;
    color: #aaa;
    white-space: nowrap;
}
.result-count {
    font-size: 14px;
    color: #999;
    padding: 8px 30px;
}
.no-results {
    display: none;
    text-align: center;
    padding: 60px 30px;
    color: #888;
}
.no-results.show {
    display: block;
}
.no-results .icon {
    font-size: 40px;
    margin-bottom: 16px;
    opacity: 0.4;
}
.no-results .msg {
    font-size: 18px;
    color: #555;
    margin-bottom: 8px;
}
.no-results .sub {
    font-size: 14px;
    color: #999;
}
.newsPart {
    border-left: 4px solid #dbb8a8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.newsPart:hover {
    border-left-color: #A22F0D;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateX(3px);
}
.newsphp-title {
    transition: color 0.25s ease;
}
.newsPart:hover .newsphp-title {
    color: #A22F0D;
}
.tab-btn:hover {
    color: #A22F0D;
    background: linear-gradient(to top, rgba(162,47,13,0.05), transparent);
}
.mode-btn:hover {
    color: #A22F0D;
    background: linear-gradient(to top, rgba(162,47,13,0.05), transparent);
}
.tab-search-area input {
    transition: border-color 0.25s, box-shadow 0.25s;
}
.tab-search-area input:hover {
    border-color: #A22F0D;
    box-shadow: inset 0 1px 4px rgba(162,47,13,0.05);
}
