/*
Theme Name: Zaobao Inspired
Theme URI: https://example.com/zaobao-inspired
Author: WordPress Theme
Author URI: https://example.com
Description: 仿联合早报(zaobao.com)风格的专业新闻WordPress主题。采用经典三栏布局，以深红色为主色调，简洁明快，适合新闻、媒体类网站。
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zaobao-inspired
Tags: news, newspaper, blog, two-columns, three-columns, left-sidebar, right-sidebar, custom-header, custom-menu, featured-images, theme-options, translation-ready

联合早报风格主题 (Zaobao Inspired Theme)
基于联合早报网(zaobao.com)的设计风格，融合现代新闻网站布局理念。
*/

/* =====================================================
   1. 重置与基础样式 (Reset & Base)
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", "WenQuanYi Micro Hei", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    background-color: #e8e8e8;
}

/* =====================================================
   2. 颜色变量 (Color Variables)
   ===================================================== */

:root {
    --zb-red: #B22222;
    --zb-red-dark: #8B1A1A;
    --zb-red-light: #C0392B;
    --zb-blue: #2C3E50;
    --zb-blue-dark: #1a252f;
    --zb-gold: #D4A017;
    --zb-bg: #f5f5f5;
    --zb-bg-dark: #e8e8e8;
    --zb-white: #ffffff;
    --zb-text: #333333;
    --zb-text-light: #666666;
    --zb-text-lighter: #999999;
    --zb-border: #dddddd;
    --zb-border-light: #eeeeee;
    --zb-header-bg: #ffffff;
    --zb-top-bar-bg: #B22222;
    --zb-footer-bg: #2C3E50;
    --zb-footer-text: #cccccc;
}

/* =====================================================
   3. 排版 (Typography)
   ===================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Hiragino Sans GB", sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: #222;
    margin-top: 0;
    margin-bottom: 0.5em;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
    margin-top: 0;
    margin-bottom: 1em;
}

a {
    color: var(--zb-red);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--zb-red-dark);
    text-decoration: underline;
}

a:focus {
    outline: 2px solid var(--zb-red);
    outline-offset: 2px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =====================================================
   4. 容器 (Container)
   ===================================================== */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* =====================================================
   5. 顶部工具栏 (Top Bar)
   ===================================================== */

.top-bar {
    background-color: var(--zb-top-bar-bg);
    color: #fff;
    font-size: 13px;
    line-height: 1;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-date {
    white-space: nowrap;
}

.top-bar-breaking {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
}

.breaking-label {
    background-color: #ffd700;
    color: #8B1A1A;
    padding: 2px 8px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    border-radius: 2px;
    flex-shrink: 0;
}

.breaking-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    animation: scroll-text 20s linear infinite;
}

@keyframes scroll-text {
    0%, 20% { transform: translateX(0); }
    80%, 100% { transform: translateX(-100%); }
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.top-bar-right a {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
}

.top-bar-right a:hover {
    color: #fff;
    text-decoration: none;
}

/* =====================================================
   6. 头部 (Header)
   ===================================================== */

.site-header {
    background-color: var(--zb-white);
    border-bottom: 3px solid var(--zb-red);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.site-branding {
    flex-shrink: 0;
}

.site-title {
    margin: 0;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
}

.site-title a {
    color: var(--zb-red);
    text-decoration: none;
}

.site-title a:hover {
    color: var(--zb-red-dark);
}

.site-description {
    margin: 5px 0 0;
    font-size: 13px;
    color: var(--zb-text-light);
    font-weight: 400;
}

.header-ad {
    flex-shrink: 0;
    max-width: 468px;
}

.header-ad img {
    max-height: 60px;
}

/* =====================================================
   7. 导航 (Navigation)
   ===================================================== */

.main-navigation {
    background-color: var(--zb-blue);
    border-top: 2px solid var(--zb-red);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-navigation .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    background-color: var(--zb-red);
    color: #fff;
}

/* Sub-menu */
.main-navigation .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--zb-blue);
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    z-index: 999;
}

.main-navigation li:hover > .sub-menu {
    display: block;
}

