/* ============================================================
   NEWS 新闻模板 - 高端大气新闻门户风格
   版心 1600px | 全屏顶部导航 | 首页两栏 | 金蓝配色
   ============================================================ */

:root {
    --primary: #0f2a5c;
    --primary-2: #16387a;
    --accent: #d4a94e;
    --accent-2: #e8c877;
    --text: #23272f;
    --text-2: #6b7280;
    --bg: #f2f5fb;
    --card: #ffffff;
    --radius: 14px;
    --shadow: 0 10px 30px rgba(15, 42, 92, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 42, 92, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
                 "Hiragino Sans GB", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }

/* ---------- 版心 1600px ---------- */
.wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================================
   顶部导航（全屏宽度）
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
    background: linear-gradient(120deg, #0a1c42 0%, #122c63 55%, #1a3c85 100%);
    box-shadow: 0 4px 24px rgba(6, 16, 40, 0.35);
}

.header-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 74px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), #f0d893);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 6px 16px rgba(212, 169, 78, 0.45);
}

.logo-text {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1.2;
}
.logo-sub {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}
.main-nav::-webkit-scrollbar { display: none; }

.main-nav a {
    position: relative;
    color: rgba(255,255,255,0.82);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.10); }
.main-nav a.active {
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    font-weight: 700;
}

.header-search {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 999px;
    padding: 4px 4px 4px 16px;
    gap: 6px;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.header-search:focus-within {
    background: #fff;
    border-color: var(--accent);
}
.header-search input {
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    font-size: 14px;
    width: 170px;
    transition: all 0.25s ease;
}
.header-search:focus-within input { color: var(--text); }
.header-search input::placeholder { color: rgba(255,255,255,0.55); }
.header-search:focus-within input::placeholder { color: #a0a6b5; }
.header-search button {
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    border-radius: 999px;
    padding: 7px 18px;
    transition: all 0.25s ease;
}
.header-search button:hover { filter: brightness(1.08); }

/* ============================================================
   首页轮播（Hero Banner）
   ============================================================ */
.hero {
    margin: 28px 0 0;
}

.hero-banner {
    position: relative;
    height: 430px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #122c63, #1d4a9a);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
    background-size: cover;
    background-position: center;
}
.hero-slide.active { opacity: 1; pointer-events: auto; }

.hero-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6,14,34,0.92) 0%, rgba(10,22,52,0.35) 55%, rgba(10,22,52,0.05) 100%);
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 46px;
}

.hero-cat {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 999px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.hero-title {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.35;
    max-width: 78%;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}

.hero-desc {
    color: rgba(255,255,255,0.72);
    margin-top: 10px;
    max-width: 60%;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.25s ease;
}
.hero-nav:hover { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.hero-prev { left: 18px; }
.hero-next { right: 18px; }

.hero-dots {
    position: absolute;
    right: 34px;
    bottom: 26px;
    display: flex;
    gap: 8px;
    z-index: 5;
}
.hero-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}
.hero-dots span.active { background: var(--accent); width: 26px; border-radius: 999px; }

/* ============================================================
   首页两栏布局
   ============================================================ */
.home-layout {
    display: flex;
    gap: 28px;
    margin-top: 28px;
    align-items: flex-start;
}

.home-main {
    flex: 1;
    min-width: 0;
}

.home-side {
    width: 372px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ---------- 板块标题 ---------- */
.section-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.section-head .bar {
    width: 6px;
    height: 22px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent), var(--primary-2));
}
.section-head h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.5px;
}
.section-head .more {
    margin-left: auto;
    font-size: 13px;
    color: var(--text-2);
}
.section-head .more:hover { color: var(--accent); }

/* ---------- 推荐文章（头条 + 列表） ---------- */
.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
    margin-bottom: 28px;
}

.featured-main {
    display: flex;
    gap: 22px;
    margin-bottom: 18px;
    padding: 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f4f7ff, #eef3fc);
}

