/* Blogs页面专用样式 */

/* 容器样式 */
.blogs-container {
    min-height: 100vh;
    padding: 6rem 2rem 4rem;
    display: flex;
    justify-content: center;
}

.blogs-content {
    max-width: 900px;
    width: 100%;
    color: white;
    animation: fadeInUp 1.2s ease-out;
}

/* 标题样式 */
.blogs-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    text-align: center;
}

.blogs-subtitle {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    opacity: 0.9;
    letter-spacing: 0.02em;
    text-align: center;
}

/* 播客列表 */
.blogs-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
}

/* 播客条目 */
.blog-item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.blog-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* 播客头部 */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: 0.02em;
    flex: 1;
}

.blog-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    white-space: nowrap;
}

/* 播客描述 */
.blog-description {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* 标签 */
.blog-tags {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 返回链接 */
.back-link {
    text-align: center;
    margin-top: 3rem;
}

.back-btn {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: inline-block;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
}

.back-btn:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* 动画效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .blogs-container {
        padding: 5rem 1rem 3rem;
    }
    
    .blogs-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
    
    .blogs-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }
    
    .blog-item {
        padding: 1.2rem 1.5rem;
    }
    
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-date {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .blogs-container {
        padding: 4rem 1rem 2rem;
    }
    
    .blogs-title {
        font-size: 2rem;
    }
    
    .blogs-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .blog-item {
        padding: 1rem 1.2rem;
    }
    
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blogs-list {
        gap: 1.5rem;
    }
    
    .back-btn {
        font-size: 1rem;
        padding: 0.7rem 1.2rem;
    }
}

/* 减少动画偏好 */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 高对比度支持 */
@media (prefers-contrast: high) {
    .blogs-title {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    .blog-item {
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .blogs-subtitle,
    .blog-description {
        opacity: 1;
    }
}