.main-navigation .sub-menu a {
    padding: 10px 16px;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.main-navigation .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

/* Navigation search */
.nav-search {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.nav-search input[type="search"] {
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    background-color: rgba(255,255,255,0.15);
    color: #fff;
    font-size: 13px;
    border-radius: 3px 0 0 3px;
    width: 180px;
    outline: none;
    transition: border-color 0.2s ease;
}

.nav-search input[type="search"]::placeholder {
    color: rgba(255,255,255,0.6);
}

.nav-search input[type="search"]:focus {
    border-color: var(--zb-red);
}

.nav-search button {
    padding: 6px 14px;
    background-color: var(--zb-red);
    color: #fff;
    border: 1px solid var(--zb-red);
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-size: 13px;
    transition: background-color 0.2s ease;
}

.nav-search button:hover {
    background-color: var(--zb-red-dark);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
}

/* =====================================================
   8. 滚动新闻条 (Breaking News / News Ticker)
   ===================================================== */

.news-ticker {
    background-color: var(--zb-white);
    border-bottom: 1px solid var(--zb-border);
    padding: 8px 0;
}

.news-ticker .container {
    display: flex;
    align-items: center;
}

.ticker-label {
    background-color: var(--zb-red);
    color: #fff;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    margin-right: 15px;
    flex-shrink: 0;
}

.ticker-content {
    flex: 1;
    overflow: hidden;
    height: 24px;
    position: relative;
}

.ticker-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
    animation: ticker-scroll 15s linear infinite;
}

.ticker-content li {
    height: 24px;
    line-height: 24px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ticker-content a {
    font-size: 13px;
    color: var(--zb-text);
}

.ticker-content a:hover {
    color: var(--zb-red);
}

@keyframes ticker-scroll {
    0% { transform: translateY(0); }
    25% { transform: translateY(-24px); }
    50% { transform: translateY(-48px); }
    75% { transform: translateY(-72px); }
    100% { transform: translateY(0); }
}

/* =====================================================
   9. 主内容区布局 - 精确仿联合早报两栏布局
   ===================================================== */

.site-content {
    padding: 25px 0;
}

/* 整体两栏行容器 */
.zb-row {
    display: flex;
    gap: 30px;
    width: 100%;
}

/* 左栏: 主内容 (972px at 2xl, 916px at xl, 635px at lg) */
.zb-col-main {
    flex: 1;
    min-width: 0;
    max-width: 100%;
}

/* 右栏: 侧边栏 */
.zb-col-side {
    width: 300px;
    flex-shrink: 0;
}

/* -------- 区块容器 -------- */
.zb-block {
    margin-bottom: 20px;
}

.zb-block-topnews {
    border: 1px solid var(--zb-border);
}

/* 区块头部 */
.zb-block-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--zb-border-light);
}

.zb-block-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--zb-red);
}

.zb-block-more {
    font-size: 13px;
    color: var(--zb-text-light);
}

.zb-block-more:hover {
    color: var(--zb-red);
}

/* -------- 三列网格 -------- */
.zb-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.zb-card a:first-child {
    display: block;
    overflow: hidden;
    margin-bottom: 10px;
}

.zb-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zb-card:hover img {
    transform: scale(1.05);
}

.zb-card-title {
    font-size: 1rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

.zb-card-title a {
    color: #222;
}

.zb-card-title a:hover {
    color: var(--zb-red);
    text-decoration: none;
}

/* =====================================================
   9.5 今日要闻 (Top News / Prime + Rotator)
   ===================================================== */

.topnews-inner {
    display: flex;
    gap: 0;
    position: relative;
}

/* 左侧 Prime 区 (早报: 324px/2xl, 284px/xl, 188px/lg) */
.topnews-prime {
    width: 324px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.prime-article {
    padding: 16px 20px;
    border-bottom: 1px solid var(--zb-border-light);
}

.prime-link {
    display: block;
    color: #222;
}

.prime-link:hover {
    text-decoration: none;
    color: var(--zb-red);
}

.prime-img {
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 2px;
}

.prime-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.prime-link:hover .prime-img img {
    transform: scale(1.05);
}

.prime-title {
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 600;
}

/* Prime 文字链接项 */
.prime-text-item {
    padding: 12px 20px;
    border-bottom: 1px solid var(--zb-border-light);
}

.prime-text-item:last-child {
    border-bottom: none;
}

.prime-text-link {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    display: block;
}

.prime-text-link:hover {
    color: var(--zb-red);
    text-decoration: none;
}

/* 右侧 Rotator 焦点区 */
.topnews-rotator {
    flex: 1;
    min-width: 0;
    border-left: 1px solid var(--zb-border-light);
}

.rotator-link {
    display: block;
    padding: 16px 20px;
    color: #222;
}

.rotator-link:hover {
    text-decoration: none;
}

.rotator-img {
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 2px;
}

.rotator-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.rotator-link:hover .rotator-img img {
    transform: scale(1.03);
}

.rotator-title {
    font-size: 1.35rem;
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
}

.rotator-link:hover .rotator-title {
    color: var(--zb-red);
}

/* 今日要闻下方网格 */
.topnews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--zb-border-light);
}

