* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   淡淡橘皮色主题 - 淡橘背景 + 深色内容区统一
   ============================================ */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #8a6a4a; /* 橘棕色文字 */
    background-color: #fef5e6; /* 淡淡橘皮色背景 */
    min-height: 100vh;
}

/* 添加微妙的橘皮纹理背景 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 165, 60, 0.05) 0%, transparent 25%),
        radial-gradient(circle at 85% 75%, rgba(255, 140, 40, 0.05) 0%, transparent 25%);
    z-index: -1;
    pointer-events: none;
}

/* ========== 链接样式 ========== */
a {
    text-decoration: none;
    color: #e8832a; /* 橘皮色作为链接色 */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

a:hover {
    color: #d4721a; /* 更深的橘皮色悬停色 */
    text-decoration: underline;
}

/* ========== 容器与布局 ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 头部 ========== */
.header {
    background: rgba(254, 245, 230, 0.95); /* 半透明淡橘皮色 */
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(232, 131, 42, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(232, 131, 42, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #e8832a; /* 橘皮色 */
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo a {
    color: #e8832a;
    text-decoration: none;
}

.logo span {
    color: #f0a050; /* 浅橘皮色 */
}

/* ========== 导航 ========== */
.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #8a6a4a; /* 橘棕色 */
    transition: all 0.3s;
    padding: 8px 16px;
    border-radius: 6px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #e8832a;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: #e8832a;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 80%;
}

/* ========== 广告区域 ========== */
.ad-space {
    margin: 20px 0;
}

.ad-placeholder {
    background: linear-gradient(135deg, rgba(255, 235, 210, 0.9), rgba(255, 220, 180, 0.9));
    border: 2px dashed rgba(232, 131, 42, 0.3);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    color: #e8832a;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

/* 广告边框动画效果 */
.ad-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.8s;
}

.ad-placeholder:hover::before {
    left: 100%;
}

.ad-top .ad-placeholder {
    min-height: 90px;
    background: linear-gradient(135deg, #ffebd2, #ffdcb4);
    font-size: 16px;
}

.ad-mid .ad-placeholder {
    min-height: 90px;
    background: linear-gradient(135deg, #ffebd2, #ffdcb4);
}

.ad-sidebar .ad-placeholder {
    min-height: 250px;
    background: linear-gradient(135deg, #ffebd2, #ffdcb4);
}

.ad-article .ad-placeholder {
    min-height: 90px;
    margin: 30px 0;
    background: linear-gradient(135deg, #ffebd2, #ffdcb4);
}

/* ========== 主内容区 ========== */
.main-content {
    padding: 40px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

/* ========== 文章卡片 - 统一深色背景 ========== */
.featured-section {
    margin-bottom: 40px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.article-card {
    background: linear-gradient(135deg, #2a1a0e 0%, #4a2a1a 100%); /* 深橘棕色背景 */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8832a, #f0a050, #e8832a);
    opacity: 0;
    transition: opacity 0.3s;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(232, 131, 42, 0.4);
}

.article-card:hover::before {
    opacity: 1;
}

.article-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.article-card:hover .article-card-image img {
    transform: scale(1.1);
}

.article-card-content {
    padding: 20px;
}

.article-category {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(232, 131, 42, 0.2), rgba(240, 160, 80, 0.2));
    color: #f0a050;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    border: 1px solid rgba(240, 160, 80, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-card-excerpt {
    font-size: 14px;
    color: #c0a088;
    line-height: 1.6;
    margin-bottom: 15px;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #9a7a5a;
}

.article-card-meta .author {
    color: #f0a050;
    font-weight: 500;
}

/* ========== 区块样式 ========== */
.section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    color: #8a6a4a; /* 橘棕色 */
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid #e8832a;
    letter-spacing: 0.5px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ========== 侧边栏 - 统一深色背景 ========== */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.widget {
    background: linear-gradient(135deg, #2a1a0e 0%, #4a2a1a 100%);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #f0a050;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(240, 160, 80, 0.3);
    letter-spacing: 0.5px;
}

/* ========== 分类列表 ========== */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-item {
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #c0a088;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-item:hover {
    background: rgba(232, 131, 42, 0.15);
    color: #f0a050;
    border-color: rgba(240, 160, 80, 0.3);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(232, 131, 42, 0.2);
}

.category-count {
    background: rgba(240, 160, 80, 0.2);
    color: #f0a050;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

/* ========== 热门文章 ========== */
.popular-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.popular-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.popular-item:hover {
    background: rgba(232, 131, 42, 0.1);
    border-color: rgba(240, 160, 80, 0.3);
}

.popular-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(240, 160, 80, 0.2);
}

.popular-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.popular-item:hover .popular-item-image img {
    transform: scale(1.1);
}

.popular-item-content {
    flex: 1;
}

.popular-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 4px;
}

.popular-item-date {
    font-size: 12px;
    color: #9a7a5a;
}

/* ========== 加载更多按钮 ========== */
.load-more-wrapper {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    padding: 14px 36px;
    background: linear-gradient(135deg, #e8832a, #f0a050);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(232, 131, 42, 0.4);
    letter-spacing: 0.5px;
}

.load-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 131, 42, 0.6);
    color: #ffffff;
}

.load-more-btn:active {
    transform: translateY(-1px);
}

/* ========== 页脚 ========== */
.footer {
    background: rgba(254, 245, 230, 0.95);
    color: #8a6a4a;
    padding: 50px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(232, 131, 42, 0.2);
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #e8832a;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #8a6a4a;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #8a6a4a;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #e8832a;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #e8832a;
    color: white;
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #d4721a;
    transform: translateY(-3px);
}

.copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(232, 131, 42, 0.2);
    color: #8a6a4a;
    font-size: 14px;
}

/* ========== 文章详情页 - 统一深色背景 ========== */
.article-detail {
    background: linear-gradient(135deg, #2a1a0e 0%, #4a2a1a 100%);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.article-detail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8832a, #f0a050, #e8832a);
}

.breadcrumb {
    font-size: 14px;
    color: #9a7a5a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

.breadcrumb a {
    color: #f0a050;
}

.breadcrumb .separator {
    color: #9a7a5a;
}

/* 文章标题 */
.article-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin: 16px 0 24px;
    letter-spacing: 0.5px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    color: #9a7a5a;
    margin-bottom: 30px;
}

.article-meta .author {
    color: #f0a050;
    font-weight: 500;
}

.article-meta .separator {
    margin: 0 4px;
    color: #9a7a5a;
}

/* 文章图片 */
.article-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(240, 160, 80, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}

.article-image:hover img {
    transform: scale(1.05);
}

/* 文章摘要 */
.article-summary {
    font-size: 18px;
    color: #c0a088;
    line-height: 1.8;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #e8832a;
    border-radius: 4px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

/* 文章正文 */
.article-body {
    font-size: 16px;
    color: #d0c0a8;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body h2 {
    font-size: 24px;
    font-weight: 700;
    color: #f0a050;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(240, 160, 80, 0.3);
}

.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: #e8a060;
    margin: 30px 0 15px;
}

.article-body ul, .article-body ol {
    margin: 16px 0 16px 24px;
}

.article-body li {
    margin-bottom: 10px;
    color: #c0a088;
}

.article-body strong {
    color: #ffffff;
    font-weight: 600;
}

/* 文章标签 */
.article-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid rgba(240, 160, 80, 0.3);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tag {
    padding: 8px 16px;
    background: rgba(232, 131, 42, 0.15);
    color: #f0a050;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(240, 160, 80, 0.3);
    transition: all 0.3s;
}

.article-tag:hover {
    background: rgba(232, 131, 42, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 131, 42, 0.3);
}

/* ========== 相关文章 ========== */
.related-articles {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(240, 160, 80, 0.3);
}

/* ========== 分类页面 ========== */
.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-title {
    font-size: 36px;
    font-weight: 800;
    color: #e8832a;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.category-description {
    font-size: 18px;
    color: #8a6a4a;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== 响应式设计 ========== */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .featured-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 15px;
        font-size: 14px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .featured-grid, .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-detail {
        padding: 24px;
    }
    
    .article-title {
        font-size: 26px;
    }
    
    .article-image {
        height: 250px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .nav {
        gap: 10px;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .article-title {
        font-size: 22px;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
}

/* ========== 自定义滚动条 ========== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #fef5e6; /* 淡淡橘皮色背景 */
}

::-webkit-scrollbar-thumb {
    background: #e8832a; /* 橘皮色 */
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4721a; /* 更深的橘皮色 */
}

/* ========== Homepage refresh: centered navigation + navy/coral palette ========== */
.home-page {
    --home-ink: #102a43;
    --home-muted: #627d98;
    --home-surface: #ffffff;
    --home-background: #f6f3ed;
    --home-accent: #ed6a5a;
    --home-accent-dark: #d95345;
    color: var(--home-ink);
    background: var(--home-background);
}

.home-page::before {
    background-image:
        radial-gradient(circle at 8% 12%, rgba(237, 106, 90, 0.08), transparent 24%),
        radial-gradient(circle at 92% 30%, rgba(16, 42, 67, 0.07), transparent 28%);
}

.home-page a { color: var(--home-accent); }

.home-header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #d9e2ec;
    box-shadow: 0 8px 30px rgba(16, 42, 67, 0.08);
}

.home-header .header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 18px 0;
}

.home-header .logo {
    color: var(--home-ink);
    font-size: 25px;
    letter-spacing: 0.08em;
}

.home-nav {
    grid-column: 2;
    justify-content: center;
    gap: 8px;
    padding: 5px;
    background: #eef2f6;
    border: 1px solid #d9e2ec;
    border-radius: 999px;
}

.home-nav .nav-link {
    color: var(--home-muted);
    padding: 8px 17px;
    border-radius: 999px;
}

.home-nav .nav-link::after { display: none; }

.home-nav .nav-link:hover,
.home-nav .nav-link.active {
    color: #ffffff;
    background: var(--home-ink);
    text-decoration: none;
}

.home-main { padding-top: 34px; }

.home-page .featured-grid,
.home-page .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.home-page .section-title {
    color: var(--home-ink);
    border-color: var(--home-accent);
}

.home-page .article-card,
.home-page .widget {
    background: var(--home-surface);
    border: 1px solid #d9e2ec;
    box-shadow: 0 12px 32px rgba(16, 42, 67, 0.09);
}

.home-page .article-card::before { background: var(--home-accent); }

.home-page .article-card:hover {
    border-color: rgba(237, 106, 90, 0.5);
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.14);
}

.home-page .article-category {
    color: var(--home-accent-dark);
    background: rgba(237, 106, 90, 0.1);
    border-color: rgba(237, 106, 90, 0.25);
}

.home-page .article-card-title,
.home-page .widget-title { color: var(--home-ink); }

.home-page .article-card-excerpt,
.home-page .article-card-meta,
.home-page .popular-item-meta { color: var(--home-muted); }

.home-page .article-card-meta .author,
.home-page .popular-item-title { color: var(--home-accent-dark); }

.home-page .widget-title { border-color: #d9e2ec; }

.home-page .category-item {
    color: var(--home-ink);
    background: #f4f7fa;
    border-color: #d9e2ec;
}

.home-page .category-item:hover {
    color: var(--home-accent-dark);
    background: rgba(237, 106, 90, 0.08);
    border-color: rgba(237, 106, 90, 0.3);
    box-shadow: none;
}

.home-page .load-more-btn {
    background: var(--home-accent);
    box-shadow: 0 7px 18px rgba(237, 106, 90, 0.28);
}

.home-page .load-more-btn:hover {
    background: var(--home-accent-dark);
    box-shadow: 0 10px 24px rgba(237, 106, 90, 0.34);
}

.home-footer {
    color: #bcccdc;
    background: var(--home-ink);
    border-top: 0;
}

.home-footer a,
.home-footer span { color: #d9e2ec !important; }
.home-footer a:hover { color: #ffffff !important; }

@media (max-width: 768px) {
    .home-header .header-content { display: flex; }
    .home-nav { gap: 5px; border-radius: 18px; }
}

@media (max-width: 480px) {
    .home-nav .nav-link { padding: 7px 10px; font-size: 13px; }
}

/* ========== Shared layout and palette across every page ========== */
.site-page {
    --home-ink: #102a43;
    --home-muted: #627d98;
    --home-surface: #ffffff;
    --home-background: #f6f3ed;
    --home-accent: #ed6a5a;
    --home-accent-dark: #d95345;
    color: var(--home-ink);
    background: var(--home-background);
}

.site-page::before {
    background-image:
        radial-gradient(circle at 8% 12%, rgba(237, 106, 90, 0.08), transparent 24%),
        radial-gradient(circle at 92% 30%, rgba(16, 42, 67, 0.07), transparent 28%);
}

.site-page .header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #d9e2ec;
    box-shadow: 0 8px 30px rgba(16, 42, 67, 0.08);
}

.site-page .header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 18px 0;
}

.site-page .logo,
.site-page .logo a {
    color: var(--home-ink);
    font-size: 25px;
    letter-spacing: 0.08em;
}

.site-page .nav {
    grid-column: 2;
    justify-content: center;
    gap: 8px;
    padding: 5px;
    background: #eef2f6;
    border: 1px solid #d9e2ec;
    border-radius: 999px;
}

.site-page .nav-link {
    color: var(--home-muted);
    padding: 8px 17px;
    border-radius: 999px;
}

.site-page .nav-link::after { display: none; }

.site-page .nav-link:hover,
.site-page .nav-link.active {
    color: #ffffff;
    background: var(--home-ink);
    text-decoration: none;
}

.site-page .ad-top { background-color: #eef2f6; }

.site-page .featured-grid,
.site-page .articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.site-page .article-card,
.site-page .widget {
    background: var(--home-surface);
    border: 1px solid #d9e2ec;
    box-shadow: 0 12px 32px rgba(16, 42, 67, 0.09);
}

.site-page .article-card::before { background: var(--home-accent); }

.site-page .article-card:hover {
    border-color: rgba(237, 106, 90, 0.5);
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.14);
}

.site-page .article-category {
    color: var(--home-accent-dark);
    background: rgba(237, 106, 90, 0.1);
    border-color: rgba(237, 106, 90, 0.25);
}

.site-page .article-card-title,
.site-page .widget-title { color: var(--home-ink); }

.site-page .article-card-excerpt,
.site-page .article-card-meta,
.site-page .popular-item-meta { color: var(--home-muted); }

.site-page .article-card-meta .author,
.site-page .popular-item-title { color: var(--home-accent-dark); }

.site-page .widget-title { border-color: #d9e2ec; }

.site-page .category-item {
    color: var(--home-ink);
    background: #f4f7fa;
    border-color: #d9e2ec;
}

.site-page .category-item:hover {
    color: var(--home-accent-dark);
    background: rgba(237, 106, 90, 0.08);
    border-color: rgba(237, 106, 90, 0.3);
    box-shadow: none;
}

.site-page .category-title { color: var(--home-ink); }
.site-page .category-description { color: var(--home-muted); }

.site-page .load-more-btn {
    background: var(--home-accent);
    box-shadow: 0 7px 18px rgba(237, 106, 90, 0.28);
}

.site-page .load-more-btn:hover {
    background: var(--home-accent-dark);
    box-shadow: 0 10px 24px rgba(237, 106, 90, 0.34);
}

.site-page .no-articles {
    grid-column: 1 / -1;
    padding: 56px 24px;
    color: var(--home-muted);
    background: var(--home-surface);
    border: 1px dashed #bcccdc;
    border-radius: 12px;
    text-align: center;
}

.site-page .article-detail {
    color: var(--home-ink);
    background: var(--home-surface);
    border: 1px solid #d9e2ec;
    box-shadow: 0 16px 44px rgba(16, 42, 67, 0.1);
}

.site-page .article-detail::before {
    background: var(--home-accent);
}

.site-page .article-title,
.site-page .article-body strong {
    color: var(--home-ink);
}

.site-page .breadcrumb,
.site-page .breadcrumb .separator,
.site-page .article-meta,
.site-page .article-meta .separator {
    color: var(--home-muted);
}

.site-page .breadcrumb a,
.site-page .article-meta .author,
.site-page .article-body h2,
.site-page .article-body h3 {
    color: var(--home-accent-dark);
}

.site-page .article-body,
.site-page .article-body li {
    color: #334e68;
}

.site-page .article-body h2 {
    border-bottom-color: #d9e2ec;
}

.site-page .article-summary {
    color: #334e68;
    background: #f4f7fa;
    border-left-color: var(--home-accent);
    box-shadow: none;
}

.site-page .article-image {
    border-color: #d9e2ec;
    box-shadow: 0 10px 24px rgba(16, 42, 67, 0.1);
}

.site-page .footer {
    color: #bcccdc;
    background: var(--home-ink);
    border-top: 0;
}

.site-page .footer a,
.site-page .footer span { color: #d9e2ec !important; }
.site-page .footer a:hover { color: #ffffff !important; }

@media (max-width: 768px) {
    .site-page .header-content { display: flex; }
    .site-page .nav { gap: 5px; border-radius: 18px; }
}

@media (max-width: 480px) {
    .site-page .nav-link { padding: 7px 10px; font-size: 13px; }
}