.featured-thumb {
    width: 340px;
    height: 210px;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background: linear-gradient(135deg, #1d4a9a, #0f2a5c);
}
.featured-thumb img { width: 100%; height: 100%; object-fit: cover; }

.featured-body { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.featured-body h3 { font-size: 21px; font-weight: 800; line-height: 1.45; margin-bottom: 10px; }
.featured-body h3 a:hover { color: var(--primary-2); }
.featured-body p { color: var(--text-2); font-size: 14px; margin-bottom: 14px; flex: 1;
    overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

.meta-line {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-2);
    font-size: 12.5px;
}
.meta-line .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.featured-list .item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 6px;
    border-bottom: 1px dashed #e6eaf3;
}
.featured-list .item:last-child { border-bottom: none; }
.featured-list .idx {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: #eef2fb;
    color: var(--primary-2);
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.featured-list .item:nth-child(-n+3) .idx {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--primary);
}
.featured-list .item a {
    font-size: 15px;
    font-weight: 600;
    color: #2b3242;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.featured-list .item a:hover { color: var(--accent); }
.featured-list .item .time {
    margin-left: auto;
    font-size: 12px;
    color: #a6adbb;
    flex-shrink: 0;
}

/* ---------- 推荐图文（卡片网格） ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}
.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.news-card .thumb {
    height: 158px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background: linear-gradient(135deg, #1d4a9a, #0f2a5c);
}
.news-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .thumb img { transform: scale(1.08); }
.news-card .cate {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(6,16,40,0.65);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 11px;
    padding: 3px 12px;
    border-radius: 999px;
    letter-spacing: 1px;
}

.news-card .body { padding: 16px 18px 18px; }
.news-card .body h3 { font-size: 16px; font-weight: 700; line-height: 1.5; margin-bottom: 8px;
    overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.news-card .body h3 a:hover { color: var(--primary-2); }
.news-card .body p { font-size: 13px; color: var(--text-2);
    overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ============================================================
   侧栏 Widget
   ============================================================ */
.widget {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 18px;
}
.widget-title::before {
    content: "";
    width: 6px;
    height: 20px;
    border-radius: 4px;
    background: linear-gradient(180deg, var(--accent), var(--primary-2));
}

/* 热门榜单 */
.rank-list .item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed #edf0f7;
}
.rank-list .item:last-child { border-bottom: none; }
.rank-list .num {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: #eef2fb;
    color: var(--text-2);
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.rank-list .item:nth-child(-n+3) .num { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--primary); }
.rank-list .item a { font-size: 14px; font-weight: 600; color: #333a4d;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.rank-list .item a:hover { color: var(--accent); }

/* TAG 标签云 */
.tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-item {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: #eef2fb;
    color: var(--primary-2);
    border: 1px solid transparent;
    transition: all 0.25s ease;
}
.tag-item:hover {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--primary);
    transform: translateY(-2px);
}

/* 友情链接 */
.link-list { display: flex; flex-wrap: wrap; gap: 10px; }
.friend-link {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    background: #f5f7fd;
    border: 1px solid #e6eaf3;
    color: #4a5468;
    transition: all 0.25s ease;
}
.friend-link:hover { border-color: var(--accent); color: var(--accent); background: #fffaf0; }

/* ============================================================
   列表页 / 班级 / 搜索页
   ============================================================ */
.page-layout {
    display: flex;
    gap: 28px;
    margin-top: 24px;
    align-items: flex-start;
}

.page-main { flex: 1; min-width: 0; }

.crumb {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 14px 26px;
    margin-top: 24px;
    font-size: 13.5px;
    color: var(--text-2);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.crumb a:hover { color: var(--accent); }
.crumb .sep { color: #c3c9d6; }
.crumb .curr { color: var(--primary); font-weight: 700; }

.list-title-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.list-title-bar .bar { width: 6px; height: 24px; border-radius: 4px; background: linear-gradient(180deg, var(--accent), var(--primary-2)); }
.list-title-bar h1 { font-size: 24px; font-weight: 800; color: var(--primary); }

.list-item {
    display: flex;
    gap: 22px;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}
.list-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.list-item .thumb {
    width: 260px;
    height: 160px;
    border-radius: 10px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    background: linear-gradient(135deg, #1d4a9a, #0f2a5c);
}
.list-item .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.list-item:hover .thumb img { transform: scale(1.06); }

.list-item .info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.list-item .info h2 { font-size: 19px; font-weight: 700; line-height: 1.5; margin-bottom: 8px; }
.list-item .info h2 a:hover { color: var(--primary-2); }
.list-item .info .desc { color: var(--text-2); font-size: 14px; margin-bottom: 10px; flex: 1;
    overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }

/* ---------- 分页 ---------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 26px 0 8px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: 10px;
    background: var(--card);
    color: var(--text-2);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.25s ease;
}
.pagination a:hover { color: var(--primary); transform: translateY(-2px); }
.pagination .current {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--primary);
    font-weight: 800;
}
.pagination .ellipsis { box-shadow: none; background: transparent; }

/* ============================================================
   文章详情页
   ============================================================ */
.article-box {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 44px 52px;
}

.article-box h1 {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.45;
    color: var(--primary);
    margin-bottom: 18px;
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 22px;
    color: var(--text-2);
    font-size: 13px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edf0f7;
    margin-bottom: 26px;
}
.article-meta .sep-line { width: 1px; height: 14px; background: #d8deea; }
.article-meta .cat-tag {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--primary);
    font-weight: 700;
    padding: 2px 12px;
    border-radius: 999px;
    font-size: 12px;
}

.article-content {
    font-size: 16px;
    line-height: 2;
    color: #333a4d;
}
.article-content p { margin-bottom: 1.4em; }
.article-content h2, .article-content h3 { color: var(--primary); margin: 1.5em 0 0.6em; }
.article-content img { border-radius: 10px; margin: 1.2em 0; }
.article-content a { color: var(--primary-2); border-bottom: 1px solid var(--accent); }
.article-content blockquote {
    border-left: 4px solid var(--accent);
    background: #f8fafd;
    padding: 14px 22px;
    border-radius: 0 10px 10px 0;
    color: var(--text-2);
    margin: 1.2em 0;
}

.article-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid #edf0f7;
}
.article-tags .label { font-size: 13px; color: var(--text-2); font-weight: 600; }

/* 上一篇 / 下一篇 */
.article-adjoin {
    display: flex;
    gap: 18px;
    margin-top: 22px;
}
.article-adjoin a {
    flex: 1;
    background: #f4f7ff;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 13.5px;
    color: var(--text-2);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    transition: all 0.25s ease;
}
.article-adjoin a:hover { background: var(--primary); color: #fff; }
.article-adjoin a b { display: block; font-size: 12px; font-weight: 600; opacity: 0.7; margin-bottom: 2px; }

/* 相关推荐（文章页侧栏/底部） */
.related-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed #edf0f7;
}
.related-item:last-child { border-bottom: none; }
.related-item .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary-2));
    flex-shrink: 0;
}
.related-item a { font-size: 14px; font-weight: 600; color: #333a4d;
    overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.related-item a:hover { color: var(--accent); }

/* ============================================================
   底部信息
   ============================================================ */
.site-footer {
    margin-top: 46px;
    background: linear-gradient(140deg, #081530 0%, #0d244f 60%, #132f63 100%);
    color: rgba(255,255,255,0.7);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding: 52px 0 40px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 34px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.footer-col p { font-size: 13.5px; line-height: 2; }
.footer-col ul li { padding: 4px 0; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }

.footer-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-tags a {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.66);
    transition: all 0.25s ease;
}
.footer-tags a:hover { border-color: var(--accent); color: var(--accent); background: rgba(212,169,78,0.08); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.10);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-bottom .brand { color: var(--accent); font-weight: 700; }

/* 返回顶部 */
.go-top {
    position: fixed;
    right: 28px;
    bottom: 34px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(15, 42, 92, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    z-index: 99;
}
.go-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.go-top:hover { background: var(--accent); color: var(--primary); }

/* ============================================================
   响应式
   ============================================================ */
@media (max-width: 1280px) {
    .hero-title { font-size: 28px; }
    .featured-thumb { width: 280px; height: 180px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1100px) {
    .home-layout, .page-layout { flex-direction: column; }
    .home-side { width: 100%; flex-direction: row; flex-wrap: wrap; }
    .home-side .widget { flex: 1; min-width: 280px; }
    .header-search input { width: 110px; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .wrap { padding: 0 14px; }
    .header-bar { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 12px; }
    .hero-banner { height: 300px; }
    .hero-title { font-size: 22px; max-width: 92%; }
    .hero-desc { display: none; }
    .featured-main { flex-direction: column; }
    .featured-thumb { width: 100%; height: 180px; }
    .grid-3 { grid-template-columns: 1fr; }
    .list-item { flex-direction: column; }
    .list-item .thumb { width: 100%; height: 180px; }
    .article-box { padding: 24px 20px; }
    .footer-top { grid-template-columns: 1fr; }
}