.topnews-grid-item {
    padding: 14px;
    border-right: 1px solid var(--zb-border-light);
}

.topnews-grid-item:last-child {
    border-right: none;
}

.grid-link {
    display: block;
    color: #222;
}

.grid-link:hover {
    text-decoration: none;
}

.grid-img {
    margin-bottom: 8px;
    overflow: hidden;
}

.grid-img img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-link:hover .grid-img img {
    transform: scale(1.05);
}

.grid-title {
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-link:hover .grid-title {
    color: var(--zb-red);
}

/* =====================================================
   9.6 侧边栏 (含即时新闻、热门排行)
   ===================================================== */

.zb-side-block {
    margin-bottom: 20px;
    border: 1px solid var(--zb-border);
}

.zb-side-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zb-white);
    background-color: var(--zb-red);
    padding: 10px 16px;
    margin: 0;
}

/* 即时新闻 */
.zb-realtime {
    padding: 4px 0;
}

.zb-rt-item {
    display: flex;
    gap: 10px;
    padding: 8px 16px;
    border-bottom: 1px dashed var(--zb-border-light);
    align-items: flex-start;
}

.zb-rt-item:last-child {
    border-bottom: none;
}

.zb-rt-time {
    font-size: 11px;
    color: var(--zb-red);
    font-weight: 700;
    white-space: nowrap;
    padding-top: 2px;
    min-width: 40px;
}

.zb-rt-link {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    flex: 1;
}

.zb-rt-link:hover {
    color: var(--zb-red);
    text-decoration: none;
}

/* 热门排行 */
.zb-popular {
    padding: 4px 0;
}

.zb-pop-item {
    display: flex;
    gap: 10px;
    padding: 8px 16px;
    border-bottom: 1px dashed var(--zb-border-light);
    align-items: flex-start;
}

.zb-pop-item:last-child {
    border-bottom: none;
}

.zb-pop-num {
    width: 22px;
    height: 22px;
    border-radius: 3px;
    background: #e8e8e8;
    color: #999;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.zb-pop-num.top3 {
    background: var(--zb-red);
    color: #fff;
}

.zb-pop-link {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    flex: 1;
}

.zb-pop-link:hover {
    color: var(--zb-red);
    text-decoration: none;
}

/* =====================================================
   9.7 文章列表（分页用）
   ===================================================== */

.zb-list-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--zb-border-light);
}

.zb-list-item:last-child {
    border-bottom: none;
}

.zb-list-img {
    flex-shrink: 0;
    width: 260px;
}

.zb-list-img img {
    width: 260px;
    height: 160px;
    object-fit: cover;
}

.zb-list-body {
    flex: 1;
    min-width: 0;
}

.zb-list-title {
    font-size: 1.1rem;
    margin: 0 0 8px;
    line-height: 1.4;
}

.zb-list-title a {
    color: #222;
}

.zb-list-title a:hover {
    color: var(--zb-red);
    text-decoration: none;
}

.zb-list-meta {
    font-size: 12px;
    color: var(--zb-text-lighter);
    margin-bottom: 8px;
}

.zb-list-excerpt {
    font-size: 14px;
    color: var(--zb-text-light);
    line-height: 1.6;
}

/* 向后兼容 */
.content-area {
    display: flex;
    gap: 30px;
}
.content-primary {
    flex: 1;
    min-width: 0;
}
.content-secondary {
    width: 300px;
    flex-shrink: 0;
}

/* =====================================================
   10. 特色头条 (Featured / Hero Section)
   ===================================================== */

.featured-section {
    margin-bottom: 30px;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3px;
    background-color: var(--zb-border);
    border: 1px solid var(--zb-border);
}

.featured-main {
    position: relative;
    background-color: var(--zb-white);
    overflow: hidden;
}

.featured-main .post-thumbnail {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.featured-main .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: #fff;
}

.featured-main .entry-title {
    font-size: 1.6rem;
    margin: 0 0 8px;
}

.featured-main .entry-title a {
    color: #fff;
    text-decoration: none;
}

.featured-main .entry-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
}

