/**
 * 音乐分类详情页样式
 * 音乐分类详情页的特定样式
 *
 * @package GoodBase
 * @since 1.0.0
 */

/* 音乐分类详情页特定样式 */
.category-detail-audio .category-posts-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.category-detail-audio .category-post-item .post-thumbnail {
    height: 200px;
}

/* 音乐分类详情页响应式 */
@media (max-width: 768px) {
    .category-detail-audio .category-posts-grid {
        grid-template-columns: 1fr;
    }
}




