/* 专题汇总页样式 */
.special-archive-page {
    padding: 30px 0;
}

.specials-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.special-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.special-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.special-item-banner {
    height: 180px;
    overflow: hidden;
}

.special-item-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.special-item:hover .special-item-banner img {
    transform: scale(1.05);
}

.special-item-content {
    padding: 20px;
}

.special-item-title {
    margin: 0 0 15px;
    font-size: 18px;
}

.special-item-title a {
    color: #2c3e50;
    text-decoration: none;
}

.special-item-title a:hover {
    color: #3498db;
}

.special-item-meta {
    color: #7f8c8d;
    font-size: 13px;
    margin-bottom: 10px;
}

.special-item-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.special-item .read-more {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.special-item .read-more:hover {
    color: #2980b9;
}

/* 专题详情页样式 */
.special-single-page {
    padding: 30px 0;
}

.special-banner {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.special-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.special-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.special-header h1 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

/* 统一的描述样式 */
.special-description {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

/* 统一的元数据样式 */
.special-meta {
    color: #7f8c8d;
    font-size: 14px;
    background: #f9f9f9;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-block;
    margin-top: 8px;
}

.special-meta .post-count {
    background: #f5f5f5;
    color: #888;
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 1em;
}

.no-specials {
    text-align: center;
    padding: 50px 0;
    color: #7f8c8d;
    font-size: 16px;
}

/* 专题汇总页标题样式 */
.special-archive-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.special-archive-title {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    padding-bottom: 10px;
}

.special-archive-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #3498db;
    border-radius: 2px;
}

.special-icon i {
    font-size: 1.2em;
    color: #3498db;
}

.special-archive-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* 专题hero区域样式 */
.special-hero {
    position: relative;
    margin-bottom: 48px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    min-height: 260px;
    background: #f8f8f8;
}

.special-hero-bg img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(0.92);
}

.special-hero-info {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    padding: 32px 48px 24px 48px;
    width: 70%;
    text-align: left;
    z-index: 2;
}

.special-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #333;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
}

/* 侧边栏样式 */
.news-flash-sidebar .view-all-specials-link {
    margin: 24px 0 0 0;
    text-align: center;
}

.news-flash-sidebar .view-all-specials-btn {
    display: inline-block;
    padding: 8px 28px;
    border-radius: 12px;
    background: #f5f5f5;
    color: #0073aa;
    font-weight: 500;
    font-size: 1.08em;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: background 0.2s, color 0.2s;
}

.news-flash-sidebar .view-all-specials-btn:hover {
    background: #0073aa;
    color: #fff;
}

/* 响应式调整 */
@media (max-width: 900px) {
    .special-hero-info {
        width: 95%;
        padding: 16px 8px 12px 8px;
        top: 12px;
    }
    .special-hero-bg img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .special-archive-title {
        font-size: 24px;
    }
}