.featured-main .entry-summary {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-side {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.featured-side-item {
    flex: 1;
    position: relative;
    background-color: var(--zb-white);
    overflow: hidden;
}

.featured-side-item .post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 130px;
}

.featured-side-item .featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
}

.featured-side-item .entry-title {
    font-size: 0.95rem;
    margin: 0;
}

.featured-side-item .entry-title a {
    color: #fff;
    text-decoration: none;
}

/* Featured slider mode */
.featured-slider {
    position: relative;
    overflow: hidden;
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
    margin-bottom: 30px;
}

.featured-slider .slider-item {
    display: none;
    position: relative;
}

.featured-slider .slider-item.active {
    display: block;
}

.featured-slider .post-thumbnail {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.featured-slider .slider-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.featured-slider .entry-title {
    font-size: 1.8rem;
    margin: 0 0 10px;
}

.featured-slider .entry-title a {
    color: #fff;
    text-decoration: none;
}

.featured-slider .entry-summary {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    max-width: 700px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: none;
    transition: background 0.2s ease;
}

.slider-dot.active {
    background: var(--zb-red);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.slider-arrow {
    pointer-events: auto;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.slider-arrow:hover {
    background: var(--zb-red);
}

/* =====================================================
   11. 新闻区块 (News Blocks / Section)
   ===================================================== */

.section-block {
    margin-bottom: 30px;
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
    border-top: 3px solid var(--zb-red);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border-bottom: 1px solid var(--zb-border-light);
}

.section-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--zb-red);
    text-transform: uppercase;
}

.section-title a {
    color: var(--zb-red);
}

.section-more {
    font-size: 13px;
    color: var(--zb-text-light);
}

.section-more:hover {
    color: var(--zb-red);
}

.section-body {
    padding: 20px;
}

/* Grid layout for news blocks */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.news-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.news-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.news-item {
    border-bottom: 1px dashed var(--zb-border-light);
    padding-bottom: 15px;
}

.news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.news-item .post-thumbnail {
    margin-bottom: 10px;
    overflow: hidden;
}

.news-item .post-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item:hover .post-thumbnail img {
    transform: scale(1.05);
}

.news-item .entry-title {
    font-size: 1rem;
    margin: 0 0 8px;
    line-height: 1.4;
}

.news-item .entry-title a {
    color: #222;
}

.news-item .entry-title a:hover {
    color: var(--zb-red);
    text-decoration: none;
}

.news-item .entry-meta {
    font-size: 12px;
    color: var(--zb-text-lighter);
    margin-bottom: 6px;
}

.news-item .entry-meta a {
    color: var(--zb-text-lighter);
}

.news-item .entry-summary {
    font-size: 14px;
    color: var(--zb-text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* List view for news */
.news-list .news-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--zb-border-light);
}

.news-list .news-item:first-child {
    padding-top: 0;
}

.news-list .news-item .post-thumbnail {
    flex-shrink: 0;
    width: 260px;
    margin-bottom: 0;
}

.news-list .news-item .post-thumbnail img {
    width: 260px;
    height: 160px;
    object-fit: cover;
}

.news-list .news-item-content {
    flex: 1;
}

/* =====================================================
   11.5 即时新闻时间线 (Breaking News Timeline)
   ===================================================== */

.breaking-list {
    position: relative;
    padding-left: 20px;
}

.breaking-list::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--zb-red);
    opacity: 0.3;
}

.breaking-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--zb-border-light);
    position: relative;
}

.breaking-item:first-child {
    padding-top: 0;
}

.breaking-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.breaking-time {
    font-size: 12px;
    color: var(--zb-red);
    font-weight: 700;
    white-space: nowrap;
    min-width: 45px;
    padding-top: 1px;
    font-family: "Courier New", monospace;
}

.breaking-dot {
    position: absolute;
    left: -17px;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--zb-red);
    border: 2px solid var(--zb-white);
    box-shadow: 0 0 0 2px var(--zb-red);
    flex-shrink: 0;
}

.breaking-item:first-child .breaking-dot {
    top: 4px;
}

.breaking-content {
    flex: 1;
    min-width: 0;
}

