/* --- 访谈列表 (Grid) --- */
.list-section { padding: 60px 20px 100px; }
.interview-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
    max-width: 1200px; margin: 0 auto;
}

.interview-card {
    background: white; border-radius: 12px; overflow: hidden; border: 1px solid #eee;
    transition: 0.4s; display: flex; flex-direction: column; cursor: pointer;
}
.interview-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }

/* 图片区域 */
.card-img-box {
    height: 240px; position: relative; overflow: hidden;
}
.card-img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.interview-card:hover .card-img { transform: scale(1.05); }

.media-icon {
    position: absolute; bottom: 15px; right: 15px; background: rgba(0,0,0,0.6);
    color: white; width: 36px; height: 36px; border-radius: 50%; display: flex;
    align-items: center; justify-content: center; backdrop-filter: blur(5px);
}
.card-category {
    position: absolute; top: 15px; left: 15px; background: var(--accent-gold); color: white;
    padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: bold;
}

/* 内容区域 */
.card-body { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.card-meta { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.85rem; color: #999; }

.card-title {
    font-family: var(--font-serif); font-size: 1.4rem; color: var(--text-main);
    margin-bottom: 15px; font-weight: bold; line-height: 1.4;
}
.card-excerpt {
    font-size: 0.95rem; color: #666; line-height: 1.6; margin-bottom: 20px;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.card-author {
    margin-top: auto; display: flex; align-items: center; gap: 10px; padding-top: 15px; border-top: 1px solid #f5f5f5;
}
.author-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.author-info strong { display: block; font-size: 0.9rem; color: var(--text-main); }
.author-info span { display: block; font-size: 0.8rem; color: #999; }

/* 分页 (Pagination) */
.pagination { display: flex; justify-content: center; margin-top: 60px; gap: 10px; }
.page-item {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid #eee; border-radius: 50%; cursor: pointer; transition: 0.3s; color: #666; background: white;
}
.page-item:hover, .page-item.active { background: var(--primary-blue); color: white; border-color: var(--primary-blue); }

/* Responsive */
@media (max-width: 1024px) {
    .interview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .interview-grid { grid-template-columns: 1fr; }
    .filter-container { gap: 10px; }
    .filter-btn { font-size: 0.8rem; padding: 6px 15px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .nav-menu { display: none; }
    .hamburger { display: flex; }
}
.pager .pagination {
    margin: 0;
}
.pager .pager {
    margin: 0;
}
.pager li {
    margin: 0;
    display: inline-block;
}
.pager li:first-child > a,
.pager li:last-child > a,
.pager li:first-child > span,
.pager li:last-child > span {
    padding: 0.5em 1.2em;
}
.pager li :hover:not(.active):not(:disabled) {
    background: #f5f5f5;
    color: var(--primary-green);
    border-color: var(--primary-green);
}
.pager li > a,
.pager li > span {
    background: none;
    border: 1px solid #e6e6e6;
    border-radius: 0.25em;
    padding: 0.5em 0.93em;
    font-size: 14px;
}

.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus {
    z-index: 3;
    color: #fff;
    background-color: var(--primary-green);
    border-color:var(--primary-green);
    cursor: default;
}
.pager .pagination .disabled {
    cursor: not-allowed
}