/* ===== News Page Styles ===== */

/* Banner 背景图片（继承 banner-base.css 的 .sci-banner 样式） */
.sci-banner {
    --banner-color: #05080e;
    --banner-bg: url('../../img/news/news_banner.jpg');
}

/* ===== News Section — 列表区域微调 ===== */
.news-section {
    padding: 60px 0 80px;
    background: #F5F5F7;
}

/* ===== 卡片圆角 ===== */
.news-section .entry {
    border-radius: 20px;
    overflow: hidden;
}
.news-section .sidebar .sidebar-item {
    border-radius: 20px;
    overflow: hidden;
}
.news-section .sidebar {
    border-radius: 20px;
    overflow: hidden;
}

/* ===== 搜索栏重新设计 ===== */
.news-section .sidebar .search-form form {
    background: #ffffff;
    border: 1.5px solid #e8e8ed;
    border-radius: 14px;
    padding: 4px 4px 4px 16px;
    position: relative;
    display: flex;
    align-items: center;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.news-section .sidebar .search-form form:focus-within {
    border-color: #FF7E00;
    box-shadow: 0 0 0 4px rgba(255, 126, 0, 0.1);
}
.news-section .sidebar .search-form form input[type="text"] {
    border: 0;
    padding: 10px 0;
    width: 100%;
    background: transparent;
    font-size: 14px;
    color: #1d1d1f;
    outline: none;
}
.news-section .sidebar .search-form form input[type="text"]::placeholder {
    color: #86868b;
}
.news-section .sidebar .search-form form button {
    position: static;
    border: 0;
    border-radius: 10px;
    background: #1d1d1f;
    color: #fff;
    font-size: 16px;
    padding: 0 18px;
    height: 36px;
    margin: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.news-section .sidebar .search-form form button:hover {
    background: #FF7E00;
    transform: scale(1.05);
}
.news-section .sidebar .search-form form button:active {
    transform: scale(0.95);
}
.news-section .sidebar .categories ul li a {
    border-radius: 12px;
    padding: 10px 16px;
    display: inline-block;
    transition: background 0.3s, color 0.3s;
}
.news-section .sidebar .categories ul li a:hover {
    background: rgba(255, 126, 0, 0.08);
    text-decoration: none;
}
.news-section .read-more a {
    border-radius: 980px;
}