.breaking-title {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.breaking-title a {
    color: #333;
}

.breaking-title a:hover {
    color: var(--zb-red);
    text-decoration: none;
}

/* 专题报道特殊样式 */
.special-item .post-thumbnail {
    margin-bottom: 12px;
}

.special-item .post-thumbnail img {
    height: 220px;
    object-fit: cover;
    border-radius: 2px;
}

.special-item .entry-title {
    font-size: 1.1rem;
}

.special-item .entry-summary {
    -webkit-line-clamp: 2;
}

/* =====================================================
   12. 文章内页 (Single Post)
   ===================================================== */

.single-post-wrapper {
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
    padding: 30px;
}

.entry-header {
    margin-bottom: 25px;
}

.entry-category {
    display: inline-block;
    background-color: var(--zb-red);
    color: #fff;
    padding: 3px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
    border-radius: 2px;
}

.entry-title-single {
    font-size: 1.8rem;
    line-height: 1.3;
    margin: 0 0 15px;
    color: #222;
}

.entry-meta-single {
    font-size: 13px;
    color: var(--zb-text-light);
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--zb-border-light);
}

.entry-meta-single .author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.entry-meta-single .byline {
    display: flex;
    align-items: center;
    gap: 8px;
}

.entry-meta-single .byline a {
    color: #222;
    font-weight: 600;
}

.entry-featured-image {
    margin: 20px 0;
}

.entry-featured-image img {
    width: 100%;
    height: auto;
}

.entry-featured-image .wp-caption-text {
    font-size: 13px;
    color: var(--zb-text-light);
    padding: 8px 0;
    border-bottom: 1px solid var(--zb-border-light);
}

.entry-content {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.entry-content p {
    margin-bottom: 1.2em;
}

.entry-content h2 {
    font-size: 1.4rem;
    margin-top: 1.5em;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--zb-red);
}

.entry-content h3 {
    font-size: 1.2rem;
    margin-top: 1.3em;
}

.entry-content blockquote {
    margin: 1.5em 0;
    padding: 15px 20px;
    border-left: 4px solid var(--zb-red);
    background-color: #f9f9f9;
    font-style: italic;
    color: #555;
}

.entry-content blockquote p:last-child {
    margin-bottom: 0;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 1.2em;
}

.entry-content li {
    margin-bottom: 5px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5em auto;
}

.entry-content .wp-caption {
    max-width: 100%;
    margin: 1.5em auto;
}

.entry-content .wp-caption-text {
    font-size: 13px;
    color: var(--zb-text-light);
    text-align: center;
    padding-top: 8px;
}

.entry-tags {
    margin: 30px 0;
    padding: 15px 0;
    border-top: 1px solid var(--zb-border-light);
    border-bottom: 1px solid var(--zb-border-light);
}

.entry-tags .tag-label {
    font-weight: 700;
    color: #222;
    margin-right: 8px;
}

.entry-tags a {
    display: inline-block;
    padding: 3px 10px;
    margin: 3px 3px;
    background-color: #f0f0f0;
    font-size: 12px;
    color: var(--zb-text);
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.entry-tags a:hover {
    background-color: var(--zb-red);
    color: #fff;
    text-decoration: none;
}

.post-navigation {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
    max-width: 48%;
}

.post-navigation a {
    display: block;
    padding: 12px 18px;
    background-color: #f9f9f9;
    border: 1px solid var(--zb-border);
    border-radius: 3px;
    font-size: 14px;
    color: var(--zb-text);
    transition: all 0.2s ease;
}

.post-navigation a:hover {
    background-color: var(--zb-red);
    color: #fff;
    text-decoration: none;
    border-color: var(--zb-red);
}

.post-navigation .nav-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--zb-text-lighter);
    display: block;
    margin-bottom: 3px;
}

.post-navigation a:hover .nav-label {
    color: rgba(255,255,255,0.8);
}

/* Related posts */
.related-posts {
    margin-top: 30px;
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
}

.related-posts .section-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Comments */
.comments-area {
    margin-top: 30px;
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
    padding: 30px;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--zb-border-light);
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.comment-author .avatar {
    border-radius: 50%;
}

.comment-author .fn {
    font-weight: 600;
    font-style: normal;
    color: #222;
}

.comment-metadata {
    font-size: 12px;
    color: var(--zb-text-lighter);
}

.comment-content {
    font-size: 14px;
    line-height: 1.7;
}

.reply a {
    font-size: 12px;
    color: var(--zb-red);
    font-weight: 600;
}

/* =====================================================
   13. 侧边栏 (Sidebar)
   ===================================================== */

.sidebar-widget {
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
    margin-bottom: 25px;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--zb-white);
    background-color: var(--zb-red);
    padding: 10px 16px;
    margin: 0;
    text-transform: uppercase;
}

