/* Baidu-news-like theme styles */
body.bd-body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #333;
}

.bd-hotwords {
    margin-top: 6px;
}
.bd-hotwords-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 4px;
    background: #f5f7ff;
    padding: 6px;
}
.bd-hotwords-item {
    background: #3b6ed6;
    color: #fff;
    font-size: 12px;
    text-align: center;
    padding: 6px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.bd-hotwords-item:hover { background: #295ac0; }
a { color: #1a1a1a; text-decoration: none; }
a:hover { color: #c00; text-decoration: underline; }

.bd-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
}
.bd-header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 18px 0 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bd-logo {
    font-size: 26px;
    font-weight: 700;
    color: #262626;
}
.bd-search-bar {
    background: #f5f8ff;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}
.bd-search-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.bd-search-input {
    flex: 1;
    padding: 7px 10px;
    border: 1px solid #c4c7ce;
    border-right: none;
    border-radius: 2px 0 0 2px;
}
.bd-search-btn {
    padding: 8px 18px;
    border: none;
    background: #3385ff;
    color: #fff;
    font-size: 14px;
    border-radius: 0 2px 2px 0;
    cursor: pointer;
}
.bd-search-btn:hover { background: #2a6edb; }

.bd-page {
    max-width: 1000px;
    margin: 15px auto 40px;
}
.bd-layout {
    display: grid;
    grid-template-columns: 1.6fr 1.4fr;
    grid-column-gap: 24px;
}

.bd-main-left {
    border-right: 1px solid #f0f0f0;
    padding-right: 14px;
}
.bd-main-right {
    padding-left: 10px;
}

.bd-hot-title {
    font-size: 16px;
    color: #1d3b87;
    margin: 0 0 8px;
}

.bd-hero {
    margin-bottom: 16px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
}
.bd-hero-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.bd-hero-caption {
    padding: 8px 10px 10px;
    font-size: 14px;
}
.bd-hero-caption a {
    font-weight: 700;
}

.bd-article-title {
    font-size: 24px;
    font-weight: 700;
    margin: 12px 0 8px;
}
.bd-article-intro {
    font-size: 13px;
    color: #777;
    margin: 0 0 12px;
}
.bd-article-body {
    font-size: 16px;
    line-height: 1.8;
}
.bd-article-body p { margin: 0 0 10px; }

.bd-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bd-list li {
    line-height: 1.8;
}
.bd-list li::before {
    content: '· ';
    color: #c00;
}

.bd-block {
    margin-bottom: 20px;
}
.bd-block-title {
    font-size: 14px;
    color: #1d3b87;
    margin: 0 0 8px;
}

.bd-cover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 8px;
}
.bd-cover-item {
    border: 1px solid #e5e5e5;
    background: #fafafa;
}
.bd-cover-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.bd-footer {
    border-top: 1px solid #e5e5e5;
    padding: 15px 0 20px;
    font-size: 12px;
    color: #999;
    text-align: center;
}

@media (max-width: 900px) {
    .bd-layout {
        grid-template-columns: 1fr;
    }
    .bd-main-left {
        border-right: none;
        padding-right: 0;
    }
    .bd-main-right {
        padding-left: 0;
    }
}