.widget-content {
    padding: 15px;
}

/* Latest news widget */
.widget-latest-news .news-item-sidebar {
    padding: 10px 0;
    border-bottom: 1px dashed var(--zb-border-light);
}

.widget-latest-news .news-item-sidebar:first-child {
    padding-top: 0;
}

.widget-latest-news .news-item-sidebar:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-latest-news .post-title {
    font-size: 14px;
    margin: 0 0 4px;
    line-height: 1.4;
}

.widget-latest-news .post-title a {
    color: #222;
}

.widget-latest-news .post-title a:hover {
    color: var(--zb-red);
}

.widget-latest-news .post-date {
    font-size: 11px;
    color: var(--zb-text-lighter);
}

/* Sidebar with thumbnails */
.widget-thumb-list .thumb-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--zb-border-light);
}

.widget-thumb-list .thumb-item:first-child {
    padding-top: 0;
}

.widget-thumb-list .thumb-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget-thumb-list .thumb-img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 2px;
}

.widget-thumb-list .thumb-content {
    flex: 1;
    min-width: 0;
}

.widget-thumb-list .post-title {
    font-size: 13px;
    margin: 0 0 3px;
    line-height: 1.4;
}

.widget-thumb-list .post-title a {
    color: #222;
}

.widget-thumb-list .post-title a:hover {
    color: var(--zb-red);
}

.widget-thumb-list .post-date {
    font-size: 11px;
    color: var(--zb-text-lighter);
}

/* Tags cloud */
.widget-tag-cloud .tag-cloud-link {
    display: inline-block;
    padding: 4px 10px;
    margin: 3px;
    background-color: #f0f0f0;
    font-size: 12px !important;
    color: var(--zb-text);
    border-radius: 2px;
    transition: all 0.2s ease;
}

.widget-tag-cloud .tag-cloud-link:hover {
    background-color: var(--zb-red);
    color: #fff;
    text-decoration: none;
}

/* Sidebar ad */
.sidebar-ad {
    text-align: center;
    padding: 10px;
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
    margin-bottom: 25px;
}

.sidebar-ad img {
    margin: 0 auto;
}

/* =====================================================
   14. 底部 (Footer)
   ===================================================== */

.site-footer {
    background-color: var(--zb-footer-bg);
    color: var(--zb-footer-text);
    font-size: 14px;
}

.footer-widgets {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-widgets .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-widget .widget-title-footer {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--zb-red);
}

.footer-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-widget li {
    padding: 5px 0;
}

.footer-widget a {
    color: var(--zb-footer-text);
    font-size: 13px;
}

.footer-widget a:hover {
    color: #fff;
    text-decoration: none;
}

.footer-widget p {
    font-size: 13px;
    line-height: 1.7;
}

.footer-widget .textwidget {
    font-size: 13px;
    line-height: 1.7;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 12px;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.footer-menu a {
    color: var(--zb-footer-text);
    font-size: 12px;
}

.footer-menu a:hover {
    color: #fff;
    text-decoration: none;
}

/* =====================================================
   15. 归档页面 (Archive / Category / Search)
   ===================================================== */

.archive-header {
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
    padding: 20px;
    margin-bottom: 25px;
}

.archive-title {
    font-size: 1.3rem;
    margin: 0 0 8px;
    color: var(--zb-red);
}

.archive-description {
    font-size: 14px;
    color: var(--zb-text-light);
    margin: 0;
}

/* =====================================================
   16. 页面模板 (Page)
   ===================================================== */

.page-wrapper {
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
    padding: 30px;
}

.page-title {
    font-size: 1.6rem;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--zb-red);
}

/* =====================================================
   17. 文章列表 (Archive / Blog List)
   ===================================================== */

.blog-list {
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
}

.blog-list .news-list .news-item {
    padding: 20px;
    margin: 0;
}

.blog-list .news-list .news-item:not(:last-child) {
    border-bottom: 1px solid var(--zb-border-light);
}

/* =====================================================
   18. 分页导航 (Pagination)
   ===================================================== */

.pagination {
    margin: 30px 0;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 3px;
    background-color: var(--zb-white);
    border: 1px solid var(--zb-border);
    color: var(--zb-text);
    font-size: 14px;
    border-radius: 2px;
    transition: all 0.2s ease;
}

.pagination .page-numbers:hover {
    background-color: var(--zb-red);
    color: #fff;
    border-color: var(--zb-red);
    text-decoration: none;
}

.pagination .page-numbers.current {
    background-color: var(--zb-red);
    color: #fff;
    border-color: var(--zb-red);
}

.pagination .page-numbers.dots {
    border: none;
    background: none;
}

/* =====================================================
   19. 404 页面
   ===================================================== */

.error-404-wrapper {
    text-align: center;
    padding: 80px 20px;
    background: var(--zb-white);
    border: 1px solid var(--zb-border);
}

.error-404-wrapper .error-code {
    font-size: 120px;
    font-weight: 900;
    color: var(--zb-red);
    line-height: 1;
    margin: 0 0 20px;
}

.error-404-wrapper .error-message {
    font-size: 20px;
    color: var(--zb-text-light);
    margin-bottom: 30px;
}

/* =====================================================
   19.5 面包屑导航 (Breadcrumb)
   ===================================================== */

.breadcrumb {
    font-size: 13px;
    color: var(--zb-text-lighter);
    padding: 10px 0;
    margin-bottom: 0;
}

.breadcrumb a {
    color: var(--zb-text-light);
}

.breadcrumb a:hover {
    color: var(--zb-red);
}

.breadcrumb-sep {
    margin: 0 5px;
    color: #ccc;
}

/* =====================================================
   20. 搜索框 (Search Form)
   ===================================================== */

.search-form {
    display: flex;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--zb-border);
    border-right: none;
    font-size: 14px;
    color: var(--zb-text);
    outline: none;
}

.search-form input[type="search"]:focus {
    border-color: var(--zb-red);
}

.search-form button {
    padding: 10px 20px;
    background-color: var(--zb-red);
    color: #fff;
    border: 1px solid var(--zb-red);
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.search-form button:hover {
    background-color: var(--zb-red-dark);
}

/* =====================================================
   21. WordPress Core 样式
   ===================================================== */

.sticky {
    position: relative;
}

.bypostauthor {
    background-color: #f9f9f9;
}

.gallery {
    margin-bottom: 1.5em;
}

.gallery-item {
    display: inline-block;
    text-align: center;
    vertical-align: top;
    width: 100%;
}

.gallery-columns-2 .gallery-item { max-width: 50%; }
.gallery-columns-3 .gallery-item { max-width: 33.33%; }
.gallery-columns-4 .gallery-item { max-width: 25%; }
.gallery-columns-5 .gallery-item { max-width: 20%; }
.gallery-columns-6 .gallery-item { max-width: 16.66%; }
.gallery-columns-7 .gallery-item { max-width: 14.28%; }
.gallery-columns-8 .gallery-item { max-width: 12.5%; }
.gallery-columns-9 .gallery-item { max-width: 11.11%; }

.gallery-caption {
    display: block;
    font-size: 13px;
    color: var(--zb-text-light);
    padding: 5px 0;
}

.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0 auto;
}

.wp-caption-text {
    text-align: center;
    font-size: 13px;
    color: var(--zb-text-light);
    padding-top: 8px;
}

.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* =====================================================
   22. 响应式设计 (Responsive)
   ===================================================== */

	/* Tablet */
@media (max-width: 992px) {
    .content-area {
        flex-direction: column !important;
    }
    .content-secondary {
        width: 100%;
    }

    /* 两栏变单栏 */
    .zb-row {
        flex-direction: column;
    }
    .zb-col-side {
        width: 100%;
    }

    .featured-grid {
        grid-template-columns: 1fr;
    }
    .featured-main .post-thumbnail {
        height: 300px;
    }
    .featured-side {
        flex-direction: row;
    }
    .featured-side-item {
        flex: 1;
    }

    /* 今日要闻响应式 */
    .topnews-inner {
        flex-direction: column;
    }
    .topnews-prime {
        width: 100%;
        border-right: none;
    }
    .topnews-prime {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .prime-article {
        width: 100%;
    }
    .prime-text-item {
        flex: 1;
        min-width: 200px;
        border-bottom: none;
        border-right: 1px solid var(--zb-border-light);
    }
    .prime-text-item:last-child {
        border-right: none;
    }
    .topnews-rotator {
        border-left: none;
    }
    .rotator-img img {
        height: 280px;
    }

    /* 今日要闻网格 */
    .topnews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .zb-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-widgets .container {
        grid-template-columns: repeat(2, 1fr);
    }
    .related-posts .section-body {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-slider .post-thumbnail {
        height: 350px;
    }
    .featured-slider .entry-title {
        font-size: 1.4rem;
    }
    .nav-search input[type="search"] {
        width: 120px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .header-ad {
        max-width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .main-navigation ul {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .main-navigation ul.toggled {
        display: flex;
    }

    .main-navigation .sub-menu {
        position: static;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }

    .main-navigation li:hover > .sub-menu {
        display: none;
    }

    .main-navigation li.active > .sub-menu {
        display: block;
    }

    .main-navigation a {
        padding: 10px 16px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-navigation .container {
        flex-wrap: wrap;
    }

    .nav-search {
        width: 100%;
        padding: 10px 16px;
    }

    .nav-search input[type="search"] {
        flex: 1;
        width: auto;
    }

    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .top-bar-left {
        width: 100%;
    }

    .top-bar-right {
        width: 100%;
        justify-content: center;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    /* 新布局移动端 */
    .zb-grid-3 {
        grid-template-columns: 1fr;
    }

    .topnews-grid {
        grid-template-columns: 1fr 1fr;
    }

    .topnews-grid-item {
        border-right: none !important;
        border-bottom: 1px solid var(--zb-border-light);
    }

    .topnews-grid-item:nth-child(odd) {
        border-right: 1px solid var(--zb-border-light) !important;
    }

    .prime-article {
        padding: 12px 16px;
    }

    .prime-text-item {
        padding: 10px 16px;
    }

    .rotator-link {
        padding: 12px 16px;
    }

    .rotator-img img {
        height: 220px;
    }

    .rotator-title {
        font-size: 1.15rem;
    }

    .prime-title {
        font-size: 1rem;
    }

    .zb-col-side {
        width: 100%;
    }

    .zb-rt-item {
        padding: 8px 12px;
    }

    .zb-pop-item {
        padding: 8px 12px;
    }

    .news-grid-2 {
        grid-template-columns: 1fr;
    }

    .news-grid-4 {
        grid-template-columns: 1fr;
    }

    .featured-main .post-thumbnail {
        height: 220px;
    }

    .featured-main .entry-title {
        font-size: 1.2rem;
    }

    .featured-side {
        flex-direction: column;
    }

    .news-list .news-item {
        flex-direction: column;
    }

    .news-list .news-item .post-thumbnail {
        width: 100%;
    }

    .news-list .news-item .post-thumbnail img {
        width: 100%;
        height: 200px;
    }

    .footer-widgets .container {
        grid-template-columns: 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .related-posts .section-body {
        grid-template-columns: 1fr;
    }

    .entry-title-single {
        font-size: 1.3rem;
    }

    .entry-content {
        font-size: 16px;
    }

    .single-post-wrapper {
        padding: 20px;
    }

    .post-navigation {
        flex-direction: column;
        gap: 10px;
    }

    .post-navigation .nav-previous,
    .post-navigation .nav-next {
        max-width: 100%;
    }

    .featured-slider .post-thumbnail {
        height: 250px;
    }

    .featured-slider .entry-title {
        font-size: 1.1rem;
    }

    .featured-slider .slider-content {
        padding: 15px;
    }

    .featured-slider .entry-summary {
        display: none;
    }

    .slider-nav {
        bottom: 10px;
        right: 15px;
    }

    .slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .error-404-wrapper .error-code {
        font-size: 80px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .featured-main .post-thumbnail {
        height: 180px;
    }

    .news-item .post-thumbnail img {
        height: 200px;
    }

    .news-list .news-item .post-thumbnail img {
        height: 180px;
    }

    .container {
        padding: 0 10px;
    }

    .section-body {
        padding: 15px;
    }

    /* 新布局小屏优化 */
    .topnews-grid {
        grid-template-columns: 1fr;
    }

    .topnews-grid-item:nth-child(odd) {
        border-right: none !important;
    }

    .prime-article {
        padding: 12px;
    }

    .prime-text-item {
        padding: 8px 12px;
    }

    .rotator-link {
        padding: 12px;
    }

    .topnews-grid-item {
        padding: 10px;
    }

    .prime-img img {
        height: 120px;
    }

    .rotator-img img {
        height: 180px;
    }

    .rotator-title {
        font-size: 1rem;
    }

    .prime-title {
        font-size: 0.95rem;
    }

    .grid-img img {
        height: 90px;
    }

    .grid-title {
        font-size: 0.8rem;
    }

    .zb-grid-3 {
        grid-template-columns: 1fr;
    }

    .zb-card img {
        height: 200px;
    }
}
